unbound-java-provider
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.unbound-tech</groupId> <artifactId>unbound-java-provider</artifactId> <version>2.0.2010.38499.RELEASE</version> </dependency>
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.unbound-tech</groupId> <artifactId>unbound-java-provider</artifactId> <version>2.0.2010.38499.RELEASE</version> <properties> <jersey.version>2.25.1</jersey.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.7</maven.compiler.source> <additionalparam>-Xdoclint:none</additionalparam> </properties> <build> <sourceDirectory>src/main</sourceDirectory> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.7</version> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>../../../common/javaPackages/config</source> <source>../../../common/javaPackages/crypto</source> <source>../../../common/javaPackages/crypto-formats</source> <source>../../../common/javaPackages/json</source> <source>../../../common/javaPackages/log</source> <source>../../../common/javaPackages/tokenization</source> <source>../../../common/javaPackages/utils</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>1.7</source> <target>1.7</target> <excludes> <exclude>module-info.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> <configuration> <excludes> <exclude>**/src/test</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>${maven.compiler.source}</source> <sourcepath>src/main/com</sourcepath> <sourcepath>../../../common/javaPackages/config</sourcepath> <sourcepath>../../../common/javaPackages/crypto</sourcepath> <sourcepath>../../../common/javaPackages/crypto-formats</sourcepath> <sourcepath>../../../common/javaPackages/json</sourcepath> <sourcepath>../../../common/javaPackages/log</sourcepath> <sourcepath>../../../common/javaPackages/tokenization</sourcepath> <sourcepath>../../../common/javaPackages/utils</sourcepath> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-jarsigner-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>sign</id> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <keystore>${keystore.path}</keystore> <alias>dyjce</alias> <keypass>${keystore.key.password}</keypass> <storepass>${keystore.store.password}</storepass> <verbose>true</verbose> <includes> <include>*.jar</include> </includes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> </archive> </configuration> </plugin> </plugins> </build> <packaging>jar</packaging> <name>Unbound java provider</name> <description>This is a collection of JAVA libraries that implement Unbound cryptographic classes for JAVA provider, PKCS11 wrapper, cryptoki, and advapi</description> <url>https://github.com/unbound-tech/unbound-java-provider</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <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> <scm> <connection>scm:git:git://github.com/unbound-tech/unbound-java-provider.git</connection> <developerConnection>scm:git:ssh://github.com:unbound-tech/unbound-java-provider.git</developerConnection> <url>http://github.com/unbound-tech/unbound-java-provider</url> </scm> <developers> <developer> <name>Ori Ben Sasson</name> <email>ori.ben-sasson@unboundtech.com</email> <organization>Unboundtech</organization> <organizationUrl>https://www.unboundtech.com/</organizationUrl> </developer> </developers> <pluginRepositories> <pluginRepository> <id>maven2</id> <url>https://repo.maven.apache.org/maven2/</url> </pluginRepository> </pluginRepositories> </project>