Skip to content

Commit 68714b2

Browse files
committed
Moditect plugin generates split package warnings
1 parent 7d4bbde commit 68714b2

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

pom.xml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@
8585
<dependency>
8686
<groupId>org.apache.commons</groupId>
8787
<artifactId>commons-text</artifactId>
88-
<version>1.12.0</version>
89-
<scope>provided</scope>
88+
<version>${commons.text.version}</version>
89+
<scope>test</scope>
9090
</dependency>
9191
<dependency>
9292
<groupId>org.openjdk.jmh</groupId>
@@ -174,6 +174,7 @@
174174
<commons.jacoco.branchRatio>0.92</commons.jacoco.branchRatio>
175175
<commons.jacoco.lineRatio>0.95</commons.jacoco.lineRatio>
176176
<commons.jacoco.complexityRatio>0.90</commons.jacoco.complexityRatio>
177+
<commons.text.version>1.12.0</commons.text.version>
177178
</properties>
178179

179180
<build>
@@ -226,6 +227,13 @@
226227
</manifest>
227228
</archive>
228229
<doclint>all</doclint>
230+
<additionalDependencies>
231+
<additionalDependency>
232+
<groupId>org.apache.commons</groupId>
233+
<artifactId>commons-text</artifactId>
234+
<version>${commons.text.version}</version>
235+
</additionalDependency>
236+
</additionalDependencies>
229237
</configuration>
230238
<executions>
231239
<execution>

src/changes/changes.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ The <action> type attribute can be add,update,fix,remove.
7171
<action type="fix" dev="ggregory" due-to="Gary Gregory">Make LangCollectors.collect(...) null-safe.</action>
7272
<action type="fix" dev="ggregory" due-to="Gary Gregory">Make LangCollectors.collect(...) null-safe.</action>
7373
<action type="fix" dev="ggregory" due-to="IBue, Gary Gregory">Fix names of UTF-16 surrogate character test fixture constants, see also #1326.</action>
74+
<action type="fix" dev="ggregory" due-to="Gary Gregory">Moditect plugin generates split package warnings.</action>
7475
<!-- ADD -->
7576
<action type="add" dev="ggregory" due-to="Gary Gregory">Add Strings and refactor StringUtils.</action>
7677
<action issue="LANG-1747" type="add" dev="ggregory" due-to="Oliver B. Fischer, Gary Gregory">Add StopWatch.run([Failable]Runnable) and get([Failable]Supplier).</action>

0 commit comments

Comments
 (0)