File tree 6 files changed +9
-8
lines changed
6 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,8 @@ bundle:
21
21
cp target/talon-one-client-$(VERSION ) -sources.jar $(DIST ) && \
22
22
cp target/talon-one-client-$(VERSION ) -sources.jar.md5 $(DIST ) && \
23
23
cp target/talon-one-client-$(VERSION ) .jar $(DIST ) && \
24
- cp target/talon-one-client-$(VERSION ) .jar.md5 $(DIST )
24
+ cp target/talon-one-client-$(VERSION ) .jar.md5 $(DIST ) && \
25
+ md5sum $(DIST ) /talon-one-client-$(VERSION ) .pom | cut -f 1 -d " " > $(DIST ) /talon-one-client-$(VERSION ) .pom.md5
25
26
26
27
prepare : build bundle
27
28
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ Add this dependency to your project's POM:
53
53
<dependency >
54
54
<groupId >one.talon</groupId >
55
55
<artifactId >talon-one-client</artifactId >
56
- <version >9.0.1 </version >
56
+ <version >9.0.2 </version >
57
57
<scope >compile</scope >
58
58
</dependency >
59
59
```
@@ -63,7 +63,7 @@ Add this dependency to your project's POM:
63
63
Add this dependency to your project's build file:
64
64
65
65
``` groovy
66
- compile "one.talon:talon-one-client:9.0.1 "
66
+ compile "one.talon:talon-one-client:9.0.2 "
67
67
```
68
68
69
69
### Others
@@ -76,7 +76,7 @@ mvn clean package
76
76
77
77
Then manually install the following JARs:
78
78
79
- * ` target/talon-one-client-9.0.1 .jar `
79
+ * ` target/talon-one-client-9.0.2 .jar `
80
80
* ` target/lib/*.jar `
81
81
82
82
## Getting Started
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ apply plugin: 'eclipse'
3
3
apply plugin : ' java'
4
4
5
5
group = ' one.talon'
6
- version = ' 9.0.1 '
6
+ version = ' 9.0.2 '
7
7
8
8
buildscript {
9
9
repositories {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
2
2
settings(
3
3
organization := " one.talon" ,
4
4
name := " talon-one-client" ,
5
- version := " 9.0.1 " ,
5
+ version := " 9.0.2 " ,
6
6
scalaVersion := " 2.11.4" ,
7
7
scalacOptions ++= Seq (" -feature" ),
8
8
javacOptions in compile ++= Seq (" -Xlint:deprecation" ),
Original file line number Diff line number Diff line change 5
5
<artifactId >talon-one-client</artifactId >
6
6
<packaging >jar</packaging >
7
7
<name >talon-one-client</name >
8
- <version >9.0.1 </version >
8
+ <version >9.0.2 </version >
9
9
<url >https://github.com/talon-one/maven-artefacts</url >
10
10
<description >Talon.One unified JAVA SDK. It allows for programmatic access to the integration and management API with their respective authentication strategies</description >
11
11
<scm >
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ private void init() {
132
132
json = new JSON ();
133
133
134
134
// Set default User-Agent.
135
- setUserAgent ("OpenAPI-Generator/9.0.1 /java" );
135
+ setUserAgent ("OpenAPI-Generator/9.0.2 /java" );
136
136
137
137
authentications = new HashMap <String , Authentication >();
138
138
}
You can’t perform that action at this time.
0 commit comments