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