File tree Expand file tree Collapse file tree 6 files changed +25
-8
lines changed Expand file tree Collapse file tree 6 files changed +25
-8
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,9 @@ bundle:
19
19
cp pom.xml $(DIST ) /talon-one-client-$(VERSION ) .pom && \
20
20
cp target/_remote.repositories $(DIST ) && \
21
21
cp target/talon-one-client-$(VERSION ) -sources.jar $(DIST ) && \
22
- cp target/talon-one-client-$(VERSION ) .jar $(DIST )
22
+ cp target/talon-one-client-$(VERSION ) -sources.jar.md5 $(DIST ) && \
23
+ cp target/talon-one-client-$(VERSION ) .jar $(DIST ) && \
24
+ cp target/talon-one-client-$(VERSION ) .jar.md5 $(DIST )
23
25
24
26
prepare : build bundle
25
27
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.0 </version >
56
+ <version >9.0.1 </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.0 "
66
+ compile "one.talon:talon-one-client:9.0.1 "
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.0 .jar `
79
+ * ` target/talon-one-client-9.0.1 .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.0 '
6
+ version = ' 9.0.1 '
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.0 " ,
5
+ version := " 9.0.1 " ,
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.0 </version >
8
+ <version >9.0.1 </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 >
182
182
</execution >
183
183
</executions >
184
184
</plugin >
185
+ <plugin >
186
+ <groupId >net.nicoulaj.maven.plugins</groupId >
187
+ <artifactId >checksum-maven-plugin</artifactId >
188
+ <version >1.10</version >
189
+ <executions >
190
+ <execution >
191
+ <goals >
192
+ <goal >artifacts</goal >
193
+ </goals >
194
+ </execution >
195
+ </executions >
196
+ <configuration >
197
+ <!-- put your configurations here -->
198
+ </configuration >
199
+ </plugin >
185
200
</plugins >
186
201
</build >
187
202
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.0 /java" );
135
+ setUserAgent ("OpenAPI-Generator/9.0.1 /java" );
136
136
137
137
authentications = new HashMap <String , Authentication >();
138
138
}
You can’t perform that action at this time.
0 commit comments