Skip to content

Commit 975cd47

Browse files
author
Nicolai Parlog
committed
Let build copy dependencies into "lib"
1 parent b12b4d4 commit 975cd47

33 files changed

+17
-1
lines changed

libs/gson-2.8.0.jar

-227 KB
Binary file not shown.

libs/jetty-client-9.4.6.v20170531.jar

262 KB
Binary file not shown.

libs/jetty-http-9.3.22.v20171030.jar

-147 KB
Binary file not shown.

libs/jetty-http-9.4.6.v20170531.jar

160 KB
Binary file not shown.

libs/jetty-io-9.3.22.v20171030.jar

-120 KB
Binary file not shown.

libs/jetty-io-9.4.6.v20170531.jar

126 KB
Binary file not shown.
-93.1 KB
Binary file not shown.
90.9 KB
Binary file not shown.
-508 KB
Binary file not shown.

libs/jetty-server-9.4.6.v20170531.jar

566 KB
Binary file not shown.
-116 KB
Binary file not shown.
108 KB
Binary file not shown.

libs/jetty-util-9.3.22.v20171030.jar

-446 KB
Binary file not shown.

libs/jetty-util-9.4.6.v20170531.jar

447 KB
Binary file not shown.
-110 KB
Binary file not shown.

libs/jetty-webapp-9.4.6.v20170531.jar

119 KB
Binary file not shown.

libs/jetty-xml-9.3.22.v20171030.jar

-50.5 KB
Binary file not shown.

libs/jetty-xml-9.4.6.v20170531.jar

49.2 KB
Binary file not shown.

libs/slf4j-api-1.7.13.jar

32.3 KB
Binary file not shown.

libs/slf4j-api-1.7.25.jar

-40.2 KB
Binary file not shown.

libs/slf4j-simple-1.7.25.jar

-14.9 KB
Binary file not shown.
-44.2 KB
Binary file not shown.
41 KB
Binary file not shown.
-35.2 KB
Binary file not shown.
34.5 KB
Binary file not shown.
-184 KB
Binary file not shown.
195 KB
Binary file not shown.
-37.1 KB
Binary file not shown.
34.1 KB
Binary file not shown.
-17.8 KB
Binary file not shown.
20.8 KB
Binary file not shown.

pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@
9696
<fileset>
9797
<directory>mods-mvn</directory>
9898
</fileset>
99+
<fileset>
100+
<directory>libs</directory>
101+
</fileset>
99102
</filesets>
100103
</configuration>
101104
</plugin>
@@ -116,6 +119,19 @@
116119
<artifactId>maven-dependency-plugin</artifactId>
117120
<version>3.0.2</version>
118121
<executions>
122+
<execution>
123+
<id>copy-dependencies</id>
124+
<phase>package</phase>
125+
<goals>
126+
<goal>copy-dependencies</goal>
127+
</goals>
128+
<configuration>
129+
<outputDirectory>../libs</outputDirectory>
130+
<overWriteReleases>false</overWriteReleases>
131+
<overWriteSnapshots>false</overWriteSnapshots>
132+
<overWriteIfNewer>true</overWriteIfNewer>
133+
</configuration>
134+
</execution>
119135
<execution>
120136
<id>copy-installed</id>
121137
<phase>install</phase>

run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ then
1717
$JAVA \
1818
--module-path mods-mvn \
1919
--class-path "libs/*" \
20-
--module monitor
20+
--module monitor/monitor.Main
2121
else
2222
# the classpath is needed for Spark's dependencies
2323
$JAVA \

0 commit comments

Comments
 (0)