[Java] fix warning in pom.xml (java okhttp-gson) (#3023)

* fix warning in pom.xml

* minor fix to pom (okhttp-gson)
This commit is contained in:
wing328
2016-06-02 17:37:11 +08:00
parent 91c35509b8
commit a3610f1c12
8 changed files with 25 additions and 18 deletions

View File

@@ -68,6 +68,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.10</version>
<executions>
<execution>
<id>add_sources</id>
@@ -104,7 +105,7 @@
<target>1.7</target>
</configuration>
</plugin>
<!-- For testing build.gradle -->
<!-- For testing build.gradle, build.sbt -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
@@ -123,9 +124,21 @@
</arguments>
</configuration>
</execution>
<execution>
<id>sbt-test</id>
<phase>integration-test</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>sbt</executable>
<arguments>
<argument>publishLocal</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
@@ -164,5 +177,6 @@
<gson-version>2.6.2</gson-version>
<maven-plugin-version>1.0.0</maven-plugin-version>
<junit-version>4.12</junit-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>