zutil/pom.xml

255 lines
8.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>
<version>1.0.${build.number}</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-27 17:28:51 +02:00
<url>https://github.com/Ziver/zutil</url>
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>
<build.number>0-SNAPSHOT</build.number>
<build.development>true</build.development>
2017-10-06 16:37:36 +02:00
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
2021-08-22 15:49:14 +02:00
<dependency>
<groupId>org.dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>2.1.3</version>
</dependency>
2017-10-06 16:37:36 +02:00
<dependency>
2021-08-22 16:04:53 +02:00
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.8.11.2</version>
2017-10-06 16:37:36 +02:00
</dependency>
<dependency>
2021-08-22 16:04:53 +02:00
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.28</version>
2021-08-22 15:49:14 +02:00
<scope>provided</scope>
2017-10-06 16:37:36 +02:00
</dependency>
2021-08-22 16:04:53 +02:00
2017-10-06 16:37:36 +02:00
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
2019-11-22 20:20:25 +01:00
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>11</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>11</version>
<scope>provided</scope>
</dependency>
2017-10-06 16:37:36 +02:00
2021-08-22 15:49:14 +02:00
<dependency>
<groupId>org.shredzone.acme4j</groupId>
<artifactId>acme4j-client</artifactId>
<version>2.12</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.shredzone.acme4j</groupId>
<artifactId>acme4j-utils</artifactId>
<version>2.12</version>
<scope>provided</scope>
</dependency>
2017-10-06 16:37:36 +02:00
<dependency>
2021-08-22 16:04:53 +02:00
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.5</version>
2021-08-22 15:49:14 +02:00
<scope>provided</scope>
2017-10-06 16:37:36 +02:00
</dependency>
<dependency>
2021-08-22 16:04:53 +02:00
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.7</version>
2021-08-22 15:49:14 +02:00
<scope>provided</scope>
2017-10-06 16:37:36 +02:00
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
2017-10-06 16:37:36 +02:00
<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>3.1.1</version>
2017-10-26 17:47:32 +02:00
<configuration> <!-- TODO: Temporary until javadoc issues are solved -->
<doclint>none</doclint>
<source>8</source>
2017-10-26 17:47:32 +02:00
</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>
2024-09-10 00:39:18 +02:00
<version>3.2.4</version>
<configuration>
<skip>${build.development}</skip>
</configuration>
2017-10-11 14:51:33 +02:00
<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>
2020-02-12 13:32:13 +01:00
<configuration>
<serverId>sonatype-nexus-snapshot</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
2020-02-12 13:32:13 +01:00
</configuration>
</plugin>
<plugin>
<artifactId>maven-scm-plugin</artifactId>
<version>1.9.5</version>
<configuration>
<tag>${project.artifactId}-${project.version}</tag>
<connectionType>developerConnection</connectionType>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
2020-02-14 15:45:09 +01:00
<configuration>
<flattenMode>ossrh</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>package</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</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>