Skip to content

Commit

Permalink
Version bumps for 1.5.2 release (#102)
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Colegate <colegate@uk.ibm.com>
  • Loading branch information
mattcolegate authored and tobespc committed Dec 4, 2019
1 parent e63f99c commit a85b0e1
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -89,12 +89,12 @@ Javametrics requires a Java option to be set in order to load the agent. A [jvm

```
# Load Javametrics Java agent
-javaagent:<path_to_javametrics_agent_dir>/javametrics-agent-1.5.1.jar
-javaagent:<path_to_javametrics_agent_dir>/javametrics-agent-1.5.2.jar
```
If you have built the agent locally, your path_to_javametrics_agent_dir will need to point to your clone of javametrics.
e.g.
```
-javaagent:<path_to_git_home>/javametrics/javaagent/target/javametrics-agent-1.5.1.jar
-javaagent:<path_to_git_home>/javametrics/javaagent/target/javametrics-agent-1.5.2.jar
```
* NOTE, if you move the javametrics-agent to another directory you need to make sure you take the asm folder with it. The asm folder is required for the agent to run as it contains files that the agent needs

Expand Down Expand Up @@ -129,12 +129,12 @@ You also need to add the following dependencies to your pom.xml:
<dependency>
<groupId>com.ibm.runtimetools</groupId>
<artifactId>javametrics-spring</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
</dependency>
<dependency>
<groupId>com.ibm.runtimetools</groupId>
<artifactId>javametrics-agent</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
Expand Down Expand Up @@ -170,4 +170,4 @@ This project is released under an Apache 2.0 open source license.
This project uses a semver-parsable X.0.Z version number for releases, where X is incremented for breaking changes to the public API described in this document and Z is incremented for bug fixes **and** for non-breaking changes to the public API that provide new function.

## Version
1.5.1
1.5.2
4 changes: 2 additions & 2 deletions codewind-spring/pom.xml
Expand Up @@ -4,7 +4,7 @@

<groupId>com.ibm.runtimetools</groupId>
<artifactId>javametrics-codewind-spring</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
<packaging>jar</packaging>

<name>javametrics-codewind-spring</name>
Expand Down Expand Up @@ -58,7 +58,7 @@
<dependency>
<groupId>com.ibm.runtimetools</groupId>
<artifactId>javametrics-agent</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
<scope>provided</scope>
</dependency>

Expand Down
4 changes: 2 additions & 2 deletions codewind/pom.xml
@@ -1,7 +1,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>com.ibm.runtimetools</groupId>
<version>1.5.1</version>
<version>1.5.2</version>
<modelVersion>4.0.0</modelVersion>
<artifactId>javametrics-codewind</artifactId>
<packaging>war</packaging>
Expand Down Expand Up @@ -51,7 +51,7 @@
<dependency>
<groupId>com.ibm.runtimetools</groupId>
<artifactId>javametrics-agent</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions dashboard/pom.xml
@@ -1,7 +1,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>com.ibm.runtimetools</groupId>
<version>1.5.1</version>
<version>1.5.2</version>
<modelVersion>4.0.0</modelVersion>
<artifactId>javametrics-dash</artifactId>
<packaging>war</packaging>
Expand Down Expand Up @@ -57,7 +57,7 @@
<dependency>
<groupId>com.ibm.runtimetools</groupId>
<artifactId>javametrics-agent</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion javaagent/pom.xml
@@ -1,7 +1,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>com.ibm.runtimetools</groupId>
<version>1.5.1</version>
<version>1.5.2</version>
<modelVersion>4.0.0</modelVersion>
<artifactId>javametrics-agent</artifactId>
<name>javaagent</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -4,7 +4,7 @@
<groupId>com.ibm.runtimetools</groupId>
<artifactId>javametrics</artifactId>
<packaging>pom</packaging>
<version>1.5.1</version>
<version>1.5.2</version>
<modules>
<module>javaagent</module>
<module>codewind</module>
Expand Down
4 changes: 2 additions & 2 deletions prometheus/pom.xml
@@ -1,7 +1,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>com.ibm.runtimetools</groupId>
<version>1.5.1</version>
<version>1.5.2</version>
<modelVersion>4.0.0</modelVersion>
<artifactId>javametrics-prometheus</artifactId>
<packaging>war</packaging>
Expand Down Expand Up @@ -51,7 +51,7 @@
<dependency>
<groupId>com.ibm.runtimetools</groupId>
<artifactId>javametrics-agent</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions rest/pom.xml
@@ -1,7 +1,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>com.ibm.runtimetools</groupId>
<version>1.5.1</version>
<version>1.5.2</version>
<modelVersion>4.0.0</modelVersion>
<artifactId>javametrics-rest</artifactId>
<packaging>war</packaging>
Expand Down Expand Up @@ -49,7 +49,7 @@
<dependency>
<groupId>com.ibm.runtimetools</groupId>
<artifactId>javametrics-agent</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions spring/pom.xml
Expand Up @@ -4,7 +4,7 @@

<groupId>com.ibm.runtimetools</groupId>
<artifactId>javametrics-spring</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
<packaging>jar</packaging>

<name>javametrics-spring</name>
Expand Down Expand Up @@ -58,7 +58,7 @@
<dependency>
<groupId>com.ibm.runtimetools</groupId>
<artifactId>javametrics-agent</artifactId>
<version>1.5.1</version>
<version>1.5.2</version>
<scope>provided</scope>
</dependency>

Expand Down

0 comments on commit a85b0e1

Please sign in to comment.