Skip to content

Commit

Permalink
DD4J-256 Introduce as multimodule project & extracted relevant code f…
Browse files Browse the repository at this point in the history
…rom latest JDigiDoc lib into DDoc4J module
  • Loading branch information
andresrosenthal committed Aug 23, 2018
1 parent e8f384f commit 3e5e47e
Show file tree
Hide file tree
Showing 646 changed files with 29,043 additions and 1,330 deletions.
6 changes: 1 addition & 5 deletions .gitignore
@@ -1,7 +1,3 @@
/build
/target
.idea/*
!.idea/codeStyleSettings.xml
/buildNumber.properties
*.iml
**/.DS_Store
**/.DS_Store
1 change: 0 additions & 1 deletion .idea/.name

This file was deleted.

19 changes: 0 additions & 19 deletions .idea/checkstyle-idea.xml

This file was deleted.

18 changes: 4 additions & 14 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions .idea/copyright/profiles_settings.xml

This file was deleted.

29 changes: 0 additions & 29 deletions .idea/digidoc4j.iml

This file was deleted.

6 changes: 2 additions & 4 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 0 additions & 10 deletions .idea/inspectionProfiles/Project_Default.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/inspectionProfiles/profiles_settings.xml

This file was deleted.

75 changes: 4 additions & 71 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 0 additions & 7 deletions .idea/rebel_project.xml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/scopes/scope_settings.xml

This file was deleted.

2 changes: 1 addition & 1 deletion .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions AUTHORS
Expand Up @@ -10,3 +10,4 @@ Developers:
Margus Kamlat <margus.kamlat@cgi.com>
Priit Serk <priit.serk@cgi.com>
Janar Rahumeel <janar.rahumeel@cgi.com>
Andres Voll <andres.voll@nortal.com>
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
![EU Regional Development Fund](src/main/doc/resources/EL_Regionaalarengu_Fond_horisontaalne-vaike.jpg)
![EU Regional Development Fund](digidoc4j/src/main/doc/resources/EL_Regionaalarengu_Fond_horisontaalne-vaike.jpg)


# DigiDoc4j
Expand Down
4 changes: 4 additions & 0 deletions ddoc4j/.gitignore
@@ -0,0 +1,4 @@
/target
.idea/*
*.iml
**/.DS_Store
58 changes: 58 additions & 0 deletions ddoc4j/pom.xml
@@ -0,0 +1,58 @@
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>
<groupId>org.digidoc4j</groupId>
<artifactId>ddoc4j</artifactId>
<packaging>jar</packaging>
<version>2.1.0</version>
<name>DDoc4J</name>
<description>DigiDoc4j is a Java library for digitally signing documents and creating digital signature containers
of signed documents
</description>
<url>https://github.com/open-eid/digidoc4j</url>

<parent>
<artifactId>digidoc4j-parent</artifactId>
<groupId>org.digidoc4j</groupId>
<version>2.1.0</version>
</parent>

<properties>
<slf4j.version>1.7.25</slf4j.version>
<bouncycastle.version>1.58</bouncycastle.version>
</properties>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcmail-jdk15on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.10</version>
</dependency>
</dependencies>
</project>

0 comments on commit 3e5e47e

Please sign in to comment.