Skip to content

Commit b96d6b3

Browse files
authored
Merge pull request #4 from SEPIA-Framework/dev
updated pom
2 parents d6c53c7 + ea8cd56 commit b96d6b3

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
@@ -26,9 +26,8 @@
2626
<goal>copy-dependencies</goal>
2727
</goals>
2828
<configuration>
29-
<outputDirectory>
30-
${project.build.directory}/libs
31-
</outputDirectory>
29+
<outputDirectory>${project.build.directory}/release/libs</outputDirectory>
30+
<includeScope>runtime</includeScope>
3231
</configuration>
3332
</execution>
3433
</executions>
@@ -47,9 +46,32 @@
4746
</mainClass>
4847
</manifest>
4948
</archive>
49+
<outputDirectory>${project.build.directory}/release</outputDirectory>
5050
<finalName>sepia-teach-v${project.version}</finalName>
5151
</configuration>
5252
</plugin>
53+
<plugin>
54+
<artifactId>maven-resources-plugin</artifactId>
55+
<version>3.1.0</version>
56+
<executions>
57+
<execution>
58+
<id>copy-resources-1</id>
59+
<phase>package</phase>
60+
<goals>
61+
<goal>copy-resources</goal>
62+
</goals>
63+
<configuration>
64+
<outputDirectory>${project.build.directory}/release/Xtensions</outputDirectory>
65+
<resources>
66+
<resource>
67+
<directory>Xtensions</directory>
68+
<!--<filtering>true</filtering>-->
69+
</resource>
70+
</resources>
71+
</configuration>
72+
</execution>
73+
</executions>
74+
</plugin>
5375
</plugins>
5476
</build>
5577

@@ -59,6 +81,13 @@
5981
<artifactId>sepia-core-tools</artifactId>
6082
<version>2.0.1</version>
6183
</dependency>
84+
85+
<dependency>
86+
<groupId>junit</groupId>
87+
<artifactId>junit</artifactId>
88+
<version>4.12</version>
89+
<scope>test</scope>
90+
</dependency>
6291
</dependencies>
6392

6493
</project>

0 commit comments

Comments
 (0)