| Line | |
|---|
| 1 | <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"> |
|---|
| 2 | <modelVersion>4.0.0</modelVersion> |
|---|
| 3 | <groupId>de.ugoe.cs.quest</groupId> |
|---|
| 4 | <artifactId>quest-misc-test</artifactId> |
|---|
| 5 | <version>0.0.1-SNAPSHOT</version> |
|---|
| 6 | <name>quest-misc-test</name> |
|---|
| 7 | <scm> |
|---|
| 8 | <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-misc-test</url> |
|---|
| 9 | </scm> |
|---|
| 10 | <dependencies> |
|---|
| 11 | <dependency> |
|---|
| 12 | <groupId>de.ugoe.cs.quest</groupId> |
|---|
| 13 | <artifactId>quest-misc</artifactId> |
|---|
| 14 | <version>0.0.1-SNAPSHOT</version> |
|---|
| 15 | <scope>test</scope> |
|---|
| 16 | </dependency> |
|---|
| 17 | <dependency> |
|---|
| 18 | <groupId>junit</groupId> |
|---|
| 19 | <artifactId>junit</artifactId> |
|---|
| 20 | <version>4.8.1</version> |
|---|
| 21 | <scope>test</scope> |
|---|
| 22 | </dependency> |
|---|
| 23 | </dependencies> |
|---|
| 24 | <build> |
|---|
| 25 | <plugins> |
|---|
| 26 | <plugin> |
|---|
| 27 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| 28 | <artifactId>maven-compiler-plugin</artifactId> |
|---|
| 29 | <version>2.3.2</version> |
|---|
| 30 | <configuration> |
|---|
| 31 | <source>1.6</source> |
|---|
| 32 | <target>1.6</target> |
|---|
| 33 | </configuration> |
|---|
| 34 | </plugin> |
|---|
| 35 | <plugin> |
|---|
| 36 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| 37 | <artifactId>maven-jar-plugin</artifactId> |
|---|
| 38 | <version>2.3.2</version> |
|---|
| 39 | <executions> |
|---|
| 40 | <execution> |
|---|
| 41 | <goals> |
|---|
| 42 | <goal>test-jar</goal> |
|---|
| 43 | </goals> |
|---|
| 44 | </execution> |
|---|
| 45 | </executions> |
|---|
| 46 | </plugin> |
|---|
| 47 | </plugins> |
|---|
| 48 | </build> |
|---|
| 49 | </project> |
|---|
Note: See
TracBrowser
for help on using the repository browser.