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:
1919 cp pom.xml $(DIST ) /talon-one-client-$(VERSION ) .pom && \
2020 cp target/_remote.repositories $(DIST ) && \
2121 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 )
2325
2426prepare : build bundle
2527
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ Add this dependency to your project's POM:
5353<dependency >
5454 <groupId >one.talon</groupId >
5555 <artifactId >talon-one-client</artifactId >
56- <version >9.0.0 </version >
56+ <version >9.0.1 </version >
5757 <scope >compile</scope >
5858</dependency >
5959```
@@ -63,7 +63,7 @@ Add this dependency to your project's POM:
6363Add this dependency to your project's build file:
6464
6565``` groovy
66- compile "one.talon:talon-one-client:9.0.0 "
66+ compile "one.talon:talon-one-client:9.0.1 "
6767```
6868
6969### Others
@@ -76,7 +76,7 @@ mvn clean package
7676
7777Then manually install the following JARs:
7878
79- * ` target/talon-one-client-9.0.0 .jar `
79+ * ` target/talon-one-client-9.0.1 .jar `
8080* ` target/lib/*.jar `
8181
8282## Getting Started
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ apply plugin: 'eclipse'
33apply plugin : ' java'
44
55group = ' one.talon'
6- version = ' 9.0.0 '
6+ version = ' 9.0.1 '
77
88buildscript {
99 repositories {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22 settings(
33 organization := " one.talon" ,
44 name := " talon-one-client" ,
5- version := " 9.0.0 " ,
5+ version := " 9.0.1 " ,
66 scalaVersion := " 2.11.4" ,
77 scalacOptions ++= Seq (" -feature" ),
88 javacOptions in compile ++= Seq (" -Xlint:deprecation" ),
Original file line number Diff line number Diff line change 55 <artifactId >talon-one-client</artifactId >
66 <packaging >jar</packaging >
77 <name >talon-one-client</name >
8- <version >9.0.0 </version >
8+ <version >9.0.1 </version >
99 <url >https://github.com/talon-one/maven-artefacts</url >
1010 <description >Talon.One unified JAVA SDK. It allows for programmatic access to the integration and management API with their respective authentication strategies</description >
1111 <scm >
182182 </execution >
183183 </executions >
184184 </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 >
185200 </plugins >
186201 </build >
187202
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ private void init() {
132132 json = new JSON ();
133133
134134 // Set default User-Agent.
135- setUserAgent ("OpenAPI-Generator/9.0.0 /java" );
135+ setUserAgent ("OpenAPI-Generator/9.0.1 /java" );
136136
137137 authentications = new HashMap <String , Authentication >();
138138 }
You can’t perform that action at this time.
0 commit comments