Skip to content

Commit

Permalink
Merge pull request #304 from bmarwell/SHIRO-819_hasher-util
Browse files Browse the repository at this point in the history
[SHIRO-819] Migrato to spring-boot-maven-plugin
  • Loading branch information
bmarwell authored May 21, 2021
2 parents 2e9cddc + 3eb2642 commit cfea5a8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 52 deletions.
2 changes: 1 addition & 1 deletion crypto/support/hashes/argon2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</parent>

<artifactId>shiro-hashes-argon2</artifactId>
<name>Apache Shiro :: Cryptography :: Support :: Hashes :: Argon2</name>
<name>Apache Shiro :: Cryptography :: Support :: Argon2</name>

<packaging>bundle</packaging>

Expand Down
2 changes: 1 addition & 1 deletion crypto/support/hashes/bcrypt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</parent>

<artifactId>shiro-hashes-bcrypt</artifactId>
<name>Apache Shiro :: Cryptography :: Support :: Hashes :: BCrypt</name>
<name>Apache Shiro :: Cryptography :: Support :: BCrypt</name>

<packaging>bundle</packaging>

Expand Down
25 changes: 10 additions & 15 deletions tools/hasher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,25 +73,20 @@
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<descriptors>
<descriptor>src/main/assembly/cli.assembly.xml</descriptor>
</descriptors>
<archive>
<manifest>
<mainClass>org.apache.shiro.tools.hasher.Hasher</mainClass>
</manifest>
</archive>
</configuration>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.1.12.RELEASE</version>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
<goal>repackage</goal>
</goals>
<configuration>
<mainClass>org.apache.shiro.tools.hasher.Hasher</mainClass>
<classifier>cli</classifier>
<attach>true</attach>
<layout>JAR</layout>
</configuration>
</execution>
</executions>
</plugin>
Expand Down
35 changes: 0 additions & 35 deletions tools/hasher/src/main/assembly/cli.assembly.xml

This file was deleted.

0 comments on commit cfea5a8

Please sign in to comment.