Skip to content
This repository has been archived by the owner on Oct 26, 2021. It is now read-only.

Commit

Permalink
Updated to sdks
Browse files Browse the repository at this point in the history
  • Loading branch information
alexec committed Feb 25, 2020
1 parent b35990a commit bd6f5d5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>io.argoproj.workflow</groupId>
<artifactId>argo-client-java</artifactId>
<version>1-SNAPSHOT</version>
<version>sdks</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -49,7 +49,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "io.argoproj.workflow:argo-client-java:1-SNAPSHOT"
compile "io.argoproj.workflow:argo-client-java:sdks"
```

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

Then manually install the following JARs:

* `target/argo-client-java-1-SNAPSHOT.jar`
* `target/argo-client-java-sdks.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 = 'io.argoproj.workflow'
version = '1-SNAPSHOT'
version = 'sdks'

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 := "io.argoproj.workflow",
name := "argo-client-java",
version := "1-SNAPSHOT",
version := "sdks",
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>argo-client-java</artifactId>
<packaging>jar</packaging>
<name>argo-client-java</name>
<version>1-SNAPSHOT</version>
<version>sdks</version>
<url>https://github.com/openapitools/openapi-generator</url>
<description>OpenAPI Java</description>
<scm>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/argoproj/workflow/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ private void init() {
json = new JSON();

// Set default User-Agent.
setUserAgent("OpenAPI-Generator/1-SNAPSHOT/java");
setUserAgent("OpenAPI-Generator/sdks/java");

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

0 comments on commit bd6f5d5

Please sign in to comment.