Last active
August 29, 2015 14:15
-
-
Save j-mueller/e1fcb8258355fca92a65 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23c23 | |
< <version>7</version> | |
--- | |
> <version>9</version> | |
29c29 | |
< <version>3.9.0.Final</version> | |
--- | |
> <version>3.9.4.Final</version> | |
73a74,82 | |
> <dependency> | |
> <groupId>${project.groupId}</groupId> | |
> <artifactId>netty-tcnative</artifactId> | |
> <version>1.1.30.Fork2</version> | |
> <classifier>${os.detected.classifier}</classifier> | |
> <scope>compile</scope> | |
> <optional>true</optional> | |
> </dependency> | |
> | |
91a101,123 | |
> <!-- | |
> Bouncy Castle - completely optional, only needed when: | |
> - you generate a temporary self-signed certificate using KeyUtil, and | |
> - you don't use the JDK which doesn't provide sun.security.x509 package. | |
> --> | |
> <dependency> | |
> <groupId>org.bouncycastle</groupId> | |
> <artifactId>bcpkix-jdk15on</artifactId> | |
> <version>1.50</version> | |
> <scope>compile</scope> | |
> <optional>true</optional> | |
> </dependency> | |
> | |
> <!-- Jetty NPN API - completely optional --> | |
> <!-- Used for Next Protocol Negotiation extension support --> | |
> <dependency> | |
> <groupId>org.eclipse.jetty.npn</groupId> | |
> <artifactId>npn-api</artifactId> | |
> <version>1.1.0.v20120525</version> | |
> <scope>compile</scope> | |
> <optional>true</optional> | |
> </dependency> | |
> | |
154,155c186,187 | |
< <artifactId>jboss-logging-spi</artifactId> | |
< <version>2.1.2.GA</version> | |
--- | |
> <artifactId>jboss-logging</artifactId> | |
> <version>3.1.4.GA</version> | |
189c221 | |
< <version>4.10</version> | |
--- | |
> <version>4.11</version> | |
230a263,270 | |
> <extensions> | |
> <extension> | |
> <groupId>kr.motd.maven</groupId> | |
> <artifactId>os-maven-plugin</artifactId> | |
> <version>1.2.3.Final</version> | |
> </extension> | |
> </extensions> | |
> | |
303c343 | |
< <version>[3.0.5,)</version> | |
--- | |
> <version>[3.1.1,)</version> | |
347a388,402 | |
> <!-- Self-signed certificate generation --> | |
> <ignore>sun.security.x509.AlgorithmId</ignore> | |
> <ignore>sun.security.x509.CertificateAlgorithmId</ignore> | |
> <ignore>sun.security.x509.CertificateIssuerName</ignore> | |
> <ignore>sun.security.x509.CertificateSerialNumber</ignore> | |
> <ignore>sun.security.x509.CertificateSubjectName</ignore> | |
> <ignore>sun.security.x509.CertificateValidity</ignore> | |
> <ignore>sun.security.x509.CertificateVersion</ignore> | |
> <ignore>sun.security.x509.CertificateX509Key</ignore> | |
> <ignore>sun.security.x509.X500Name</ignore> | |
> <ignore>sun.security.x509.X509CertInfo</ignore> | |
> <ignore>sun.security.x509.X509CertImpl</ignore> | |
> | |
> <!-- SSLSession implelementation --> | |
> <ignore>javax.net.ssl.SSLEngine</ignore> | |
361c416 | |
< <version>2.5</version> | |
--- | |
> <version>2.6</version> | |
458c513 | |
< <tasks> | |
--- | |
> <target> | |
478c533 | |
< </tasks> | |
--- | |
> </target> | |
488c543 | |
< <tasks> | |
--- | |
> <target> | |
524c579 | |
< </tasks> | |
--- | |
> </target> | |
674c729 | |
< <version>16</version> | |
--- | |
> <version>21</version> | |
676a732,745 | |
> </plugin> | |
> <!-- run-example.sh invokes this plugin to launch an example. --> | |
> <plugin> | |
> <groupId>kr.motd.maven</groupId> | |
> <artifactId>exec-maven-plugin</artifactId> | |
> <version>1.0.0.Final</version> | |
> <configuration> | |
> <executable>${java.home}/bin/java</executable> | |
> <commandlineArgs> | |
> -classpath %classpath | |
> ${argLine.example} | |
> ${exampleClass} | |
> </commandlineArgs> | |
> </configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment