strolch/li.strolch.agent/pom.xml

85 lines
2.4 KiB
XML
Raw Normal View History

2013-10-23 19:59:07 +02:00
<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>
<parent>
<groupId>li.strolch</groupId>
<artifactId>li.strolch.parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
2013-10-23 19:59:07 +02:00
<relativePath>../li.strolch.parent/pom.xml</relativePath>
</parent>
<artifactId>li.strolch.agent</artifactId>
2013-10-23 19:59:07 +02:00
<name>li.strolch.agent</name>
<description>Strolch Agent which is the runtime for Strolch</description>
2013-10-23 19:59:07 +02:00
2014-03-14 14:36:23 +01:00
<url>https://github.com/eitchnet/li.strolch.agent</url>
2013-10-23 19:59:07 +02:00
<inceptionYear>2011</inceptionYear>
<issueManagement>
<system>Github Issues</system>
2014-03-14 14:36:23 +01:00
<url>https://github.com/eitchnet/li.strolch.agent/issues</url>
2013-10-23 19:59:07 +02:00
</issueManagement>
<scm>
<connection>scm:git:https://github.com/eitchnet/strolch.git</connection>
<developerConnection>scm:git:git@github.com:eitch/strolch.git</developerConnection>
<url>https://github.com/eitchnet/strolch</url>
2013-10-23 19:59:07 +02:00
</scm>
<dependencies>
<!-- main -->
2013-10-23 19:59:07 +02:00
<dependency>
<groupId>li.strolch</groupId>
<artifactId>li.strolch.model</artifactId>
</dependency>
<dependency>
<groupId>ch.eitchnet</groupId>
<artifactId>ch.eitchnet.privilege</artifactId>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</dependency>
2013-10-23 19:59:07 +02:00
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>**/agentVersion.properties</include>
</includes>
</resource>
</resources>
2013-10-23 19:59:07 +02:00
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
</plugin>
2013-10-23 19:59:07 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>