Skip to content

Commit

Permalink
added new profile
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Jun 2, 2020
1 parent 92492f1 commit 5735f5a
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,41 @@
</plugins>
</build>
</profile>

<profile>
<id>docker-hub-latest</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>install</phase>
<configuration>
<target>
<exec executable="docker">
<arg value="build" />
<arg value="-t" />
<arg value="imixs/imixs-admin:latest" />
<arg value="." />
</exec>
<exec executable="docker">
<arg value="push" />
<arg value="imixs/imixs-admin:latest" />
</exec>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>

<!-- wildfly profile (development - unpacking war) -->
<profile>
Expand Down
Binary file modified src/docker/apps/imixs-admin.war
Binary file not shown.

0 comments on commit 5735f5a

Please sign in to comment.