Ian | 512803f | 2014-06-20 17:56:46 -0700 | [diff] [blame^] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <groupId>com.mycompany.app</groupId> |
| 5 | <artifactId>my-app</artifactId> |
| 6 | <packaging>jar</packaging> |
| 7 | <version>1.0-SNAPSHOT</version> |
| 8 | <name>my-app</name> |
| 9 | <url>http://maven.apache.org</url> |
| 10 | <build> |
| 11 | <plugins> |
| 12 | <plugin> |
| 13 | <groupId>org.apache.maven.plugins</groupId> |
| 14 | <artifactId>maven-release-plugin</artifactId> |
| 15 | <version>2.5</version> |
| 16 | </plugin> |
| 17 | </plugins> |
| 18 | </build> |
| 19 | <dependencies> |
| 20 | <dependency> |
| 21 | <groupId>junit</groupId> |
| 22 | <artifactId>junit</artifactId> |
| 23 | <version>3.8.1</version> |
| 24 | <scope>test</scope> |
| 25 | </dependency> |
| 26 | </dependencies> |
| 27 | <scm> |
| 28 | <developerConnection>scm:git:ssh://imaxon@fulliautomatix.ics.uci.edu:29418/ceej-gerrit-test</developerConnection> |
| 29 | </scm> |
| 30 | <distributionManagement> |
| 31 | <repository> |
| 32 | <id>test</id> |
| 33 | <name>test</name> |
| 34 | <url>http://localhost:8081/nexus/content/repositories/test/</url> |
| 35 | </repository> |
| 36 | </distributionManagement> |
| 37 | </project> |