Skip to content

Commit

Permalink
Update dependencies (#45)
Browse files Browse the repository at this point in the history
* Bump parent POMP from 4.33 to 4.53

* Bump jenkins.version from 2.329 to 2.361.4

* Fix MC_OVERRIDABLE_METHOD_CALL_IN_CONSTRUCTOR

* Bump gxserver-client from 1.0.1 to 1.0.6

* Update Jenkinsfile

* Remove duplicated @param
  • Loading branch information
jlamasrios authored Feb 27, 2024
1 parent b59358a commit bc2492a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 13 deletions.
13 changes: 9 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
buildPlugin(configurations: [
[ platform: "windows", jdk: "8", jenkins: null ],
[ platform: "windows", jdk: "11", jenkins: null ],
])
buildPlugin(
useContainerAgent: true,
failFast: false,
artifactCachingProxyEnabled: true,
configurations: [
[ platform: "windows", jdk: "11", jenkins: null ],
[ platform: "windows", jdk: "17", jenkins: null ],
]
)
11 changes: 5 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ THE SOFTWARE.
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.33</version>
<version>4.53</version>
<relativePath />
</parent>

Expand All @@ -38,8 +38,7 @@ THE SOFTWARE.

<properties>
<changelist>999999-SNAPSHOT</changelist>
<jenkins.version>2.329</jenkins.version>
<java.level>8</java.level>
<jenkins.version>2.361.4</jenkins.version>
<spotbugs.effort>Max</spotbugs.effort>
<spotbugs.failOnError>true</spotbugs.failOnError>
<spotbugs.threshold>Low</spotbugs.threshold>
Expand All @@ -57,8 +56,8 @@ THE SOFTWARE.
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.319.x</artifactId>
<version>1085.vc4c268262299</version>
<artifactId>bom-2.361.x</artifactId>
<version>1757.vf3c66da_b_7492</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down Expand Up @@ -104,7 +103,7 @@ THE SOFTWARE.
<dependency>
<groupId>com.genexus.gxserver</groupId>
<artifactId>gxserver-client</artifactId>
<version>1.0.1</version>
<version>1.0.6</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ public GeneXusInstallation(String name, String home, String msBuildInstallationI

/**
*
* @param msBuildInstallationId MSBuild installation to use
* @param name Installation name
* @param home Path to GeneXus Installation
* @param msBuildInstallationId MSBuild installation id to be used
Expand Down Expand Up @@ -257,7 +256,7 @@ private static boolean isWindows() {

@Extension
@Symbol("genexus")
public static class DescriptorImpl extends ToolDescriptor<GeneXusInstallation> {
public static final class DescriptorImpl extends ToolDescriptor<GeneXusInstallation> {

public DescriptorImpl() {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ public String getKey() {
}

@Extension
public static class DescriptorImpl extends SCMDescriptor<GeneXusServerSCM> {
public static final class DescriptorImpl extends SCMDescriptor<GeneXusServerSCM> {

public static final String DEFAULT_GENEXUS_PATH = "C:\\Program Files (x86)\\GeneXus\\GeneXus15";
public static final String DEFAULT_SERVER_URL = "https://sandbox.genexusserver.com/v15";
Expand Down

0 comments on commit bc2492a

Please sign in to comment.