simple-pgp-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>me.sniggle</groupId> <artifactId>simple-pgp-java</artifactId> <version>0.1.0</version> </dependency>
<project> <modelVersion>4.0.0</modelVersion> <artifactId>simple-pgp-java</artifactId> <parent> <groupId>me.sniggle</groupId> <artifactId>simple-pgp</artifactId> <version>0.1.0</version> </parent> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>${project.parent.groupId}</groupId> <artifactId>simple-pgp-api</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpg-jdk15on</artifactId> <version>1.52</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> </dependencies> </project>