Skip to content

Commit

Permalink
patch 0.1.1-beta: fix parent pom deploy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
John Sissler committed Dec 10, 2018
1 parent 7e3c64d commit 621b5d3
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 6 deletions.
4 changes: 2 additions & 2 deletions loansum-pricer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.syndloanhub.loansum</groupId>
<artifactId>loansum-parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.1.1-beta</version>
</parent>

<artifactId>loansum-pricer</artifactId>
Expand All @@ -21,7 +21,7 @@
<dependency>
<groupId>com.syndloanhub.loansum</groupId>
<artifactId>loansum-product</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.1.1-beta</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion loansum-product/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.syndloanhub.loansum</groupId>
<artifactId>loansum-parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.1.1-beta</version>
</parent>

<artifactId>loansum-product</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions loansum-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.syndloanhub.loansum</groupId>
<artifactId>loansum-parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.1.1-beta</version>
</parent>

<artifactId>loansum-service</artifactId>
Expand Down Expand Up @@ -37,7 +37,7 @@
<dependency>
<groupId>com.syndloanhub.loansum</groupId>
<artifactId>loansum-pricer</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.1.1-beta</version>
</dependency>
</dependencies>

Expand Down
20 changes: 19 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.syndloanhub.loansum</groupId>
<artifactId>loansum-parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.1.1-beta</version>
<packaging>pom</packaging>
<name>LoanSUM-Parent</name>

Expand Down Expand Up @@ -75,6 +75,14 @@
<goal>jar-no-fork</goal>
</goals>
</execution>
<execution>
<id>aggregate-source</id>
<inherited>false</inherited>
<phase>package</phase>
<goals>
<goal>aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
Expand All @@ -91,6 +99,14 @@
<goal>jar</goal>
</goals>
</execution>
<execution>
<id>aggregate-javadocs</id>
<inherited>false</inherited>
<phase>package</phase>
<goals>
<goal>aggregate-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
Expand Down Expand Up @@ -178,4 +194,6 @@
<version>1.2.3</version>
</dependency>
</dependencies>
<url>http://loansum.org</url>
<description>Open source syndicated loan software</description>
</project>

0 comments on commit 621b5d3

Please sign in to comment.