microsoft/gctoolkit
Publicmirrored fromhttps://github.com/microsoft/gctoolkitAvailable
IT/pom.xml
102lines · modecode
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <parent> |
| 6 | <groupId>com.microsoft.gctoolkit</groupId> |
| 7 | <artifactId>gctoolkit</artifactId> |
| 8 | <version>3.7.1-SNAPSHOT</version> |
| 9 | <relativePath>../pom.xml</relativePath> |
| 10 | </parent> |
| 11 | |
| 12 | <artifactId>gctoolkit-integration</artifactId> |
| 13 | <description>Integration tests for GCToolKit</description> |
| 14 | <url>${project.parent.url}</url> |
| 15 | <name>GCToolKit Integration</name> |
| 16 | <properties> |
| 17 | <gcLogFile>../gclogs/preunified/cms/defnew/details/defnew.log</gcLogFile> |
| 18 | </properties> |
| 19 | |
| 20 | |
| 21 | <dependencies> |
| 22 | <dependency> |
| 23 | <groupId>com.microsoft.gctoolkit</groupId> |
| 24 | <artifactId>gctoolkit-api</artifactId> |
| 25 | </dependency> |
| 26 | <dependency> |
| 27 | <groupId>com.microsoft.gctoolkit</groupId> |
| 28 | <artifactId>gctoolkit-parser</artifactId> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>com.microsoft.gctoolkit</groupId> |
| 32 | <artifactId>gctoolkit-vertx</artifactId> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>org.junit.jupiter</groupId> |
| 36 | <artifactId>junit-jupiter-api</artifactId> |
| 37 | <scope>test</scope> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.junit.jupiter</groupId> |
| 41 | <artifactId>junit-jupiter-engine</artifactId> |
| 42 | <scope>test</scope> |
| 43 | </dependency> |
| 44 | </dependencies> |
| 45 | |
| 46 | <build> |
| 47 | <plugins> |
| 48 | <plugin> |
| 49 | <groupId>org.apache.maven.plugins</groupId> |
| 50 | <artifactId>maven-surefire-plugin</artifactId> |
| 51 | <executions> |
| 52 | <execution> |
| 53 | <id>default-test</id> |
| 54 | <configuration> |
| 55 | <skip>true</skip> |
| 56 | </configuration> |
| 57 | </execution> |
| 58 | <execution> |
| 59 | <id>modulePath</id> |
| 60 | <goals> |
| 61 | <goal>test</goal> |
| 62 | </goals> |
| 63 | <configuration> |
| 64 | <useModulePath>true</useModulePath> |
| 65 | <groups>modulePath</groups> |
| 66 | </configuration> |
| 67 | </execution> |
| 68 | <execution> |
| 69 | <id>classPath</id> |
| 70 | <goals> |
| 71 | <goal>test</goal> |
| 72 | </goals> |
| 73 | <configuration> |
| 74 | <useModulePath>false</useModulePath> |
| 75 | <groups>classPath</groups> |
| 76 | </configuration> |
| 77 | </execution> |
| 78 | </executions> |
| 79 | </plugin> |
| 80 | <plugin> |
| 81 | <artifactId>maven-dependency-plugin</artifactId> |
| 82 | <configuration> |
| 83 | <outputDirectory>${project.build.directory}/lib</outputDirectory> |
| 84 | </configuration> |
| 85 | </plugin> |
| 86 | <plugin> |
| 87 | <groupId>org.apache.maven.plugins</groupId> |
| 88 | <artifactId>maven-deploy-plugin</artifactId> |
| 89 | <configuration> |
| 90 | <skip>true</skip> |
| 91 | </configuration> |
| 92 | </plugin> |
| 93 | <plugin> |
| 94 | <groupId>org.apache.maven.plugins</groupId> |
| 95 | <artifactId>maven-javadoc-plugin</artifactId> |
| 96 | <configuration> |
| 97 | <skip>true</skip> |
| 98 | </configuration> |
| 99 | </plugin> |
| 100 | </plugins> |
| 101 | </build> |
| 102 | </project> |
| 103 | |