mirror of https://github.com/shred/acme4j
Update dependencies
parent
976056b6e7
commit
431a5cf313
|
@ -38,6 +38,6 @@
|
||||||
<skin>
|
<skin>
|
||||||
<groupId>org.apache.maven.skins</groupId>
|
<groupId>org.apache.maven.skins</groupId>
|
||||||
<artifactId>maven-fluido-skin</artifactId>
|
<artifactId>maven-fluido-skin</artifactId>
|
||||||
<version>1.6</version>
|
<version>1.7</version>
|
||||||
</skin>
|
</skin>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -55,8 +55,8 @@ public class SessionProviderTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that connecting to an acme URI will return an {@link AcmeClient} via
|
* Test that connecting to an acme URI will return an {@link AcmeProvider}, and that
|
||||||
* the correct {@link AcmeProvider}, and that the result is cached.
|
* the result is cached.
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void testConnectURI() throws Exception {
|
public void testConnectURI() throws Exception {
|
||||||
|
|
|
@ -41,6 +41,7 @@ import org.jose4j.jwk.PublicJsonWebKey;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.shredzone.acme4j.exception.AcmeProtocolException;
|
import org.shredzone.acme4j.exception.AcmeProtocolException;
|
||||||
|
import org.shredzone.acme4j.toolbox.AcmeUtils.PemLabel;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unit tests for {@link AcmeUtils}.
|
* Unit tests for {@link AcmeUtils}.
|
||||||
|
@ -259,7 +260,7 @@ public class AcmeUtilsTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that {@link AcmeUtils#writeToPem(byte[], String, Writer)} writes a correct PEM
|
* Test that {@link AcmeUtils#writeToPem(byte[], PemLabel, Writer)} writes a correct PEM
|
||||||
* file.
|
* file.
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>exec-maven-plugin</artifactId>
|
<artifactId>exec-maven-plugin</artifactId>
|
||||||
<version>1.5.0</version>
|
<version>1.6.0</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<goals>
|
<goals>
|
||||||
|
|
|
@ -37,6 +37,6 @@
|
||||||
<skin>
|
<skin>
|
||||||
<groupId>org.apache.maven.skins</groupId>
|
<groupId>org.apache.maven.skins</groupId>
|
||||||
<artifactId>maven-fluido-skin</artifactId>
|
<artifactId>maven-fluido-skin</artifactId>
|
||||||
<version>1.6</version>
|
<version>1.7</version>
|
||||||
</skin>
|
</skin>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -37,6 +37,6 @@
|
||||||
<skin>
|
<skin>
|
||||||
<groupId>org.apache.maven.skins</groupId>
|
<groupId>org.apache.maven.skins</groupId>
|
||||||
<artifactId>maven-fluido-skin</artifactId>
|
<artifactId>maven-fluido-skin</artifactId>
|
||||||
<version>1.6</version>
|
<version>1.7</version>
|
||||||
</skin>
|
</skin>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -38,6 +38,6 @@
|
||||||
<skin>
|
<skin>
|
||||||
<groupId>org.apache.maven.skins</groupId>
|
<groupId>org.apache.maven.skins</groupId>
|
||||||
<artifactId>maven-fluido-skin</artifactId>
|
<artifactId>maven-fluido-skin</artifactId>
|
||||||
<version>1.6</version>
|
<version>1.7</version>
|
||||||
</skin>
|
</skin>
|
||||||
</project>
|
</project>
|
||||||
|
|
29
pom.xml
29
pom.xml
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
<name>acme4j</name>
|
<name>acme4j</name>
|
||||||
<description>ACME client for Java</description>
|
<description>ACME client for Java</description>
|
||||||
<url>http://acme4j.shredzone.org</url>
|
<url>https://acme4j.shredzone.org</url>
|
||||||
<inceptionYear>2015</inceptionYear>
|
<inceptionYear>2015</inceptionYear>
|
||||||
|
|
||||||
<licenses>
|
<licenses>
|
||||||
|
@ -51,10 +51,10 @@
|
||||||
</developers>
|
</developers>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<bouncycastle.version>1.57</bouncycastle.version>
|
<bouncycastle.version>1.59</bouncycastle.version>
|
||||||
<dnsjava.version>2.1.7</dnsjava.version>
|
<dnsjava.version>2.1.8</dnsjava.version>
|
||||||
<httpclient.version>4.5.3</httpclient.version>
|
<httpclient.version>4.5.5</httpclient.version>
|
||||||
<jose4j.version>0.6.0</jose4j.version>
|
<jose4j.version>0.6.3</jose4j.version>
|
||||||
<nanohttpd.version>2.3.1</nanohttpd.version>
|
<nanohttpd.version>2.3.1</nanohttpd.version>
|
||||||
<slf4j.version>1.7.25</slf4j.version>
|
<slf4j.version>1.7.25</slf4j.version>
|
||||||
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
||||||
|
@ -73,7 +73,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<version>3.6.0</version>
|
<version>3.7.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>1.8</source>
|
<source>1.8</source>
|
||||||
<target>1.8</target>
|
<target>1.8</target>
|
||||||
|
@ -115,7 +115,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-site-plugin</artifactId>
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
<version>3.6</version>
|
<version>3.7</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<outputEncoding>UTF-8</outputEncoding>
|
<outputEncoding>UTF-8</outputEncoding>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
@ -123,7 +123,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.maven.doxia</groupId>
|
<groupId>org.apache.maven.doxia</groupId>
|
||||||
<artifactId>doxia-module-markdown</artifactId>
|
<artifactId>doxia-module-markdown</artifactId>
|
||||||
<version>1.7</version>
|
<version>1.8</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
@ -175,22 +175,17 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||||
<version>2.19.1</version>
|
<version>2.20.1</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
<version>2.10.4</version>
|
<version>3.0.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<links>
|
|
||||||
<link>http://docs.oracle.com/javase/8/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>
|
<charset>UTF-8</charset>
|
||||||
|
<detectLinks>true</detectLinks>
|
||||||
|
<doclint>syntax,reference</doclint>
|
||||||
<linksource>true</linksource>
|
<linksource>true</linksource>
|
||||||
<additionalparam>-Xdoclint:syntax,reference</additionalparam>
|
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
|
|
|
@ -57,7 +57,7 @@
|
||||||
<skin>
|
<skin>
|
||||||
<groupId>org.apache.maven.skins</groupId>
|
<groupId>org.apache.maven.skins</groupId>
|
||||||
<artifactId>maven-fluido-skin</artifactId>
|
<artifactId>maven-fluido-skin</artifactId>
|
||||||
<version>1.6</version>
|
<version>1.7</version>
|
||||||
</skin>
|
</skin>
|
||||||
|
|
||||||
<custom>
|
<custom>
|
||||||
|
|
Loading…
Reference in New Issue