Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions contrib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.google.monitoring-client</groupId>
<artifactId>monitoring</artifactId>
<version>1.0</version>
<version>1.0.1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand All @@ -24,28 +24,28 @@
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>0.36</version>
<version>0.37</version>
</dependency>
<!-- Metrics library -->
<dependency>
<groupId>com.google.monitoring-client</groupId>
<artifactId>metrics</artifactId>
<version>1.0</version>
<version>1.0.1-SNAPSHOT</version>
</dependency>

<!-- Test dependencies -->
<!-- https://mvnrepository.com/artifact/com.google.truth.extensions/truth-java8-extension -->
<dependency>
<groupId>com.google.truth.extensions</groupId>
<artifactId>truth-java8-extension</artifactId>
<version>0.36</version>
<version>0.37</version>
<scope>test</scope>
</dependency>
<!-- JUnit backport -->
<dependency>
<groupId>com.google.monitoring-client</groupId>
<artifactId>junit</artifactId>
<version>1.0</version>
<version>1.0.1-SNAPSHOT</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
16 changes: 8 additions & 8 deletions metrics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.google.monitoring-client</groupId>
<artifactId>monitoring</artifactId>
<version>1.0</version>
<version>1.0.1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand All @@ -25,26 +25,26 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>23.5-jre</version>
<version>23.6-jre</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.auto.value/auto-value -->
<dependency>
<groupId>com.google.auto.value</groupId>
<artifactId>auto-value</artifactId>
<version>1.5.2</version>
<version>1.5.3</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.dagger/dagger -->
<dependency>
<groupId>com.google.dagger</groupId>
<artifactId>dagger</artifactId>
<version>2.12</version>
<version>2.14.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.errorprone/error_prone_annotations -->
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
<version>2.1.2</version>
<version>2.1.3</version>
</dependency>
<!-- https://mvnrepository.com/artifact/joda-time/joda-time -->
<dependency>
Expand All @@ -71,21 +71,21 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.10.19</version>
<version>2.0.2-beta</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.truth/truth -->
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>0.36</version>
<version>0.37</version>
<scope>test</scope>
</dependency>
<!-- JUnit backport -->
<dependency>
<groupId>com.google.monitoring-client</groupId>
<artifactId>junit</artifactId>
<version>1.0</version>
<version>1.0.1-SNAPSHOT</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
17 changes: 16 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>com.google.monitoring-client</groupId>
<artifactId>monitoring</artifactId>
<version>1.0</version>
<version>1.0.1-SNAPSHOT</version>
<packaging>pom</packaging>

<name>Monitoring Client Library for Java</name>
Expand Down Expand Up @@ -73,10 +73,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -89,6 +91,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<additionalOptions>
<additionalOption>-Xdoclint:all,-missing</additionalOption>
Expand All @@ -103,6 +106,16 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
<autoVersionSubmodules>true</autoVersionSubmodules>
<releaseProfiles>release</releaseProfiles>
</configuration>
</plugin>
</plugins>
</build>

Expand All @@ -114,6 +127,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand All @@ -127,6 +141,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype-nexus-staging</serverId>
Expand Down
14 changes: 7 additions & 7 deletions stackdriver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.google.monitoring-client</groupId>
<artifactId>monitoring</artifactId>
<version>1.0</version>
<version>1.0.1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

Expand All @@ -24,19 +24,19 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>23.5-jre</version>
<version>23.6-jre</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.apis/google-api-services-monitoring -->
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-monitoring</artifactId>
<version>v3-rev421-1.23.0</version>
<version>v3-rev426-1.23.0</version>
</dependency>
<!-- Metrics library -->
<dependency>
<groupId>com.google.monitoring-client</groupId>
<artifactId>metrics</artifactId>
<version>1.0</version>
<version>1.0.1-SNAPSHOT</version>
</dependency>

<!-- Test dependencies -->
Expand All @@ -51,21 +51,21 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.10.19</version>
<version>2.0.2-beta</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.truth/truth -->
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>0.36</version>
<version>0.37</version>
<scope>test</scope>
</dependency>
<!-- JUnit backport -->
<dependency>
<groupId>com.google.monitoring-client</groupId>
<artifactId>junit</artifactId>
<version>1.0</version>
<version>1.0.1-SNAPSHOT</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion third_party/junit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.google.monitoring-client</groupId>
<artifactId>monitoring</artifactId>
<version>1.0</version>
<version>1.0.1-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>

Expand Down