Skip to content

Commit

Permalink
Fix missing plugin repo
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickfav committed Jul 23, 2018
1 parent d7b2489 commit ad6783d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
8 changes: 6 additions & 2 deletions modules/bcrypt-cli/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>bcrypt-parent</artifactId>
<groupId>at.favre.lib</groupId>
<version>0.5.0</version>
<version>0.4.1</version>
<relativePath>../../</relativePath>
</parent>

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

<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -82,7 +86,7 @@
<dependency>
<groupId>at.favre.lib</groupId>
<artifactId>bcrypt</artifactId>
<version>0.5.0</version>
<version>0.4.1</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
Expand Down
2 changes: 1 addition & 1 deletion modules/bcrypt/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>bcrypt-parent</artifactId>
<groupId>at.favre.lib</groupId>
<version>0.5.0</version>
<version>0.4.1</version>
<relativePath>../../</relativePath>
</parent>

Expand Down
12 changes: 10 additions & 2 deletions pom.xml
Expand Up @@ -7,7 +7,7 @@
<groupId>at.favre.lib</groupId>
<artifactId>bcrypt-parent</artifactId>
<packaging>pom</packaging>
<version>0.5.0</version>
<version>0.4.1</version>

<url>https://github.com/patrickfav/bcrypt</url>
<inceptionYear>2018</inceptionYear>
Expand All @@ -20,7 +20,6 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>

<repositories>
Expand All @@ -32,6 +31,15 @@
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>maven-central-repo</id>
<url>http://repo1.maven.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

<build>
<plugins>
Expand Down

0 comments on commit ad6783d

Please sign in to comment.