Skip to content

Commit

Permalink
Merge pull request #90 from google/moe_writing_branch_from_2bce197d67…
Browse files Browse the repository at this point in the history
…58127ab064ff9126adede43df0388c

Clean up and update the pom metadata, including:
  • Loading branch information
cgruber committed Mar 3, 2016
2 parents 51cdab8 + 2de373f commit 814eca2
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@
<name>Compile Testing</name>
<description>Utilities for testing compilation.</description>

<properties>
<guava.version>19.0</guava.version>
<truth.version>0.28</truth.version>
<junit.version>4.12</junit.version>
<jsr305.version>3.0.1</jsr305.version>
</properties>

<url>http://github.com/google/compile-testing</url>
<issueManagement>
<system>GitHub</system>
Expand All @@ -28,7 +35,7 @@
</license>
</licenses>
<prerequisites>
<maven>3.0.3</maven>
<maven>3.1.1</maven>
</prerequisites>
<scm>
<connection>scm:git:http://github.com/google/compile-testing</connection>
Expand All @@ -40,17 +47,17 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>${junit.version}</version>
</dependency>
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>0.25</version>
<version>${truth.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>com.sun</groupId>
Expand All @@ -62,16 +69,12 @@
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>1.3.9</version>
<version>${jsr305.version}</version>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
Expand All @@ -91,6 +94,10 @@
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
</plugin>
</plugins>
</build>
<profiles>
Expand Down

0 comments on commit 814eca2

Please sign in to comment.