JPushover11/pom.xml

215 lines
6.0 KiB
XML
Raw Normal View History

2018-01-24 17:00:42 +01: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">
2015-01-07 13:16:55 +01:00
<modelVersion>4.0.0</modelVersion>
<groupId>de.svenkubiak</groupId>
<artifactId>jpushover</artifactId>
<version>2.0.3-SNAPSHOT</version>
2015-01-07 13:16:55 +01:00
<packaging>jar</packaging>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
2015-02-13 08:09:58 +01:00
<distribution>repo</distribution>
2015-01-07 13:16:55 +01:00
</license>
</licenses>
<developers>
<developer>
<name>Sven Kubiak</name>
<email>sk@svenkubiak.de</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2017-12-21 13:00:20 +01:00
<log4j.version>2.10.0</log4j.version>
2018-01-24 17:01:29 +01:00
<httpcomponents.version>4.5.5</httpcomponents.version>
2015-01-07 13:16:55 +01:00
</properties>
<scm>
<connection>scm:git:git@github.com:svenkubiak/JPushover.git</connection>
<developerConnection>scm:git:git@github.com:svenkubiak/JPushover.git</developerConnection>
<url>git@github.com:svenkubiak/JPushover.git</url>
<tag>HEAD</tag>
2015-11-29 10:35:32 +01:00
</scm>
2015-01-07 13:16:55 +01:00
<name>JPushover</name>
2015-01-08 08:19:45 +01:00
<description>Convenient class for sending messages to Pushover in Java project</description>
2015-01-07 20:43:03 +01:00
<url>https://github.com/svenkubiak/JPushover</url>
2017-07-10 11:43:11 +02:00
<prerequisites>
<maven>3.0</maven>
</prerequisites>
2015-01-07 13:16:55 +01:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2017-09-12 17:16:04 +02:00
<version>3.7.0</version>
2015-01-07 13:16:55 +01:00
<configuration>
2015-02-13 14:59:43 +01:00
<source>1.8</source>
<target>1.8</target>
2015-01-07 13:16:55 +01:00
<debug>false</debug>
<optimize>true</optimize>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
2017-05-02 16:10:38 +02:00
<version>3.0.1</version>
2015-01-07 13:16:55 +01:00
<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>
2017-09-12 17:16:04 +02:00
<version>3.0.0-M1</version>
2015-01-07 13:16:55 +01:00
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
2015-01-21 08:20:28 +01:00
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sonar-maven-plugin</artifactId>
2017-05-02 16:10:38 +02:00
<version>3.3.0.603</version>
2015-01-21 08:20:28 +01:00
</plugin>
2015-01-07 13:16:55 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
2016-03-08 15:10:26 +01:00
<version>2.5.3</version>
2015-01-07 13:16:55 +01:00
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<goals>deploy</goals>
</configuration>
</plugin>
2015-11-29 10:35:32 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
2015-01-07 13:16:55 +01:00
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
2017-07-10 11:43:11 +02:00
<version>2.4</version>
2015-01-07 13:16:55 +01:00
</plugin>
2015-11-29 10:35:32 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
2017-05-02 16:10:38 +02:00
<version>2.20</version>
2015-11-29 10:35:32 +01:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
2017-05-02 16:10:38 +02:00
<version>3.0.2</version>
2015-11-29 10:35:32 +01:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
2017-05-02 16:10:38 +02:00
<version>3.6</version>
2015-11-29 10:35:32 +01:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
2017-05-02 16:10:38 +02:00
<version>3.0.2</version>
2015-11-29 10:35:32 +01:00
</plugin>
2015-01-07 13:16:55 +01:00
</plugins>
</build>
<dependencies>
2018-01-24 17:00:42 +01:00
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>${httpcomponents.version}</version>
</dependency>
2015-01-07 13:16:55 +01:00
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
2017-10-26 08:33:42 +02:00
<version>2.6</version>
2015-01-07 13:16:55 +01:00
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>fluent-hc</artifactId>
2018-01-24 17:00:42 +01:00
<version>${httpcomponents.version}</version>
2015-01-07 13:16:55 +01:00
</dependency>
2015-01-09 08:22:35 +01:00
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
2017-11-13 13:15:50 +01:00
<version>3.7</version>
2015-01-09 08:22:35 +01:00
</dependency>
2015-01-07 13:16:55 +01:00
<dependency>
2015-11-29 10:35:32 +01:00
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
2015-01-07 13:16:55 +01:00
</dependency>
<dependency>
2015-11-29 10:35:32 +01:00
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j.version}</version>
2015-01-07 13:16:55 +01:00
</dependency>
2015-01-26 11:52:50 +01:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
2015-01-07 13:16:55 +01:00
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
2015-01-21 08:20:28 +01:00
<version>1.6</version>
2015-01-07 13:16:55 +01:00
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>