Skip to content

Commit 54f8b31

Browse files
Merge pull request #8 from RusticiSoftware/fix-v2-release
Fixed issue with pom file
2 parents dade113 + 2445bcd commit 54f8b31

File tree

149 files changed

+186
-151
lines changed

Some content is hidden

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

149 files changed

+186
-151
lines changed

.DS_Store

0 Bytes
Binary file not shown.

README.md

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

33
SCORM Cloud Rest API
44
- API version: 2.0
5-
- Build date: 2021-11-01T15:24:36.536-05:00
5+
- Build date: 2021-11-05T13:19:45.469-05:00
66

77
REST API used for SCORM Cloud integrations.
88

pom.xml

Lines changed: 39 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
32
<modelVersion>4.0.0</modelVersion>
43
<groupId>com.rusticisoftware.cloud.v2.client</groupId>
54
<artifactId>scormcloud-api-v2-client</artifactId>
65
<packaging>jar</packaging>
76
<name>scormcloud-api-v2-client</name>
8-
<version>2.0.0</version>
7+
<version>2.0.0-SNAPSHOT</version>
98
<url>https://rusticisoftware.com/products/scorm-cloud/api/</url>
109
<description>Swagger Generated Java Client for SCORM Cloud API v2</description>
1110
<scm>
1211
<connection>scm:git:git@github.com:RusticiSoftware/scormcloud-api-v2-client-java.git</connection>
1312
<developerConnection>scm:git:git@github.com:RusticiSoftware/scormcloud-api-v2-client-java.git</developerConnection>
1413
<url>https://github.com/RusticiSoftware/scormcloud-api-v2-client-java</url>
15-
</scm>
14+
<tag>HEAD</tag>
15+
</scm>
1616

1717
<licenses>
1818
<license>
@@ -157,6 +157,20 @@
157157
</execution>
158158
</executions>
159159
</plugin>
160+
<plugin>
161+
<groupId>org.apache.maven.plugins</groupId>
162+
<artifactId>maven-gpg-plugin</artifactId>
163+
<version>1.5</version>
164+
<executions>
165+
<execution>
166+
<id>sign-artifacts</id>
167+
<phase>verify</phase>
168+
<goals>
169+
<goal>sign</goal>
170+
</goals>
171+
</execution>
172+
</executions>
173+
</plugin>
160174
<plugin>
161175
<groupId>org.apache.maven.plugins</groupId>
162176
<artifactId>maven-source-plugin</artifactId>
@@ -170,6 +184,17 @@
170184
</execution>
171185
</executions>
172186
</plugin>
187+
<plugin>
188+
<groupId>org.sonatype.plugins</groupId>
189+
<artifactId>nexus-staging-maven-plugin</artifactId>
190+
<version>1.6.7</version>
191+
<extensions>true</extensions>
192+
<configuration>
193+
<serverId>ossrh</serverId>
194+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
195+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
196+
</configuration>
197+
</plugin>
173198
</plugins>
174199
</build>
175200

@@ -255,4 +280,14 @@
255280
<jackson-version>2.11.4</jackson-version>
256281
<maven-plugin-version>1.0.0</maven-plugin-version>
257282
</properties>
283+
<distributionManagement>
284+
<snapshotRepository>
285+
<id>ossrh</id>
286+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
287+
</snapshotRepository>
288+
<repository>
289+
<id>ossrh</id>
290+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
291+
</repository>
292+
</distributionManagement>
258293
</project>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
import com.rusticisoftware.cloud.v2.client.auth.ApiKeyAuth;
5252
import com.rusticisoftware.cloud.v2.client.auth.OAuth;
5353

54-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-11-01T15:24:36.536-05:00")
54+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-11-05T13:19:45.469-05:00")
5555
public class ApiClient {
5656
protected Map<String, String> defaultHeaderMap = new HashMap<String, String>();
5757
protected String basePath = "https://cloud.scorm.com/api/v2/";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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 = "2021-11-01T15:24:36.536-05:00")
19+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-11-05T13:19:45.469-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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

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

16-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-11-01T15:24:36.536-05:00")
16+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-11-05T13:19:45.469-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 = "2021-11-01T15:24:36.536-05:00")
11+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-11-05T13:19:45.469-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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

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

16-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-11-01T15:24:36.536-05:00")
16+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-11-05T13:19:45.469-05:00")
1717
public class Pair {
1818
private String name = "";
1919
private String value = "";

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

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

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

16-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-11-01T15:24:36.536-05:00")
16+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-11-05T13:19:45.469-05:00")
1717
public class StringUtil {
1818
/**
1919
* Check if the given array contains the given value (with case-insensitive comparison).

src/main/java/com/rusticisoftware/cloud/v2/client/api/AboutApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import java.util.List;
1616
import java.util.Map;
1717

18-
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-11-01T15:24:36.536-05:00")
18+
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2021-11-05T13:19:45.469-05:00")
1919
public class AboutApi {
2020
private ApiClient apiClient;
2121

0 commit comments

Comments
 (0)