Skip to content

Commit a5bd1c8

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

4 files changed

Lines changed: 13 additions & 11 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ The "secret" to generate the key is passed as a parameter in the plugin configur
55

66
Usage: Add this maven plugin as a dependency in the plugins section in your pom file.
77

8+
_**Note: This is not yet available on maven central, meanwhile please download the jar and install in your local maven repository.**_
9+
810
```
911
<plugin>
10-
<groupId>com.github.pnrakesh</groupId>
12+
<groupId>com.github.agogs</groupId>
1113
<artifactId>securekey-maven-plugin</artifactId>
1214
<executions>
1315
<execution>

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
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>com.github.pnrakesh</groupId>
4+
<groupId>com.github.agogs</groupId>
55
<artifactId>securekey-maven-plugin</artifactId>
66
<packaging>maven-plugin</packaging>
77
<version>1.0</version>
88
<name>securekey-maven-plugin</name>
9-
<url>https://github.com/pnrakesh/securekey-maven-plugin</url>
9+
<url>https://github.com/agogs/securekey-maven-plugin</url>
1010

1111
<scm>
12-
<url>https://github.com/pnrakesh/securekey-maven-plugin</url>
13-
<connection>scm:git:git@github.com:pnrakesh/securekey-maven-plugin.git</connection>
14-
<developerConnection>scm:git:git@github.com:pnrakesh/securekey-maven-plugin.git</developerConnection>
12+
<url>https://github.com/agogs/securekey-maven-plugin</url>
13+
<connection>scm:git:git@github.com:agogs/securekey-maven-plugin.git</connection>
14+
<developerConnection>scm:git:git@github.com:agogs/securekey-maven-plugin.git</developerConnection>
1515
<tag>HEAD</tag>
1616
</scm>
1717

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

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

3+
import com.github.agogs.securekey.util.Util;
34
import org.apache.maven.plugin.AbstractMojo;
45
import org.apache.maven.plugin.MojoExecutionException;
56
import org.apache.maven.plugins.annotations.Mojo;
6-
import com.github.pnrakesh.util.Util;
77

88
import javax.crypto.KeyGenerator;
99
import javax.crypto.SecretKey;
@@ -20,7 +20,7 @@
2020
* Create a {@link sun.security.ssl.SecureKey} instance and generate the Base64 encoded string
2121
* The secret to create SecureKey instance is passed as a parameter in the plugin configuration
2222
*
23-
* @author pnrakesh
23+
* @author agogs
2424
*
2525
*
2626
* @goal generate

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
package com.github.pnrakesh.util;
1+
package com.github.agogs.securekey.util;
22

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

66
/**
77
* Expose utility methods
88
*
9-
* @author pnrakesh
9+
* @author agogs
1010
*/
1111
public class Util {
1212
/**

0 commit comments

Comments
 (0)