Skip to content

Commit

Permalink
Change nl.example to com.example
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsbasjes committed Jun 17, 2021
1 parent 6f2bffa commit 16cbe06
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

package nl.example;
package com.example;

public class Main
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,3 @@
# under the License.

invoker.goals = clean package
invoker.java.version = 1.8+
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ under the License.
<relocations>
<relocation>
<pattern>org.codehaus.plexus</pattern>
<shadedPattern>nl.example.shaded.org.codehaus.plexus</shadedPattern>
<shadedPattern>com.example.shaded.org.codehaus.plexus</shadedPattern>
</relocation>
</relocations>
<artifactSet>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

package nl.example;
package com.example;

import org.codehaus.plexus.util.StringUtils;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

package nl.example;
package com.example;

import org.junit.Test;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import org.codehaus.plexus.util.*;

String[] libraryWanted =
{
"nl/example/StringTester.class",
"nl/example/shaded/org/codehaus/plexus/util/StringUtils.class",
"com/example/StringTester.class",
"com/example/shaded/org/codehaus/plexus/util/StringUtils.class",
};

String[] libraryUnwanted =
Expand Down Expand Up @@ -73,9 +73,9 @@ finally

String[] commandlineWanted =
{
"nl/example/Main.class",
"nl/example/StringTester.class",
"nl/example/shaded/org/codehaus/plexus/util/StringUtils.class",
"com/example/Main.class",
"com/example/StringTester.class",
"com/example/shaded/org/codehaus/plexus/util/StringUtils.class",
};

String[] commandlineUnwanted =
Expand Down

0 comments on commit 16cbe06

Please sign in to comment.