Skip to content

Commit

Permalink
Merge pull request #100 from google/moe_sync
Browse files Browse the repository at this point in the history
MOE sync 10/26/16
  • Loading branch information
cgruber authored Oct 26, 2016
2 parents 11edec2 + 4ff194c commit 5d9d5dd
Show file tree
Hide file tree
Showing 31 changed files with 2,950 additions and 988 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ install: mvn -B -U install clean --fail-never --quiet -DskipTests=true -Dinvoker
script: mvn -B verify

jdk:
- openjdk7
- oraclejdk7
- oraclejdk8

notifications:
email: false
Expand Down
12 changes: 9 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
<description>Utilities for testing compilation.</description>

<properties>
<auto-value.version>1.3</auto-value.version>
<guava.version>19.0</guava.version>
<truth.version>0.28</truth.version>
<truth.version>0.30</truth.version>
<junit.version>4.12</junit.version>
<jsr305.version>3.0.1</jsr305.version>
</properties>
Expand Down Expand Up @@ -78,15 +79,20 @@
<version>2.0.8</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.auto.value</groupId>
<artifactId>auto-value</artifactId>
<version>${auto-value.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.8</source>
<target>1.8</target>
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
Expand Down
Loading

0 comments on commit 5d9d5dd

Please sign in to comment.