Skip to content

Commit 16cbe06

Browse files
committed
Change nl.example to com.example
1 parent 6f2bffa commit 16cbe06

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919

20-
package nl.example;
20+
package com.example;
2121

2222
public class Main
2323
{

src/it/projects/MSHADE-326-Hide-dependencies-from-reactor/invoker.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,3 @@
1616
# under the License.
1717

1818
invoker.goals = clean package
19-
invoker.java.version = 1.8+

src/it/projects/MSHADE-326-Hide-dependencies-from-reactor/library/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ under the License.
6565
<relocations>
6666
<relocation>
6767
<pattern>org.codehaus.plexus</pattern>
68-
<shadedPattern>nl.example.shaded.org.codehaus.plexus</shadedPattern>
68+
<shadedPattern>com.example.shaded.org.codehaus.plexus</shadedPattern>
6969
</relocation>
7070
</relocations>
7171
<artifactSet>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919

20-
package nl.example;
20+
package com.example;
2121

2222
import org.codehaus.plexus.util.StringUtils;
2323

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919

20-
package nl.example;
20+
package com.example;
2121

2222
import org.junit.Test;
2323

src/it/projects/MSHADE-326-Hide-dependencies-from-reactor/verify.bsh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import org.codehaus.plexus.util.*;
2424

2525
String[] libraryWanted =
2626
{
27-
"nl/example/StringTester.class",
28-
"nl/example/shaded/org/codehaus/plexus/util/StringUtils.class",
27+
"com/example/StringTester.class",
28+
"com/example/shaded/org/codehaus/plexus/util/StringUtils.class",
2929
};
3030

3131
String[] libraryUnwanted =
@@ -73,9 +73,9 @@ finally
7373

7474
String[] commandlineWanted =
7575
{
76-
"nl/example/Main.class",
77-
"nl/example/StringTester.class",
78-
"nl/example/shaded/org/codehaus/plexus/util/StringUtils.class",
76+
"com/example/Main.class",
77+
"com/example/StringTester.class",
78+
"com/example/shaded/org/codehaus/plexus/util/StringUtils.class",
7979
};
8080

8181
String[] commandlineUnwanted =

0 commit comments

Comments
 (0)