You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.0 KiB
68 lines
2.0 KiB
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<groupId>com.fourelementscapital</groupId> |
|
<artifactId>iMonitorServer</artifactId> |
|
<version>2.0</version> |
|
<packaging>jar</packaging> |
|
<name>iMonitorServer</name> |
|
<url>http://www.fourelementscapital.com</url> |
|
<build> |
|
|
|
<plugins> |
|
<plugin> |
|
<artifactId>maven-shade-plugin</artifactId> |
|
<version>2.3</version> |
|
<executions> |
|
<execution> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>shade</goal> |
|
</goals> |
|
<configuration> |
|
<transformers> |
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> |
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
|
<mainClass>com.fourelementscapital.imonitor.App</mainClass> |
|
</transformer> |
|
</transformers> |
|
<createDependencyReducedPom>false</createDependencyReducedPom> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
|
|
<resources> |
|
<resource> |
|
<directory>${project.basedir}</directory> |
|
<targetPath>${project.build.directory}</targetPath> |
|
<includes> |
|
<include>ThemeEmails.xlsx</include> |
|
</includes> |
|
</resource> |
|
<resource> |
|
<directory>${project.basedir}/src/main/resources</directory> |
|
<targetPath>${project.build.directory}/classes</targetPath> |
|
<includes> |
|
<include>*.*</include> |
|
</includes> |
|
</resource> |
|
</resources> |
|
|
|
</build> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>3.8.1</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.fourelementscapital</groupId> |
|
<artifactId>lib-imonitor</artifactId> |
|
<version>2.0</version> |
|
</dependency> |
|
</dependencies> |
|
</project> |