Skip to content

Commit 3e9f593

Browse files
committed
updated pom
1 parent 7cbfa84 commit 3e9f593

File tree

1 file changed

+32
-3
lines changed

1 file changed

+32
-3
lines changed

pom.xml

Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@
2727
<goal>copy-dependencies</goal>
2828
</goals>
2929
<configuration>
30-
<outputDirectory>
31-
${project.build.directory}/libs
32-
</outputDirectory>
30+
<outputDirectory>${project.build.directory}/release/libs</outputDirectory>
31+
<includeScope>runtime</includeScope>
3332
</configuration>
3433
</execution>
3534
</executions>
@@ -48,9 +47,32 @@
4847
</mainClass>
4948
</manifest>
5049
</archive>
50+
<outputDirectory>${project.build.directory}/release</outputDirectory>
5151
<finalName>sepia-chat-v${project.version}</finalName>
5252
</configuration>
5353
</plugin>
54+
<plugin>
55+
<artifactId>maven-resources-plugin</artifactId>
56+
<version>3.1.0</version>
57+
<executions>
58+
<execution>
59+
<id>copy-resources-1</id>
60+
<phase>package</phase>
61+
<goals>
62+
<goal>copy-resources</goal>
63+
</goals>
64+
<configuration>
65+
<outputDirectory>${project.build.directory}/release/Xtensions</outputDirectory>
66+
<resources>
67+
<resource>
68+
<directory>Xtensions</directory>
69+
<!--<filtering>true</filtering>-->
70+
</resource>
71+
</resources>
72+
</configuration>
73+
</execution>
74+
</executions>
75+
</plugin>
5476
</plugins>
5577
</build>
5678

@@ -65,5 +87,12 @@
6587
<artifactId>j2html</artifactId>
6688
<version>0.88</version>
6789
</dependency>
90+
91+
<dependency>
92+
<groupId>junit</groupId>
93+
<artifactId>junit</artifactId>
94+
<version>4.12</version>
95+
<scope>test</scope>
96+
</dependency>
6897
</dependencies>
6998
</project>

0 commit comments

Comments
 (0)