mirror of https://github.com/shred/acme4j
200 lines
7.3 KiB
XML
200 lines
7.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
*
|
|
* acme4j - ACME Java client
|
|
*
|
|
* Copyright (C) 2015 Richard "Shred" Körber
|
|
* http://acme4j.shredzone.org
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
*
|
|
-->
|
|
<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>
|
|
|
|
<groupId>org.shredzone.acme4j</groupId>
|
|
<artifactId>acme4j</artifactId>
|
|
<version>0.4-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>acme4j</name>
|
|
<description>ACME client for Java</description>
|
|
<url>http://acme4j.shredzone.org</url>
|
|
<inceptionYear>2015</inceptionYear>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>Apache License Version 2.0</name>
|
|
<url>LICENSE-APL.txt</url>
|
|
</license>
|
|
</licenses>
|
|
<scm>
|
|
<url>https://github.com/shred/acme4j/</url>
|
|
<connection>scm:git:git@github.com:shred/acme4j.git</connection>
|
|
<developerConnection>scm:git:git@github.com:shred/acme4j.git</developerConnection>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>https://github.com/shred/acme4j/issues</url>
|
|
</issueManagement>
|
|
<developers>
|
|
<developer>
|
|
<id>shred</id>
|
|
<name>Richard Körber</name>
|
|
</developer>
|
|
</developers>
|
|
|
|
<properties>
|
|
<bouncycastle.version>1.54</bouncycastle.version>
|
|
<jose4j.version>0.5.0</jose4j.version>
|
|
<slf4j.version>1.7.18</slf4j.version>
|
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>acme4j-client</module>
|
|
<module>acme4j-utils</module>
|
|
<module>acme4j-example</module>
|
|
</modules>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.1</version>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.19</version>
|
|
<configuration>
|
|
<parallel>classes</parallel>
|
|
<threadCount>10</threadCount>
|
|
<excludedGroups>java.net.HttpURLConnection</excludedGroups>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.4</version>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>**/.gitignore</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
<version>3.4</version>
|
|
<configuration>
|
|
<outputEncoding>UTF-8</outputEncoding>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven.doxia</groupId>
|
|
<artifactId>doxia-module-markdown</artifactId>
|
|
<version>1.6</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>2.5</version>
|
|
<configuration>
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
|
<tagNameFormat>v@{project.version}</tagNameFormat>
|
|
<pushChanges>false</pushChanges>
|
|
<localCheckout>true</localCheckout>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
<version>2.7</version>
|
|
<reportSets>
|
|
<reportSet>
|
|
<reports>
|
|
<report>dependencies</report>
|
|
<report>issue-tracking</report>
|
|
<report>license</report>
|
|
<report>summary</report>
|
|
<report>project-team</report>
|
|
<report>scm</report>
|
|
</reports>
|
|
</reportSet>
|
|
</reportSets>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
|
<version>2.19</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.9.1</version>
|
|
<configuration>
|
|
<links>
|
|
<link>http://docs.oracle.com/javase/7/docs/api/</link>
|
|
<link>http://docs.oracle.com/javaee/7/api/</link>
|
|
<link>https://www.bouncycastle.org/docs/docs1.5on/</link>
|
|
<link>https://www.bouncycastle.org/docs/pkixdocs1.5on/</link>
|
|
</links>
|
|
<charset>UTF-8</charset>
|
|
<linksource>true</linksource>
|
|
<additionalparam>-Xdoclint:syntax,reference</additionalparam>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>[4.7,)</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hamcrest</groupId>
|
|
<artifactId>hamcrest-library</artifactId>
|
|
<version>[1.3,)</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.jcabi</groupId>
|
|
<artifactId>jcabi-matchers</artifactId>
|
|
<version>[1.3,)</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>uk.co.datumedge</groupId>
|
|
<artifactId>hamcrest-json</artifactId>
|
|
<version>[0.1,)</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<version>[1.9.5,)</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|