215 lines
7.4 KiB
XML
215 lines
7.4 KiB
XML
<?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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>eu.univento</groupId>
|
|
<artifactId>Commons</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<name>univento.eu Common Code</name>
|
|
<inceptionYear>2016</inceptionYear>
|
|
<description>Das Commons Modul stellt alles zur Verfügung was von allen anderen Modulen benötigt wird, wie etwa Datenbank Zugriffe</description>
|
|
<url>https://development.univento.eu/docs/Commons</url>
|
|
|
|
<organization>
|
|
<name>univentoEU</name>
|
|
<url>https://univento.eu</url>
|
|
</organization>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>joethei</id>
|
|
<name>Johannes Theiner</name>
|
|
<email>joethei@univento.eu</email>
|
|
<url>https://joethei.de</url>
|
|
<organization>univentoEU</organization>
|
|
<roles>
|
|
<role>architect</role>
|
|
<role>developer</role>
|
|
</roles>
|
|
<timezone>Europe/Berlin</timezone>
|
|
<properties>
|
|
<picUrl>https://de.gravatar.com/userimage/65052389/84435a829d76e6b6c48d67cdd463c6ab.png?size=300</picUrl>
|
|
</properties>
|
|
</developer>
|
|
</developers>
|
|
|
|
<issueManagement>
|
|
<system>gitlab</system>
|
|
<url>http://development.univento.eu/issues/Commons</url>
|
|
</issueManagement>
|
|
|
|
<ciManagement>
|
|
<system>gitlab</system>
|
|
<url>https://development.univento.eu/ci/Commons</url>
|
|
</ciManagement>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>univentoEU</id>
|
|
<url>http://play.univento.eu:8081/repository/univento/</url>
|
|
</repository>
|
|
<!--
|
|
<site>
|
|
<id>univento.commons</id>
|
|
<name>univento Commons</name>
|
|
<url>sftp://development.univento.eu/doc/Commons</url>
|
|
</site>
|
|
-->
|
|
</distributionManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<!--
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
<version>3.6</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.enforcer</groupId>
|
|
<artifactId>enforcer</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>validate</phase>
|
|
<goals>
|
|
<goal>enforce</goal>
|
|
</goals>
|
|
<configuration>
|
|
<rules>
|
|
<requireNoRepositories/>
|
|
</rules>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
-->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>2.2.1</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>eu.univento.commons.Commons</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>make-assembly</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.14.8</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.vertx</groupId>
|
|
<artifactId>vertx-core</artifactId>
|
|
<version>3.4.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.vertx</groupId>
|
|
<artifactId>vertx-redis-client</artifactId>
|
|
<version>3.4.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.vertx</groupId>
|
|
<artifactId>vertx-mysql-postgresql-client</artifactId>
|
|
<version>3.4.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.vertx</groupId>
|
|
<artifactId>vertx-mongo-client</artifactId>
|
|
<version>3.4.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.vertx</groupId>
|
|
<artifactId>vertx-rabbitmq-client</artifactId>
|
|
<version>3.4.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.3.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
<artifactId>json-simple</artifactId>
|
|
<version>1.1.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>19.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>joda-time</groupId>
|
|
<artifactId>joda-time</artifactId>
|
|
<version>2.9.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.TheHolyWaffle</groupId>
|
|
<artifactId>TeamSpeak-3-Java-API</artifactId>
|
|
<version>v1.0.13</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-api</artifactId>
|
|
<version>2.6.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-core</artifactId>
|
|
<version>2.6.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.nsp</groupId>
|
|
<artifactId>JSkills</artifactId>
|
|
<version>master-0.9.0-g8b333ec-15</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.gitlab</groupId>
|
|
<artifactId>java-gitlab-api</artifactId>
|
|
<version>1.2.7</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |