aboutsummaryrefslogtreecommitdiffstats
path: root/packages/docker/pom.xml
diff options
context:
space:
mode:
authorwaqas.ikram <waqas.ikram@est.tech>2021-02-08 13:10:13 +0000
committerwaqas.ikram <waqas.ikram@est.tech>2021-02-08 13:10:16 +0000
commit40fc9d52b0ca2eaba6d1e30f846797e301dc885b (patch)
tree6c7c1cfc16247ed1f24e453e1454da57a2712c32 /packages/docker/pom.xml
parent666b56c9241c37b22f631fb88f4a40aedefa2eac (diff)
Changing docker module packaging to JAR
Change-Id: If614d09dbc54b6f3c38c3f6acc3257f751adf87d Issue-ID: SO-3473 Signed-off-by: waqas.ikram <waqas.ikram@est.tech>
Diffstat (limited to 'packages/docker/pom.xml')
-rw-r--r--packages/docker/pom.xml7
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/docker/pom.xml b/packages/docker/pom.xml
index abf2c8a634..1f26238864 100644
--- a/packages/docker/pom.xml
+++ b/packages/docker/pom.xml
@@ -9,7 +9,7 @@
<version>1.7.1-SNAPSHOT</version>
</parent>
- <packaging>pom</packaging>
+ <packaging>jar</packaging>
<artifactId>docker</artifactId>
<name>Docker Images</name>
<description>Docker Images</description>
@@ -29,6 +29,11 @@
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
+ <resources>
+ <resource>
+ <directory>src/main/docker</directory>
+ </resource>
+ </resources>
<plugins>
<plugin>
<groupId>org.codehaus.groovy.maven</groupId>