Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
echo "All required secrets are configured."

- name: Set up JDK 11
uses: actions/setup-java@v6
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: '11'
Expand Down
25 changes: 4 additions & 21 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.zowe.client.java.sdk</groupId>
<artifactId>zowe-client-java-sdk</artifactId>
<version>7.0.4</version>
<version>7.0.5</version>

<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
Expand Down Expand Up @@ -37,13 +37,6 @@
<url>https://github.com/zowe/zowe-client-java-sdk/tree/master</url>
</scm>

<distributionManagement>
<repository>
<id>central</id>
<url>https://central.sonatype.com/artifact/org.zowe.client.java.sdk/zowe-client-java-sdk</url>
</repository>
</distributionManagement>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
Expand Down Expand Up @@ -121,7 +114,6 @@
<version>5.12.0</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
Expand Down Expand Up @@ -201,14 +193,15 @@
</execution>
</executions>
</plugin>
<!-- For ci-cd publishing task -->
<!-- Maven Central publishing -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.10.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>false</autoPublish>
</configuration>
<dependencies>
<dependency>
Expand Down Expand Up @@ -245,7 +238,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand All @@ -256,16 +249,6 @@
</execution>
</executions>
</plugin>
<!-- Central publishing -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
</plugins>
</build>
</profile>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/zowe/client/sdk/rest/ZosmfRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ private static void setupSsl(final UnirestInstance instance, final ZosConnection
*
* @param instance UnirestInstance to configure
* @param certFilePath certificate file (.p12) location
* @param certPassword certificate password for certificate file (.p12)
* @param certPassword certificate password for a certificate file (.p12)
* @author Frank Giordano
*/
private static void setupSelfSignedCertificate(final UnirestInstance instance,
Expand Down
1 change: 0 additions & 1 deletion src/main/java/zowe/client/sdk/utility/JsonUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import org.slf4j.LoggerFactory;
import zowe.client.sdk.rest.exception.ZosmfRequestException;


/**
* Utility class contains helper methods for JSON parse processing.
*
Expand Down
Loading