You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2020/07/22 08:57:17 UTC

[syncope] branch master updated: Fixing SRA Docker image generation

This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/master by this push:
     new 4a3d7eb  Fixing SRA Docker image generation
4a3d7eb is described below

commit 4a3d7eb2a8a9379bdf0dad2c3676eb625460c828
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Wed Jul 22 10:57:01 2020 +0200

    Fixing SRA Docker image generation
---
 docker/sra/pom.xml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/docker/sra/pom.xml b/docker/sra/pom.xml
index b41c71f..6a80959 100644
--- a/docker/sra/pom.xml
+++ b/docker/sra/pom.xml
@@ -59,6 +59,25 @@ under the License.
   <build>
     <plugins>
       <plugin>
+        <groupId>org.springframework.boot</groupId>
+        <artifactId>spring-boot-maven-plugin</artifactId>
+        <configuration>
+          <mainClass>org.apache.syncope.sra.SyncopeSRAApplication</mainClass>
+          <layout>ZIP</layout>
+        </configuration>
+        <executions>
+          <execution>
+            <goals>
+              <goal>repackage</goal>
+            </goals>
+            <configuration>
+              <outputDirectory>${project.build.outputDirectory}</outputDirectory>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
         <groupId>io.fabric8</groupId>
         <artifactId>docker-maven-plugin</artifactId>
         <configuration>