Skip to content

Commit 5b086e2

Browse files
committed
Release version 2.3.3
1 parent 23011ee commit 5b086e2

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Reference implementation of an agent library written in Java. This library handl
55
## Getting Started
66

77
* Chronos Agent is published to Maven Central. Make sure that you have `mavenCentral()` to the `repositories` in your gradle build file.
8-
* Add `implementation group: 'org.chronos-eaas', name: 'chronos-agent', version: '2.3.2'` to your `dependencies`.
8+
* Add `implementation group: 'org.chronos-eaas', name: 'chronos-agent', version: '2.3.3'` to your `dependencies`.
99
* Extend the `AbstractChronosAgent` class, call `YourClass.start()` in your `main` method, and you are good to go!
1010
> Assuming that you already have a running [Chronos Control](https://github.com/Chronos-EaaS/Chronos-Control/) instance
1111

build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repositories {
1616

1717
group 'org.chronos-eaas'
1818
archivesBaseName = "chronos-agent"
19-
version '2.3.3-SNAPSHOT'
19+
version '2.3.3'
2020

2121
description = "Chronos Agent"
2222

@@ -66,15 +66,6 @@ jar {
6666
}*/
6767

6868

69-
signing {
70-
required { gradle.taskGraph.hasTask("publish") }
71-
def signingKey = findProperty("signingKey")
72-
def signingPassword = findProperty("signingPassword")
73-
useInMemoryPgpKeys(signingKey, signingPassword)
74-
sign configurations.archives
75-
}
76-
77-
7869
javadoc {
7970
failOnError = false
8071
}
@@ -131,6 +122,15 @@ publishing {
131122
//task generatePom(group: 'publishing', dependsOn: "generatePomFileFor${project.name.capitalize()}Publication")
132123

133124

125+
signing {
126+
required { gradle.taskGraph.hasTask("publish") }
127+
def signingKey = findProperty("signingKey")
128+
def signingPassword = findProperty("signingPassword")
129+
useInMemoryPgpKeys(signingKey, signingPassword)
130+
sign publishing.publications.mavenJava
131+
}
132+
133+
134134
idea {
135135
module {
136136
downloadJavadoc = true

0 commit comments

Comments
 (0)