Skip to content

Commit ad6783d

Browse files
committed
Fix missing plugin repo
1 parent d7b2489 commit ad6783d

3 files changed

Lines changed: 17 additions & 5 deletions

File tree

modules/bcrypt-cli/pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>bcrypt-parent</artifactId>
99
<groupId>at.favre.lib</groupId>
10-
<version>0.5.0</version>
10+
<version>0.4.1</version>
1111
<relativePath>../../</relativePath>
1212
</parent>
1313

@@ -17,6 +17,10 @@
1717
<name>BCrypt CLI Tool</name>
1818
<description>A companion CLI tool for the bcrypt library for java.</description>
1919

20+
<properties>
21+
<maven.deploy.skip>true</maven.deploy.skip>
22+
</properties>
23+
2024
<build>
2125
<plugins>
2226
<plugin>
@@ -82,7 +86,7 @@
8286
<dependency>
8387
<groupId>at.favre.lib</groupId>
8488
<artifactId>bcrypt</artifactId>
85-
<version>0.5.0</version>
89+
<version>0.4.1</version>
8690
</dependency>
8791
<dependency>
8892
<groupId>commons-cli</groupId>

modules/bcrypt/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>bcrypt-parent</artifactId>
99
<groupId>at.favre.lib</groupId>
10-
<version>0.5.0</version>
10+
<version>0.4.1</version>
1111
<relativePath>../../</relativePath>
1212
</parent>
1313

pom.xml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>at.favre.lib</groupId>
88
<artifactId>bcrypt-parent</artifactId>
99
<packaging>pom</packaging>
10-
<version>0.5.0</version>
10+
<version>0.4.1</version>
1111

1212
<url>https://github.com/patrickfav/bcrypt</url>
1313
<inceptionYear>2018</inceptionYear>
@@ -20,7 +20,6 @@
2020
<properties>
2121
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2222
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
23-
<maven.deploy.skip>true</maven.deploy.skip>
2423
</properties>
2524

2625
<repositories>
@@ -32,6 +31,15 @@
3231
</snapshots>
3332
</repository>
3433
</repositories>
34+
<pluginRepositories>
35+
<pluginRepository>
36+
<id>maven-central-repo</id>
37+
<url>http://repo1.maven.org/maven2</url>
38+
<snapshots>
39+
<enabled>false</enabled>
40+
</snapshots>
41+
</pluginRepository>
42+
</pluginRepositories>
3543

3644
<build>
3745
<plugins>

0 commit comments

Comments
 (0)