Skip to content

Commit a071d8c

Browse files
Add cprover-api Maven dependency
1 parent 242aaff commit a071d8c

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

pom.xml

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,42 @@
2626
</profile>
2727
</profiles>
2828

29+
<dependencies>
30+
<dependency>
31+
<groupId>org.cprover.util</groupId>
32+
<artifactId>cprover-api</artifactId>
33+
<version>1.0.0</version>
34+
<scope>compile</scope>
35+
</dependency>
36+
</dependencies>
37+
2938
<build>
3039
<finalName>core-models</finalName>
3140
<plugins>
41+
<plugin>
42+
<artifactId>maven-dependency-plugin</artifactId>
43+
<version>2.8</version>
44+
<executions>
45+
<execution>
46+
<phase>generate-sources</phase>
47+
<goals>
48+
<goal>build-classpath</goal>
49+
</goals>
50+
<configuration>
51+
<outputProperty>maven.compile.classpath</outputProperty>
52+
<pathSeparator>:</pathSeparator>
53+
</configuration>
54+
</execution>
55+
</executions>
56+
</plugin>
57+
3258
<plugin>
3359
<groupId>org.apache.maven.plugins</groupId>
3460
<artifactId>maven-compiler-plugin</artifactId>
3561
<version>3.6.1</version>
3662
<configuration>
3763
<compilerArguments>
38-
<classpath>${java.home}/lib/rt.jar</classpath>
64+
<classpath>${java.home}/lib/rt.jar:${maven.compile.classpath}</classpath>
3965
</compilerArguments>
4066
<source>1.8</source>
4167
<target>1.8</target>

0 commit comments

Comments
 (0)