Skip to content

Commit a1827ed

Browse files
[ACS-9960] Use commons-lang 3.18. Bump repository dependency from 25.2.0 to 25.3.0-A.8. (#728)
1 parent 1cab716 commit a1827ed

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

plugins/alfresco-maven-plugin/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,9 @@
135135
<version>0.6.0</version>
136136
</dependency>
137137
<dependency>
138-
<groupId>commons-lang</groupId>
139-
<artifactId>commons-lang</artifactId>
140-
<version>2.6</version>
138+
<groupId>org.apache.commons</groupId>
139+
<artifactId>commons-lang3</artifactId>
140+
<version>3.18.0</version>
141141
</dependency>
142142
<dependency>
143143
<groupId>org.twdata.maven</groupId>
@@ -167,4 +167,4 @@
167167
</plugins>
168168
</reporting>
169169

170-
</project>
170+
</project>

plugins/alfresco-maven-plugin/src/main/java/org/alfresco/maven/plugin/AbstractRefreshWebappMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818
package org.alfresco.maven.plugin;
1919

20-
import org.apache.commons.lang.StringUtils;
20+
import org.apache.commons.lang3.StringUtils;
2121
import org.apache.commons.net.telnet.TelnetClient;
2222
import org.apache.http.HttpHost;
2323
import org.apache.http.HttpStatus;

plugins/alfresco-maven-plugin/src/main/java/org/alfresco/maven/plugin/AbstractRunMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import org.alfresco.maven.plugin.config.ModuleDependency;
2121
import org.alfresco.maven.plugin.config.TomcatDependency;
2222
import org.alfresco.maven.plugin.config.TomcatWebapp;
23-
import org.apache.commons.lang.StringUtils;
23+
import org.apache.commons.lang3.StringUtils;
2424
import org.apache.http.client.methods.CloseableHttpResponse;
2525
import org.apache.http.client.methods.HttpGet;
2626
import org.apache.http.impl.client.CloseableHttpClient;

plugins/alfresco-maven-plugin/src/main/java/org/alfresco/maven/plugin/config/ModuleDependency.java

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

1919
package org.alfresco.maven.plugin.config;
2020

21-
import org.apache.commons.lang.StringUtils;
21+
import org.apache.commons.lang3.StringUtils;
2222

2323
/**
2424
* <p>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,17 +56,17 @@
5656
<alfresco.sdk.tests.exclude>*/*-enterprise*/*</alfresco.sdk.tests.exclude>
5757

5858
<alfresco.bomDependency.artifactId>acs-community-packaging</alfresco.bomDependency.artifactId>
59-
<alfresco.platform.version>25.2.0</alfresco.platform.version>
59+
<alfresco.platform.version>25.3.0-A.8</alfresco.platform.version>
6060
<alfresco.platform.docker.user>alfresco</alfresco.platform.docker.user>
61-
<alfresco.share.docker.version>25.2.0</alfresco.share.docker.version>
61+
<alfresco.share.docker.version>25.3.0-A.8</alfresco.share.docker.version>
6262
<!--
6363
The following value is now obtained by looking at the
6464
- alfresco-community-share.version (eg. https://github.com/Alfresco/acs-community-packaging/blob/25.1.0/pom.xml#L17)
6565
or
6666
- alfresco-enterprise-share.version (eg. https://github.com/Alfresco/acs-packaging/blob/25.1.0/pom.xml#L18)
6767
for the GitHub Tag related to the above Docker version.
6868
-->
69-
<alfresco.share.version>25.2.0.46</alfresco.share.version>
69+
<alfresco.share.version>25.3.0.25</alfresco.share.version>
7070
<alfresco.platform.docker.image>alfresco/alfresco-content-repository-community</alfresco.platform.docker.image>
7171
<alfresco.share.docker.image>alfresco/alfresco-share</alfresco.share.docker.image>
7272
<keystore.settings>
@@ -711,4 +711,4 @@
711711
<timezone>+1</timezone>
712712
</contributor>
713713
</contributors>
714-
</project>
714+
</project>

0 commit comments

Comments
 (0)