Skip to content

Commit f4048fd

Browse files
committed
Merge branch 'release/2020-03-p1'
2 parents 38ed4a5 + 07b3c4d commit f4048fd

File tree

19 files changed

+52
-118
lines changed

19 files changed

+52
-118
lines changed

.idea/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.idea/.name

Lines changed: 0 additions & 1 deletion
This file was deleted.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.idea/gradle.xml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.idea/jarRepositories.xml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.idea/sbt.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

README.md

Lines changed: 5 additions & 5 deletions
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-03</version>
42+
<version>2020-03-p1</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-03"
52+
compile "org.omg.sysml:sysml-v2-api-client:2020-03-p1"
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-03.jar`
65+
* `target/sysml-v2-api-client-2020-03-p1.jar`
6666
* `target/lib/*.jar`
6767

6868
## Getting Started
@@ -84,8 +84,8 @@ public class Example {
8484
defaultClient.setBasePath("http://localhost");
8585

8686
CommitApi apiInstance = new CommitApi(defaultClient);
87-
String projectId = "projectId_example"; // String | ID of the project
88-
String commitId = "commitId_example"; // String | ID of the commit
87+
UUID projectId = new UUID(); // UUID | ID of the project
88+
UUID commitId = new UUID(); // UUID | ID of the commit
8989
try {
9090
Commit result = apiInstance.getCommitByProjectAndId(projectId, commitId);
9191
System.out.println(result);

build.gradle

Lines changed: 1 addition & 1 deletion
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-03'
6+
version = '2020-03-p1'
77

88
buildscript {
99
repositories {

0 commit comments

Comments
 (0)