zutil/pom.xml

196 lines
6.7 KiB
XML
Raw Normal View History

2017-10-06 16:37:36 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<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>
2017-10-12 16:34:22 +02:00
<groupId>se.koc</groupId>
2017-10-06 16:37:36 +02:00
<artifactId>zutil</artifactId>
2017-10-27 17:20:38 +02:00
<version>1.0.1</version>
2017-10-11 14:51:33 +02:00
<packaging>jar</packaging>
2017-10-06 16:37:36 +02:00
<name>Zutil</name>
2017-10-21 19:27:52 +02:00
<description>A library containing utility classes and code snippets</description>
2017-10-11 14:51:33 +02:00
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Ziver Koc</name>
2017-10-21 19:47:17 +02:00
<email>dev@koc.se</email>
2017-10-11 14:51:33 +02:00
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/Ziver/zutil.git</connection>
2017-10-26 17:17:49 +02:00
<developerConnection>scm:git:https://repo.koc.se/zutil-java.git</developerConnection>
2017-10-11 14:51:33 +02:00
<url>https://github.com/Ziver/zutil</url>
</scm>
2017-10-06 16:37:36 +02:00
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2017-10-26 17:45:44 +02:00
<project.scm.id>koc.se</project.scm.id>
2017-10-06 16:37:36 +02:00
</properties>
<dependencies>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.36</version>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.8.11.2</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>com.carrotsearch</groupId>
<artifactId>junit-benchmarks</artifactId>
<version>0.7.2</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<resources>
<resource>
<directory>src</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
2017-10-26 17:17:49 +02:00
<!-- Plugins needed for deployment -->
2017-10-11 14:51:33 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
2017-10-26 17:47:32 +02:00
<configuration> <!-- TODO: Temporary until javadoc issues are solved -->
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
2017-10-11 14:51:33 +02:00
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
2017-10-21 19:27:52 +02:00
<serverId>sonatype-nexus-snapshot</serverId>
2017-10-11 14:51:33 +02:00
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
2017-10-27 16:36:03 +02:00
<plugin>
<artifactId>maven-scm-plugin</artifactId>
2017-10-27 16:47:50 +02:00
<version>1.9.5</version>
2017-10-27 16:36:03 +02:00
<configuration>
<tag>${project.version}</tag>
2017-10-27 16:47:50 +02:00
<connectionType>developerConnection</connectionType>
2017-10-27 16:36:03 +02:00
</configuration>
</plugin>
2017-10-06 16:37:36 +02:00
</plugins>
</build>
2017-10-11 14:51:33 +02:00
<distributionManagement>
<snapshotRepository>
2017-10-21 19:27:52 +02:00
<id>sonatype-nexus-snapshot</id>
2017-10-11 14:51:33 +02:00
<name>Sonatype Nexus Snapshots</name>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
2017-10-21 19:27:52 +02:00
<id>sonatype-nexus-release</id>
2017-10-11 14:51:33 +02:00
<name>Nexus Release Repository</name>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
2017-10-06 16:37:36 +02:00
</project>