Skip to content

Commit

Permalink
adding meta-information to pom
Browse files Browse the repository at this point in the history
  • Loading branch information
mtgag committed May 10, 2024
1 parent 23dab31 commit 88ae3f4
Show file tree
Hide file tree
Showing 5 changed files with 93 additions and 5 deletions.
20 changes: 20 additions & 0 deletions jlint-ext/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
<groupId>de.mtg</groupId>
<artifactId>jlint-ext</artifactId>
<version>1.0.0</version>
<description>Additional lints for certificates and revocation lists.</description>
<url>https://github.com/MTG-AG/jzlint</url>
<organization>
<name>MTG AG</name>
<url>https://www.mtg.de</url>
</organization>

<parent>
<groupId>de.mtg</groupId>
Expand Down Expand Up @@ -46,41 +52,55 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>${bcprov.version}</version>
</dependency>

<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>${bcprov.version}</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson-core.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson-core.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter-api.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-jupiter-api.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit-jupiter-api.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito-core.version}</version>
<scope>test</scope>
</dependency>

</dependencies>
Expand Down
25 changes: 20 additions & 5 deletions jlint-issuer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
<groupId>de.mtg</groupId>
<artifactId>jlint-issuer</artifactId>
<version>1.0.0</version>
<description>Lints for certificates and revocation lists in combination with their issuer.</description>
<url>https://github.com/MTG-AG/jzlint</url>
<organization>
<name>MTG AG</name>
<url>https://www.mtg.de</url>
</organization>

<parent>
<groupId>de.mtg</groupId>
Expand Down Expand Up @@ -46,46 +52,55 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>${bcprov.version}</version>
</dependency>

<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
</dependency>

<dependency>
<groupId>com.github.seancfoley</groupId>
<artifactId>ipaddress</artifactId>
<version>${bcprov.version}</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson-core.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson-core.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter-api.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-jupiter-api.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit-jupiter-api.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito-core.version}</version>
<scope>test</scope>
</dependency>

</dependencies>
Expand Down
20 changes: 20 additions & 0 deletions jlint-ocsp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
<groupId>de.mtg</groupId>
<artifactId>jlint-ocsp</artifactId>
<version>1.0.0</version>
<description>Linter for OCSP responses.</description>
<url>https://github.com/MTG-AG/jzlint</url>
<organization>
<name>MTG AG</name>
<url>https://www.mtg.de</url>
</organization>

<parent>
<groupId>de.mtg</groupId>
Expand Down Expand Up @@ -46,41 +52,55 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>${bcprov.version}</version>
</dependency>

<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>${bcprov.version}</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson-core.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson-core.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter-api.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-jupiter-api.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit-jupiter-api.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito-core.version}</version>
<scope>test</scope>
</dependency>

</dependencies>
Expand Down
12 changes: 12 additions & 0 deletions jzlint-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
<groupId>de.mtg</groupId>
<artifactId>jzlint-cli</artifactId>
<version>1.0.0</version>
<description>A command-line interface tool to lint certificates, revocation lists, and OCSP responses with JZLint.</description>
<url>https://github.com/MTG-AG/jzlint</url>
<organization>
<name>MTG AG</name>
<url>https://www.mtg.de</url>
</organization>

<parent>
<groupId>de.mtg</groupId>
Expand Down Expand Up @@ -57,31 +63,37 @@
<dependency>
<groupId>de.mtg</groupId>
<artifactId>jzlint</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>de.mtg</groupId>
<artifactId>jlint-ext</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>de.mtg</groupId>
<artifactId>jlint-issuer</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>de.mtg</groupId>
<artifactId>jlint-ocsp</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>${bcprov.version}</version>
</dependency>

<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
<version>${picocli.version}</version>
</dependency>

</dependencies>
Expand Down
21 changes: 21 additions & 0 deletions jzlint/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
<groupId>de.mtg</groupId>
<artifactId>jzlint</artifactId>
<version>1.0.0</version>
<description>Linter for certificates and revocation lists.</description>
<url>https://github.com/MTG-AG/jzlint</url>
<organization>
<name>MTG AG</name>
<url>https://www.mtg.de</url>
</organization>

<parent>
<groupId>de.mtg</groupId>
Expand Down Expand Up @@ -41,46 +47,61 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>${bcprov.version}</version>
</dependency>

<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>${bcprov.version}</version>
</dependency>

<dependency>
<groupId>com.github.seancfoley</groupId>
<artifactId>ipaddress</artifactId>
<version>${ipaddress.version}</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson-core.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson-core.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter-api.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-jupiter-api.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit-jupiter-api.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito-core.version}</version>
<scope>test</scope>
</dependency>

</dependencies>
Expand Down

0 comments on commit 88ae3f4

Please sign in to comment.