Skip to content

Commit 0cf20a6

Browse files
committed
Merge branch 'release/2020-05'
2 parents 68fe1ea + 504b103 commit 0cf20a6

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Add this dependency to your project's POM:
3939
<dependency>
4040
<groupId>org.omg.sysml</groupId>
4141
<artifactId>sysml-v2-api-client</artifactId>
42-
<version>2020-05-rc1</version>
42+
<version>2020-05</version>
4343
<scope>compile</scope>
4444
</dependency>
4545
```
@@ -49,7 +49,7 @@ Add this dependency to your project's POM:
4949
Add this dependency to your project's build file:
5050

5151
```groovy
52-
compile "org.omg.sysml:sysml-v2-api-client:2020-05-rc1"
52+
compile "org.omg.sysml:sysml-v2-api-client:2020-05"
5353
```
5454

5555
### Others
@@ -62,7 +62,7 @@ mvn clean package
6262

6363
Then manually install the following JARs:
6464

65-
* `target/sysml-v2-api-client-2020-05-rc1.jar`
65+
* `target/sysml-v2-api-client-2020-05.jar`
6666
* `target/lib/*.jar`
6767

6868
## Getting Started

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'eclipse'
33
apply plugin: 'java'
44

55
group = 'org.omg.sysml'
6-
version = '2020-05-rc1'
6+
version = '2020-05'
77

88
buildscript {
99
repositories {

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "org.omg.sysml",
44
name := "sysml-v2-api-client",
5-
version := "2020-05-rc1",
5+
version := "2020-05",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>sysml-v2-api-client</artifactId>
66
<packaging>jar</packaging>
77
<name>sysml-v2-api-client</name>
8-
<version>2020-05-rc1</version>
8+
<version>2020-05</version>
99
<url>https://github.com/openapitools/openapi-generator</url>
1010
<description>OpenAPI Java</description>
1111
<scm>

src/main/java/org/omg/sysml/ApiClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ private void init() {
9797
json = new JSON();
9898

9999
// Set default User-Agent.
100-
setUserAgent("OpenAPI-Generator/2020-05-rc1/java");
100+
setUserAgent("OpenAPI-Generator/2020-05/java");
101101

102102
authentications = new HashMap<String, Authentication>();
103103
}

0 commit comments

Comments
 (0)