Skip to content

Commit c3d99b4

Browse files
authored
Upgrade to 4.0.0-alpha-7 and exclude dependency to sisu (fixes #17) (#23)
1 parent a83cefa commit c3d99b4

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

pom.xml

+13-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,13 @@ limitations under the License.
5555
<dependency>
5656
<groupId>org.apache.maven</groupId>
5757
<artifactId>maven-xml-impl</artifactId>
58-
<version>4.0.0-alpha-5</version>
58+
<version>4.0.0-alpha-7</version>
59+
<exclusions>
60+
<exclusion>
61+
<groupId>org.eclipse.sisu</groupId>
62+
<artifactId>org.eclipse.sisu.plexus</artifactId>
63+
</exclusion>
64+
</exclusions>
5965
</dependency>
6066
<dependency>
6167
<groupId>org.openjdk.jmh</groupId>
@@ -80,6 +86,12 @@ limitations under the License.
8086
<version>2.2</version>
8187
<scope>test</scope>
8288
</dependency>
89+
<dependency>
90+
<groupId>org.codehaus.plexus</groupId>
91+
<artifactId>plexus-utils</artifactId>
92+
<version>4.0.0</version>
93+
<scope>test</scope>
94+
</dependency>
8395
</dependencies>
8496

8597
<build>

src/main/java/org/codehaus/plexus/util/xml/Xpp3DomUtils.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,15 +125,15 @@ public static Xpp3Dom mergeXpp3Dom(Xpp3Dom dominant, Xpp3Dom recessive) {
125125
}
126126

127127
/**
128-
* @deprecated Use {@link org.codehaus.plexus.util.StringUtils#isNotEmpty(String)} instead
128+
* @deprecated Use org.codehaus.plexus.util.StringUtils#isNotEmpty(String) instead
129129
*/
130130
@Deprecated
131131
public static boolean isNotEmpty(String str) {
132132
return (str != null && str.length() > 0);
133133
}
134134

135135
/**
136-
* @deprecated Use {@link org.codehaus.plexus.util.StringUtils#isEmpty(String)} instead
136+
* @deprecated Use org.codehaus.plexus.util.StringUtils#isEmpty(String) instead
137137
*/
138138
@Deprecated
139139
public static boolean isEmpty(String str) {

0 commit comments

Comments
 (0)