Skip to content

Commit

Permalink
Merge pull request #108 from tobespc/release180
Browse files Browse the repository at this point in the history
bump version to 1.8.0 for release
  • Loading branch information
stalleyj authored Mar 3, 2020
2 parents 43bc00f + 1569e27 commit f7e1a5e
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
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.7.0.jar
-javaagent:<path_to_javametrics_agent_dir>/javametrics-agent-1.8.0.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.7.0.jar
-javaagent:<path_to_git_home>/javametrics/javaagent/target/javametrics-agent-1.8.0.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.7.0</version>
<version>1.8.0</version>
</dependency>
<dependency>
<groupId>com.ibm.runtimetools</groupId>
<artifactId>javametrics-agent</artifactId>
<version>1.7.0</version>
<version>1.8.0</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.7.0
1.8.0
4 changes: 2 additions & 2 deletions codewind-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.ibm.runtimetools</groupId>
<artifactId>javametrics-codewind-spring</artifactId>
<version>1.7.0</version>
<version>1.8.0</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.7.0</version>
<version>1.8.0</version>
<scope>provided</scope>
</dependency>

Expand Down
4 changes: 2 additions & 2 deletions codewind/pom.xml
Original file line number Diff line number Diff line change
@@ -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.7.0</version>
<version>1.8.0</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.7.0</version>
<version>1.8.0</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions dashboard/pom.xml
Original file line number Diff line number Diff line change
@@ -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.7.0</version>
<version>1.8.0</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.7.0</version>
<version>1.8.0</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion javaagent/pom.xml
Original file line number Diff line number Diff line change
@@ -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.7.0</version>
<version>1.8.0</version>
<modelVersion>4.0.0</modelVersion>
<artifactId>javametrics-agent</artifactId>
<name>javaagent</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.ibm.runtimetools</groupId>
<artifactId>javametrics</artifactId>
<packaging>pom</packaging>
<version>1.7.0</version>
<version>1.8.0</version>
<modules>
<module>javaagent</module>
<module>codewind</module>
Expand Down
4 changes: 2 additions & 2 deletions prometheus/pom.xml
Original file line number Diff line number Diff line change
@@ -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.7.0</version>
<version>1.8.0</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.7.0</version>
<version>1.8.0</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions rest/pom.xml
Original file line number Diff line number Diff line change
@@ -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.7.0</version>
<version>1.8.0</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.7.0</version>
<version>1.8.0</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.ibm.runtimetools</groupId>
<artifactId>javametrics-spring</artifactId>
<version>1.7.0</version>
<version>1.8.0</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.7.0</version>
<version>1.8.0</version>
<scope>provided</scope>
</dependency>

Expand Down

0 comments on commit f7e1a5e

Please sign in to comment.