Skip to content

Commit 689eeba

Browse files
author
Rakesh Pawar
committed
updated groupid
1 parent 9f3a311 commit 689eeba

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Usage: Add this maven plugin as a dependency in the plugins section in your pom
77

88
```
99
<plugin>
10-
<groupId>org.agogs.crypto</groupId>
10+
<groupId>com.github.pnrakesh</groupId>
1111
<artifactId>securekey-maven-plugin</artifactId>
1212
<executions>
1313
<execution>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>org.agogs.crypto</groupId>
4+
<groupId>com.github.pnrakesh</groupId>
55
<artifactId>securekey-maven-plugin</artifactId>
66
<packaging>maven-plugin</packaging>
77
<version>1.0</version>

src/main/java/org/agogs/crypto/gen/GenerateSecureKey.java renamed to src/main/java/com/github/pnrakesh/gen/GenerateSecureKey.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
package org.agogs.crypto.gen;
1+
package com.github.pnrakesh.gen;
22

33
import org.apache.maven.plugin.AbstractMojo;
44
import org.apache.maven.plugin.MojoExecutionException;
55
import org.apache.maven.plugins.annotations.Mojo;
6-
import org.agogs.crypto.util.Util;
6+
import com.github.pnrakesh.util.Util;
77

88
import javax.crypto.KeyGenerator;
99
import javax.crypto.SecretKey;

src/main/java/org/agogs/crypto/util/Util.java renamed to src/main/java/com/github/pnrakesh/util/Util.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.agogs.crypto.util;
1+
package com.github.pnrakesh.util;
22

33
import javax.crypto.SecretKey;
44
import java.util.Base64;

0 commit comments

Comments
 (0)