@@ -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:
4949Add 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
6363Then 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);
0 commit comments