Skip to content

Commit

Permalink
Merge pull request #32 from andrew890/main
Browse files Browse the repository at this point in the history
Fix up copy-dependencies to always copy dependencies to lib subdirect…
  • Loading branch information
andrew890 authored Sep 15, 2023
2 parents 14e681c + 540911f commit a6fdc04
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
3 changes: 2 additions & 1 deletion easysmf-rti/rti-http-binary/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>com.smfreports.sample.RtiHttpBinary</mainClass>
</manifest>
</archive>
Expand All @@ -103,7 +104,7 @@
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}</outputDirectory>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<includeScope>runtime</includeScope>
</configuration>
</execution>
Expand Down
3 changes: 2 additions & 1 deletion easysmf-rti/rti-http-json/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>com.smfreports.sample.RtiHttpJson</mainClass>
</manifest>
</archive>
Expand All @@ -113,7 +114,7 @@
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}</outputDirectory>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<includeScope>runtime</includeScope>
</configuration>
</execution>
Expand Down
3 changes: 2 additions & 1 deletion easysmf-rti/rti-notifications/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>com.smfreports.sample.RtiNotifications</mainClass>
</manifest>
</archive>
Expand All @@ -118,7 +119,7 @@
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}</outputDirectory>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<includeScope>runtime</includeScope>
</configuration>
</execution>
Expand Down
3 changes: 2 additions & 1 deletion easysmf-rti/rti-simple/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>com.smfreports.sample.RtiSimple</mainClass>
</manifest>
</archive>
Expand All @@ -108,7 +109,7 @@
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}</outputDirectory>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<includeScope>runtime</includeScope>
</configuration>
</execution>
Expand Down
2 changes: 1 addition & 1 deletion easysmf-skeleton/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>./lib</classpathPrefix>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>com.smfreports.sample.EasySmfSkeleton</mainClass>
</manifest>
</archive>
Expand Down
2 changes: 1 addition & 1 deletion smf-de-dup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>./lib</classpathPrefix>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>com.smfreports.SmfDeDup</mainClass>
</manifest>
</archive>
Expand Down
2 changes: 1 addition & 1 deletion smf-report-dups/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>./lib</classpathPrefix>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>com.smfreports.SmfReportDups</mainClass>
</manifest>
</archive>
Expand Down

0 comments on commit a6fdc04

Please sign in to comment.