imported scripts from intellicastle project and adapted to bordercastle
This commit is contained in:
parent
6178c58132
commit
dd07940e6a
29 changed files with 1744 additions and 2 deletions
116
maven/pom/boca-parent.xml
Normal file
116
maven/pom/boca-parent.xml
Normal file
|
|
@ -0,0 +1,116 @@
|
|||
<?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>
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>central</id>
|
||||
<name>Central Repository</name>
|
||||
<url>https://repo.maven.apache.org/maven2</url>
|
||||
<layout>default</layout>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
<releases>
|
||||
<updatePolicy>never</updatePolicy>
|
||||
</releases>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>central</id>
|
||||
<name>Central Repository</name>
|
||||
<url>https://repo.maven.apache.org/maven2</url>
|
||||
<layout>default</layout>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
<parent>
|
||||
<groupId>org.sonatype.oss</groupId>
|
||||
<artifactId>oss-parent</artifactId>
|
||||
<version>7</version>
|
||||
</parent>
|
||||
<groupId>org.bordercastle</groupId>
|
||||
<artifactId>boca-parent</artifactId>
|
||||
<version>${bordercastle.version}</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>BorderCastle parent POM project</name>
|
||||
<url>http://www.bordercastle.org/</url>
|
||||
<description>
|
||||
BorderCastle is a package-rename (org.bouncycastle.* to org.bordercastle.*) of Bouncy Castle
|
||||
intended for the Android platform. Android unfortunately ships with a stripped-down version of
|
||||
Bouncy Castle, which prevents easy upgrades - BorderCastle overcomes this and provides a full,
|
||||
up-to-date version of the Bouncy Castle cryptographic libs.
|
||||
|
||||
The project was inspired by Spongy Castle (http://rtyley.github.com/spongycastle/) but forked
|
||||
from it to have a documented and well established build process, directly from the Bouncy Castle
|
||||
sources.
|
||||
</description>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Bouncy Castle Licence</name>
|
||||
<url>http://www.bouncycastle.org/licence.html</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<developers>
|
||||
<developer>
|
||||
<id>bouncy-castle-dev</id>
|
||||
<name>Bouncy Castle contributors</name>
|
||||
<url>http://www.bouncycastle.org/contributors.html</url>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>lepoy</id>
|
||||
<name>Leon Poyyayil</name>
|
||||
<timezone>0</timezone>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>dincalza</id>
|
||||
<name>Dario Incalza</name>
|
||||
<timezone>0</timezone>
|
||||
</developer>
|
||||
</developers>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
<modules>
|
||||
<module>boca-light</module>
|
||||
<module>boca-prov</module>
|
||||
<module>boca-pg</module>
|
||||
<module>boca-pkix</module>
|
||||
<module>boca-mail</module>
|
||||
<!-- requires to generate code based on protobuf spec: currently not done
|
||||
<module>boca-mls</module>
|
||||
-->
|
||||
<module>boca-util</module>
|
||||
<module>boca-tls</module>
|
||||
</modules>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.13</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.unboundid</groupId>
|
||||
<artifactId>unboundid-ldapsdk</artifactId>
|
||||
<version>6.0.8</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>2.3.2</version>
|
||||
<configuration>
|
||||
<source>1.8</source>
|
||||
<target>1.8</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
Loading…
Add table
Add a link
Reference in a new issue