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