Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SHIRO-819] Migrato to spring-boot-maven-plugin #304

Merged
merged 1 commit into from
May 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.