Skip to content

Commit

Permalink
Generating checksum for pom (#49)
Browse files Browse the repository at this point in the history
* add checksum for pom

* add checksum for pom
  • Loading branch information
kkupreeva authored Oct 18, 2024
1 parent db42880 commit c179507
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ bundle:
cp target/talon-one-client-$(VERSION)-sources.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)
cp target/talon-one-client-$(VERSION).jar.md5 $(DIST) && \
md5sum $(DIST)/talon-one-client-$(VERSION).pom | cut -f 1 -d " " > $(DIST)/talon-one-client-$(VERSION).pom.md5

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.1</version>
<version>9.0.2</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.1"
compile "one.talon:talon-one-client:9.0.2"
```

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

Then manually install the following JARs:

* `target/talon-one-client-9.0.1.jar`
* `target/talon-one-client-9.0.2.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.1'
version = '9.0.2'

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.1",
version := "9.0.2",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
2 changes: 1 addition & 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.1</version>
<version>9.0.2</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
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.1/java");
setUserAgent("OpenAPI-Generator/9.0.2/java");

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

0 comments on commit c179507

Please sign in to comment.