Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
lutece
lutece-build-plugin-releaser
Commits
184f0da6
Commit
184f0da6
authored
Oct 21, 2021
by
Guillaume Lépine
Browse files
RELEASER-19 : Use commons-lang3 instead of commons-lang
parent
1d22882d
Changes
14
Hide whitespace changes
Inline
Side-by-side
src/java/fr/paris/lutece/plugins/releaser/business/AbstractReleaserResource.java
View file @
184f0da6
...
...
@@ -33,7 +33,7 @@
*/
package
fr.paris.lutece.plugins.releaser.business
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang
3
.StringUtils
;
/**
* AbstractReleaserResource
...
...
src/java/fr/paris/lutece/plugins/releaser/business/IReleaserResource.java
View file @
184f0da6
...
...
@@ -33,7 +33,7 @@
*/
package
fr.paris.lutece.plugins.releaser.business
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang
3
.StringUtils
;
/**
*
...
...
src/java/fr/paris/lutece/plugins/releaser/business/Site.java
View file @
184f0da6
...
...
@@ -35,7 +35,7 @@ package fr.paris.lutece.plugins.releaser.business;
import
javax.validation.constraints.*
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang
3
.StringUtils
;
import
org.hibernate.validator.constraints.*
;
import
fr.paris.lutece.portal.service.rbac.RBACResource
;
...
...
src/java/fr/paris/lutece/plugins/releaser/service/ComponentService.java
View file @
184f0da6
...
...
@@ -46,7 +46,7 @@ import java.util.concurrent.Executors;
import
javax.servlet.http.HttpServletRequest
;
import
org.apache.commons.collections.CollectionUtils
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang
3
.StringUtils
;
import
com.fasterxml.jackson.databind.JsonNode
;
import
com.fasterxml.jackson.databind.ObjectMapper
;
...
...
src/java/fr/paris/lutece/plugins/releaser/service/JiraComponentService.java
View file @
184f0da6
...
...
@@ -41,7 +41,7 @@ import java.util.HashMap;
import
java.util.List
;
import
java.util.Map
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang
3
.StringUtils
;
import
org.joda.time.DateTime
;
import
com.atlassian.jira.rest.client.api.JiraRestClient
;
...
...
src/java/fr/paris/lutece/plugins/releaser/service/MavenService.java
View file @
184f0da6
...
...
@@ -37,7 +37,7 @@ import java.io.File;
import
java.util.ArrayList
;
import
java.util.List
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang
3
.StringUtils
;
import
org.apache.maven.shared.invoker.DefaultInvocationRequest
;
import
org.apache.maven.shared.invoker.DefaultInvoker
;
import
org.apache.maven.shared.invoker.InvocationOutputHandler
;
...
...
src/java/fr/paris/lutece/plugins/releaser/service/WorkflowReleaseContextService.java
View file @
184f0da6
...
...
@@ -47,7 +47,7 @@ import javax.servlet.http.HttpServletRequest;
import
javax.xml.bind.JAXBException
;
import
org.apache.commons.collections.CollectionUtils
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang
3
.StringUtils
;
import
org.eclipse.jgit.api.Git
;
import
org.eclipse.jgit.api.MergeResult
;
import
org.eclipse.jgit.api.errors.GitAPIException
;
...
...
src/java/fr/paris/lutece/plugins/releaser/service/github/GitResourceService.java
View file @
184f0da6
...
...
@@ -39,7 +39,7 @@ import java.util.List;
import
java.util.Locale
;
import
org.apache.commons.collections.CollectionUtils
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang
3
.StringUtils
;
import
org.eclipse.jgit.api.Git
;
import
org.eclipse.jgit.api.LogCommand
;
import
org.eclipse.jgit.api.PullResult
;
...
...
src/java/fr/paris/lutece/plugins/releaser/service/svn/SvnResourceService.java
View file @
184f0da6
...
...
@@ -41,8 +41,8 @@ import java.util.ArrayList;
import
java.util.List
;
import
java.util.Locale
;
import
org.apache.commons.lang.ObjectUtils
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang
3
.ObjectUtils
;
import
org.apache.commons.lang
3
.StringUtils
;
import
org.tmatesoft.svn.core.SVNCancelException
;
import
org.tmatesoft.svn.core.SVNException
;
import
org.tmatesoft.svn.core.auth.ISVNAuthenticationManager
;
...
...
src/java/fr/paris/lutece/plugins/releaser/util/ReleaserUtils.java
View file @
184f0da6
...
...
@@ -42,7 +42,7 @@ import java.util.regex.Pattern;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpSession
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang
3
.StringUtils
;
import
org.apache.maven.artifact.versioning.ComparableVersion
;
import
fr.paris.lutece.plugins.releaser.business.ReleaserUser
;
...
...
src/java/fr/paris/lutece/plugins/releaser/util/github/GitUtils.java
View file @
184f0da6
...
...
@@ -46,7 +46,7 @@ import java.util.List;
import
java.util.Map
;
import
org.apache.commons.collections.map.HashedMap
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang
3
.StringUtils
;
import
org.eclipse.jgit.api.CloneCommand
;
import
org.eclipse.jgit.api.CreateBranchCommand.SetupUpstreamMode
;
import
org.eclipse.jgit.api.Git
;
...
...
src/java/fr/paris/lutece/plugins/releaser/web/ClusterJspBean.java
View file @
184f0da6
...
...
@@ -61,7 +61,7 @@ import java.util.List;
import
java.util.Map
;
import
javax.servlet.http.HttpServletRequest
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang
3
.StringUtils
;
/**
* This class provides the user interface to manage Cluster features ( manage, create, modify, remove )
...
...
src/java/fr/paris/lutece/plugins/releaser/web/ManageComponentReleaseJspBean.java
View file @
184f0da6
...
...
@@ -37,7 +37,7 @@ import java.util.Map;
import
javax.servlet.http.HttpServletRequest
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang
3
.StringUtils
;
import
fr.paris.lutece.plugins.releaser.business.Component
;
import
fr.paris.lutece.plugins.releaser.business.ReleaserUser
;
...
...
src/java/fr/paris/lutece/plugins/releaser/web/ManageSiteReleaseJspBean.java
View file @
184f0da6
...
...
@@ -63,7 +63,7 @@ import java.util.List;
import
java.util.Map
;
import
javax.servlet.http.HttpServletRequest
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang
3
.StringUtils
;
// TODO: Auto-generated Javadoc
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment