Skip to content

Commit 8f36886

Browse files
committed
Bring library out of beta
1 parent 5cc4d7f commit 8f36886

File tree

139 files changed

+11198
-315
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+11198
-315
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# scormcloud-api-v2-client
22

33
SCORM Cloud Rest API
4-
- API version: 2.0 beta
5-
- Build date: 2019-07-16T16:01:27.387-05:00
4+
- API version: 2.0
5+
- Build date: 2019-09-20T12:48:59.622-05:00
66

77
REST API used for SCORM Cloud integrations.
88

@@ -40,7 +40,7 @@ Add this dependency to your project's POM:
4040
<dependency>
4141
<groupId>com.rusticisoftware.cloud.v2.client</groupId>
4242
<artifactId>scormcloud-api-v2-client</artifactId>
43-
<version>1.0.0-beta</version>
43+
<version>1.0.0</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
```
@@ -50,7 +50,7 @@ Add this dependency to your project's POM:
5050
Add this dependency to your project's build file:
5151

5252
```groovy
53-
compile "com.rusticisoftware.cloud.v2.client:scormcloud-api-v2-client:1.0.0-beta"
53+
compile "com.rusticisoftware.cloud.v2.client:scormcloud-api-v2-client:1.0.0"
5454
```
5555

5656
### Others
@@ -63,7 +63,7 @@ mvn clean package
6363

6464
Then manually install the following JARs:
6565

66-
* `target/scormcloud-api-v2-client-1.0.0-beta.jar`
66+
* `target/scormcloud-api-v2-client-1.0.0.jar`
6767
* `target/lib/*.jar`
6868

6969
## Getting Started

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'idea'
22
apply plugin: 'eclipse'
33

44
group = 'com.rusticisoftware.cloud.v2.client'
5-
version = '1.0.0-beta'
5+
version = '1.0.0'
66

77
buildscript {
88
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.rusticisoftware.cloud.v2.client",
44
name := "scormcloud-api-v2-client",
5-
version := "1.0.0-beta",
5+
version := "1.0.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>scormcloud-api-v2-client</artifactId>
66
<packaging>jar</packaging>
77
<name>scormcloud-api-v2-client</name>
8-
<version>1.0.0-beta</version>
8+
<version>1.0.0</version>
99
<description>Swagger Generated Java Client for SCORM Cloud API v2</description>
1010
<url>https://rusticisoftware.com/products/scorm-cloud/api/</url>
1111
<scm>

src/main/java/com/rusticisoftware/cloud/v2/client/ApiClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
import com.rusticisoftware.cloud.v2.client.auth.ApiKeyAuth;
4949
import com.rusticisoftware.cloud.v2.client.auth.OAuth;
5050

51-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-07-16T16:01:27.387-05:00")
51+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-09-20T12:48:59.622-05:00")
5252
public class ApiClient {
5353
private Map<String, String> defaultHeaderMap = new HashMap<String, String>();
5454
private String basePath = "https://cloud.scorm.com/api/v2/";
@@ -73,7 +73,7 @@ public ApiClient() {
7373
this.dateFormat = new RFC3339DateFormat();
7474

7575
// Set default User-Agent.
76-
setUserAgent("Swagger-Codegen/1.0.0-beta/java");
76+
setUserAgent("Swagger-Codegen/1.0.0/java");
7777

7878
// Setup authentications (key: authentication name, value: authentication).
7979
authentications = new HashMap<String, Authentication>();

src/main/java/com/rusticisoftware/cloud/v2/client/ApiException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* SCORM Cloud Rest API
33
* REST API used for SCORM Cloud integrations.
44
*
5-
* OpenAPI spec version: 2.0 beta
5+
* OpenAPI spec version: 2.0
66
*
77
*
88
* NOTE: This class is auto generated by the swagger code generator program.
@@ -16,7 +16,7 @@
1616
import java.util.Map;
1717
import java.util.List;
1818

19-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-07-16T16:01:27.387-05:00")
19+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-09-20T12:48:59.622-05:00")
2020
public class ApiException extends Exception {
2121
private int code = 0;
2222
private Map<String, List<String>> responseHeaders = null;

src/main/java/com/rusticisoftware/cloud/v2/client/Configuration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* SCORM Cloud Rest API
33
* REST API used for SCORM Cloud integrations.
44
*
5-
* OpenAPI spec version: 2.0 beta
5+
* OpenAPI spec version: 2.0
66
*
77
*
88
* NOTE: This class is auto generated by the swagger code generator program.
@@ -13,7 +13,7 @@
1313

1414
package com.rusticisoftware.cloud.v2.client;
1515

16-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-07-16T16:01:27.387-05:00")
16+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-09-20T12:48:59.622-05:00")
1717
public class Configuration {
1818
private static ApiClient defaultApiClient = new ApiClient();
1919

src/main/java/com/rusticisoftware/cloud/v2/client/JSON.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import javax.ws.rs.ext.ContextResolver;
1010

11-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-07-16T16:01:27.387-05:00")
11+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-09-20T12:48:59.622-05:00")
1212
public class JSON implements ContextResolver<ObjectMapper> {
1313
private ObjectMapper mapper;
1414

src/main/java/com/rusticisoftware/cloud/v2/client/Pair.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* SCORM Cloud Rest API
33
* REST API used for SCORM Cloud integrations.
44
*
5-
* OpenAPI spec version: 2.0 beta
5+
* OpenAPI spec version: 2.0
66
*
77
*
88
* NOTE: This class is auto generated by the swagger code generator program.
@@ -13,7 +13,7 @@
1313

1414
package com.rusticisoftware.cloud.v2.client;
1515

16-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-07-16T16:01:27.387-05:00")
16+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2019-09-20T12:48:59.622-05:00")
1717
public class Pair {
1818
private String name = "";
1919
private String value = "";

src/main/java/com/rusticisoftware/cloud/v2/client/RFC3339DateFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* SCORM Cloud Rest API
33
* REST API used for SCORM Cloud integrations.
44
*
5-
* OpenAPI spec version: 2.0 beta
5+
* OpenAPI spec version: 2.0
66
*
77
*
88
* NOTE: This class is auto generated by the swagger code generator program.

0 commit comments

Comments
 (0)