|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <groupId>org.cprover.regression</groupId> |
| 7 | + <artifactId>regression</artifactId> |
| 8 | + <version>1.0-SNAPSHOT</version> |
| 9 | + <packaging>pom</packaging> |
| 10 | + |
| 11 | + <properties> |
| 12 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 13 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 14 | + </properties> |
| 15 | + |
| 16 | + <modules> |
| 17 | + <module>jbmc</module> |
| 18 | + </modules> |
| 19 | + |
| 20 | + <build> |
| 21 | + <pluginManagement> |
| 22 | + <plugins> |
| 23 | + <plugin> |
| 24 | + <groupId>org.apache.maven.plugins</groupId> |
| 25 | + <artifactId>maven-jar-plugin</artifactId> |
| 26 | + <version>3.4.2</version> |
| 27 | + </plugin> |
| 28 | + <!-- turn off test running to save some time --> |
| 29 | + <plugin> |
| 30 | + <groupId>org.apache.maven.plugins</groupId> |
| 31 | + <artifactId>maven-surefire-plugin</artifactId> |
| 32 | + <version>3.5.2</version> |
| 33 | + <configuration> |
| 34 | + <skipTests>true</skipTests> |
| 35 | + </configuration> |
| 36 | + </plugin> |
| 37 | + <!-- turn off test compilation to save some time --> |
| 38 | + <plugin> |
| 39 | + <groupId>org.apache.maven.plugins</groupId> |
| 40 | + <artifactId>maven-compiler-plugin</artifactId> |
| 41 | + <version>3.13.0</version> |
| 42 | + <executions> |
| 43 | + <execution> |
| 44 | + <id>default-testCompile</id> |
| 45 | + <phase>test-compile</phase> |
| 46 | + <goals> |
| 47 | + <goal>testCompile</goal> |
| 48 | + </goals> |
| 49 | + <configuration> |
| 50 | + <skip>true</skip> |
| 51 | + </configuration> |
| 52 | + </execution> |
| 53 | + </executions> |
| 54 | + </plugin> |
| 55 | + <!-- turn off resources copying to save some time --> |
| 56 | + <plugin> |
| 57 | + <groupId>org.apache.maven.plugins</groupId> |
| 58 | + <artifactId>maven-resources-plugin</artifactId> |
| 59 | + <version>3.3.1</version> |
| 60 | + <configuration> |
| 61 | + <skip>true</skip> |
| 62 | + </configuration> |
| 63 | + </plugin> |
| 64 | + </plugins> |
| 65 | + </pluginManagement> |
| 66 | + </build> |
| 67 | + |
| 68 | +</project> |
0 commit comments