Skip to content
This repository was archived by the owner on Nov 24, 2024. It is now read-only.

Commit 9d75fb6

Browse files
committed
Rename package
1 parent 188e34b commit 9d75fb6

File tree

7 files changed

+7
-6
lines changed

7 files changed

+7
-6
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
<groupId>javax.inject</groupId>
4040
<artifactId>javax.inject</artifactId>
4141
<version>1</version>
42+
<scope>provided</scope>
4243
</dependency>
4344
<dependency>
4445
<groupId>org.eclipse.sisu</groupId>

src/main/java/org/sonatype/plexus/components/cipher/DefaultPlexusCipher.java renamed to src/main/java/org/codehaus/plexus/components/cipher/DefaultPlexusCipher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package org.sonatype.plexus.components.cipher;
13+
package org.codehaus.plexus.components.cipher;
1414

1515
import javax.inject.Named;
1616
import javax.inject.Singleton;

src/main/java/org/sonatype/plexus/components/cipher/PBECipher.java renamed to src/main/java/org/codehaus/plexus/components/cipher/PBECipher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Licensed to the Apache Software Foundation (ASF) under one
1717
under the License.
1818
*/
1919

20-
package org.sonatype.plexus.components.cipher;
20+
package org.codehaus.plexus.components.cipher;
2121

2222
import javax.crypto.Cipher;
2323
import javax.crypto.NoSuchPaddingException;

src/main/java/org/sonatype/plexus/components/cipher/PlexusCipher.java renamed to src/main/java/org/codehaus/plexus/components/cipher/PlexusCipher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package org.sonatype.plexus.components.cipher;
13+
package org.codehaus.plexus.components.cipher;
1414

1515
/**
1616
* @author Oleg Gusakov

src/main/java/org/sonatype/plexus/components/cipher/PlexusCipherException.java renamed to src/main/java/org/codehaus/plexus/components/cipher/PlexusCipherException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package org.sonatype.plexus.components.cipher;
13+
package org.codehaus.plexus.components.cipher;
1414

1515
public class PlexusCipherException extends RuntimeException {
1616
public PlexusCipherException(String message) {

src/test/java/org/sonatype/plexus/components/cipher/DefaultPlexusCipherTest.java renamed to src/test/java/org/codehaus/plexus/components/cipher/DefaultPlexusCipherTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package org.sonatype.plexus.components.cipher;
13+
package org.codehaus.plexus.components.cipher;
1414

1515
import org.junit.jupiter.api.BeforeEach;
1616
import org.junit.jupiter.api.Disabled;

src/test/java/org/sonatype/plexus/components/cipher/PBECipherTest.java renamed to src/test/java/org/codehaus/plexus/components/cipher/PBECipherTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Licensed to the Apache Software Foundation (ASF) under one
1717
under the License.
1818
*/
1919

20-
package org.sonatype.plexus.components.cipher;
20+
package org.codehaus.plexus.components.cipher;
2121

2222
import org.junit.jupiter.api.BeforeEach;
2323
import org.junit.jupiter.api.Test;

0 commit comments

Comments
 (0)