|
@@ -3,7 +3,7 @@
|
|
<parent>
|
|
<parent>
|
|
<groupId>org.pwm-project</groupId>
|
|
<groupId>org.pwm-project</groupId>
|
|
<artifactId>pwm-parent</artifactId>
|
|
<artifactId>pwm-parent</artifactId>
|
|
- <version>2.0.0-SNAPSHOT</version>
|
|
|
|
|
|
+ <version>2.1.0-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
</parent>
|
|
|
|
|
|
@@ -84,6 +84,28 @@
|
|
</execution>
|
|
</execution>
|
|
</executions>
|
|
</executions>
|
|
</plugin>
|
|
</plugin>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.codehaus.mojo</groupId>
|
|
|
|
+ <artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
+ <version>3.2.0</version>
|
|
|
|
+ <executions>
|
|
|
|
+ <execution>
|
|
|
|
+ <id>attach-artifacts</id>
|
|
|
|
+ <phase>package</phase>
|
|
|
|
+ <goals>
|
|
|
|
+ <goal>attach-artifact</goal>
|
|
|
|
+ </goals>
|
|
|
|
+ <configuration>
|
|
|
|
+ <artifacts>
|
|
|
|
+ <artifact>
|
|
|
|
+ <file>${project.build.directory}/pwm-docker-image-${project.version}.tar</file>
|
|
|
|
+ <type>tar</type>
|
|
|
|
+ </artifact>
|
|
|
|
+ </artifacts>
|
|
|
|
+ </configuration>
|
|
|
|
+ </execution>
|
|
|
|
+ </executions>
|
|
|
|
+ </plugin>
|
|
</plugins>
|
|
</plugins>
|
|
</build>
|
|
</build>
|
|
|
|
|