Skip to content

Commit ec9f437

Browse files
robbinspghhellyer
authored andcommitted
Release 1.1.0 (#69)
Version 1.1.0 release
1 parent fe30e0b commit ec9f437

File tree

6 files changed

+16
-15
lines changed

6 files changed

+16
-15
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,14 @@ The Application Metrics for Java agent requires Java version 8.
2626

2727
<a name="install"></a>
2828

29-
### Installation
29+
### Releases
3030

31-
Download the latest Application Metrics for Java release from [Github](http://github.com/runtimetools/javametrics/releases).
31+
Download the latest Application Metrics for Java release zip from [Github](http://github.com/runtimetools/javametrics/releases).
3232
This contains:
33-
* `javametrics-dash-x.x.x.war` - Javametrics Web Application
34-
* `javametrics-prometheus-x.x.x.war` - Javametrics Prometheus Endpoint
35-
* `javametrics-agent-x.x.x.jar` - Javametrics agent
33+
* `webapp/dashboard/javametrics-dash-x.x.x.war` - Javametrics Web Application
34+
* `webapp/prometheus/javametrics-prometheus-x.x.x.war` - Javametrics Prometheus Endpoint
35+
* `agent/javametrics-agent-x.x.x.jar` - Javametrics agent and required ASM libraries
36+
* `spring/javametrics-spring-x.x.x.jar` - Javametrics spring
3637

3738
### Building with Maven
3839

@@ -67,7 +68,7 @@ javametrics-prometheus
6768
```
6869

6970
#### Websphere Liberty
70-
Unpack the `.zip` or `.tar.gz` archive that you downloaded in the previous step. Copy the `javametrics-dash-x.x.x.war` and the `javametrics-prometheus-x.x.x.war` files into your [Websphere Liberty](https://developer.ibm.com/wasdev/websphere-liberty/) 'dropins' directory.
71+
Unpack the release `.zip` archive that you downloaded in the previous step. Copy the `javametrics-dash-x.x.x.war` and the `javametrics-prometheus-x.x.x.war` files into your [Websphere Liberty](https://developer.ibm.com/wasdev/websphere-liberty/) 'dropins' directory.
7172

7273
If you only want the dashboard or prometheus support you can just copy the appropriate war file to the 'dropins' directory. Both require the agent to be loaded following the instructions below.
7374

@@ -138,4 +139,4 @@ This project is released under an Apache 2.0 open source license.
138139
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.
139140

140141
## Version
141-
1.0.2
142+
1.1.0

dashboard/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<groupId>com.ibm.runtimetools</groupId>
4-
<version>1.1.0-SNAPSHOT</version>
4+
<version>1.1.0</version>
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>javametrics-dash</artifactId>
77
<packaging>war</packaging>
@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>com.ibm.runtimetools</groupId>
5959
<artifactId>javametrics-agent</artifactId>
60-
<version>1.1.0-SNAPSHOT</version>
60+
<version>1.1.0</version>
6161
<scope>provided</scope>
6262
</dependency>
6363
<dependency>

javaagent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<groupId>com.ibm.runtimetools</groupId>
4-
<version>1.1.0-SNAPSHOT</version>
4+
<version>1.1.0</version>
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>javametrics-agent</artifactId>
77
<name>javaagent</name>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.ibm.runtimetools</groupId>
55
<artifactId>javametrics</artifactId>
66
<packaging>pom</packaging>
7-
<version>1.1.0-SNAPSHOT</version>
7+
<version>1.1.0</version>
88
<modules>
99
<module>javaagent</module>
1010
<module>dashboard</module>

prometheus/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<groupId>com.ibm.runtimetools</groupId>
4-
<version>1.1.0-SNAPSHOT</version>
4+
<version>1.1.0</version>
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>javametrics-prometheus</artifactId>
77
<packaging>war</packaging>
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>com.ibm.runtimetools</groupId>
5353
<artifactId>javametrics-agent</artifactId>
54-
<version>1.1.0-SNAPSHOT</version>
54+
<version>1.1.0</version>
5555
<scope>provided</scope>
5656
</dependency>
5757
<dependency>

spring/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.ibm.runtimetools</groupId>
66
<artifactId>javametrics-spring</artifactId>
7-
<version>1.1.0-SNAPSHOT</version>
7+
<version>1.1.0</version>
88
<packaging>jar</packaging>
99

1010
<name>javametrics-spring</name>
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>com.ibm.runtimetools</groupId>
5151
<artifactId>javametrics-agent</artifactId>
52-
<version>1.1.0-SNAPSHOT</version>
52+
<version>1.1.0</version>
5353
<scope>provided</scope>
5454
</dependency>
5555
<dependency>

0 commit comments

Comments
 (0)