strolch/pom.xml

73 lines
2.3 KiB
XML
Raw Normal View History

<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ch.eitchnet</groupId>
<artifactId>ch.eitchnet.parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../ch.eitchnet.parent/pom.xml</relativePath>
</parent>
<artifactId>ch.eitchnet.utils</artifactId>
<packaging>jar</packaging>
<name>ch.eitchnet.utils</name>
<description>These utils contain project independent helper classes and utilities for reuse</description>
2014-03-14 14:36:12 +01:00
<url>https://github.com/eitchnet/ch.eitchnet.utils</url>
<inceptionYear>2011</inceptionYear>
<issueManagement>
<system>Github Issues</system>
2014-03-14 14:36:12 +01:00
<url>https://github.com/eitchnet/ch.eitchnet.utils/issues</url>
</issueManagement>
<scm>
2014-03-14 14:36:12 +01:00
<connection>scm:git:https://github.com/eitchnet/ch.eitchnet.utils.git</connection>
<developerConnection>scm:git:git@github.com:eitchnet/ch.eitchnet.utils.git</developerConnection>
<url>https://github.com/eitchnet/ch.eitchnet.utils</url>
<tag>HEAD</tag>
</scm>
<dependencies>
2014-08-15 14:53:38 +02:00
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<plugins>
<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>
2014-08-15 14:53:38 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2014-08-15 14:53:38 +02:00
<artifactId>maven-javadoc-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>
2014-08-15 14:53:38 +02:00
</plugin>
<plugin>
<!-- explicitly define maven-deploy-plugin after other to force exec order -->
<groupId>org.apache.maven.plugins</groupId>
2014-08-15 14:53:38 +02:00
<artifactId>maven-deploy-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>