Skip to content

Commit

Permalink
Checksums for JAVA SDK (#48)
Browse files Browse the repository at this point in the history
* checksum

* remove unnecessary
  • Loading branch information
kkupreeva authored Oct 18, 2024
1 parent b3a2e92 commit db42880
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 8 deletions.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ bundle:
cp pom.xml $(DIST)/talon-one-client-$(VERSION).pom && \
cp target/_remote.repositories $(DIST) && \
cp target/talon-one-client-$(VERSION)-sources.jar $(DIST) && \
cp target/talon-one-client-$(VERSION).jar $(DIST)
cp target/talon-one-client-$(VERSION)-sources.jar.md5 $(DIST) && \
cp target/talon-one-client-$(VERSION).jar $(DIST) && \
cp target/talon-one-client-$(VERSION).jar.md5 $(DIST)

prepare: build bundle

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>one.talon</groupId>
<artifactId>talon-one-client</artifactId>
<version>9.0.0</version>
<version>9.0.1</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -63,7 +63,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "one.talon:talon-one-client:9.0.0"
compile "one.talon:talon-one-client:9.0.1"
```

### Others
Expand All @@ -76,7 +76,7 @@ mvn clean package

Then manually install the following JARs:

* `target/talon-one-client-9.0.0.jar`
* `target/talon-one-client-9.0.1.jar`
* `target/lib/*.jar`

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'eclipse'
apply plugin: 'java'

group = 'one.talon'
version = '9.0.0'
version = '9.0.1'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "one.talon",
name := "talon-one-client",
version := "9.0.0",
version := "9.0.1",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
17 changes: 16 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>talon-one-client</artifactId>
<packaging>jar</packaging>
<name>talon-one-client</name>
<version>9.0.0</version>
<version>9.0.1</version>
<url>https://github.com/talon-one/maven-artefacts</url>
<description>Talon.One unified JAVA SDK. It allows for programmatic access to the integration and management API with their respective authentication strategies</description>
<scm>
Expand Down Expand Up @@ -182,6 +182,21 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>net.nicoulaj.maven.plugins</groupId>
<artifactId>checksum-maven-plugin</artifactId>
<version>1.10</version>
<executions>
<execution>
<goals>
<goal>artifacts</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- put your configurations here -->
</configuration>
</plugin>
</plugins>
</build>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/one/talon/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ private void init() {
json = new JSON();

// Set default User-Agent.
setUserAgent("OpenAPI-Generator/9.0.0/java");
setUserAgent("OpenAPI-Generator/9.0.1/java");

authentications = new HashMap<String, Authentication>();
}
Expand Down

0 comments on commit db42880

Please sign in to comment.