Skip to content

Commit

Permalink
Merge pull request #3 from MTG-AG/1.1.0
Browse files Browse the repository at this point in the history
1.1.0
  • Loading branch information
mtgag authored Sep 26, 2024
2 parents 597184a + b24ebad commit a7d821c
Show file tree
Hide file tree
Showing 9 changed files with 119 additions and 31 deletions.
4 changes: 2 additions & 2 deletions domains-util/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

<groupId>de.mtg</groupId>
<artifactId>domains-util</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>

<parent>
<groupId>de.mtg</groupId>
<artifactId>jzlint-parent</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
</parent>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions jlint-ext/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.mtg</groupId>
<artifactId>jlint-ext</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
<description>Additional lints for certificates and revocation lists.</description>
<url>https://github.com/MTG-AG/jzlint</url>
<organization>
Expand All @@ -17,7 +17,7 @@
<parent>
<groupId>de.mtg</groupId>
<artifactId>jzlint-parent</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
</parent>

<licenses>
Expand Down
4 changes: 2 additions & 2 deletions jlint-issuer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.mtg</groupId>
<artifactId>jlint-issuer</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
<description>Lints for certificates and revocation lists in combination with their issuer.</description>
<url>https://github.com/MTG-AG/jzlint</url>
<organization>
Expand All @@ -17,7 +17,7 @@
<parent>
<groupId>de.mtg</groupId>
<artifactId>jzlint-parent</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
</parent>

<licenses>
Expand Down
4 changes: 2 additions & 2 deletions jlint-ocsp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.mtg</groupId>
<artifactId>jlint-ocsp</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
<description>Linter for OCSP responses.</description>
<url>https://github.com/MTG-AG/jzlint</url>
<organization>
Expand All @@ -17,7 +17,7 @@
<parent>
<groupId>de.mtg</groupId>
<artifactId>jzlint-parent</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
</parent>

<licenses>
Expand Down
4 changes: 2 additions & 2 deletions jzlint-ca/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.mtg</groupId>
<artifactId>jzlint-ca</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>

<properties>
<maven.deploy.skip>true</maven.deploy.skip>
Expand All @@ -15,7 +15,7 @@
<parent>
<groupId>de.mtg</groupId>
<artifactId>jzlint-parent</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
</parent>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions jzlint-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.mtg</groupId>
<artifactId>jzlint-cli</artifactId>
<version>1.0.1</version>
<version>1.1.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>
Expand All @@ -17,7 +17,7 @@
<parent>
<groupId>de.mtg</groupId>
<artifactId>jzlint-parent</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
</parent>

<licenses>
Expand Down
106 changes: 90 additions & 16 deletions jzlint-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,58 @@

<groupId>de.mtg</groupId>
<artifactId>jzlint-server</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
<description>A REST-API interface 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>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.4</version>
<relativePath/>
<groupId>de.mtg</groupId>
<artifactId>jzlint-parent</artifactId>
<version>1.1.0</version>
</parent>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<developers>
<developer>
<id>MTG AG</id>
<name>MTG AG</name>
<email>[email protected]</email>
</developer>
</developers>

<scm>
<connection>scm:git:https://github.com/MTG-AG/jzlint.git</connection>
<url>https://github.com/MTG-AG/jzlint.git</url>
<developerConnection>scm:git:https://github.com/MTG-AG/jzlint.git</developerConnection>
<tag>HEAD</tag>
</scm>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>

<dependency>
Expand All @@ -23,32 +66,63 @@
<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>1.78.1</version>
<version>${bcprov.version}</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring-boot.version}</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<version>${spring-boot.version}</version>
</dependency>

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

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson-core.version}</version>
<scope>compile</scope>
</dependency>

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

</dependencies>

</project>
4 changes: 2 additions & 2 deletions jzlint/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.mtg</groupId>
<artifactId>jzlint</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
<description>Linter for certificates and revocation lists.</description>
<url>https://github.com/MTG-AG/jzlint</url>
<organization>
Expand All @@ -17,7 +17,7 @@
<parent>
<groupId>de.mtg</groupId>
<artifactId>jzlint-parent</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
</parent>

<licenses>
Expand Down
16 changes: 15 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.mtg</groupId>
<artifactId>jzlint-parent</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
<name>jzlint-parent</name>
<packaging>pom</packaging>

Expand Down Expand Up @@ -65,6 +65,7 @@
<mockito-core.version>5.13.0</mockito-core.version>
<ipaddress.version>5.5.1</ipaddress.version>
<spring-web.version>6.1.13</spring-web.version>
<spring-boot.version>3.3.4</spring-boot.version>

</properties>

Expand Down Expand Up @@ -225,6 +226,19 @@
<version>${spring-web.version}</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring-boot.version}</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>${spring-boot.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
Expand Down

0 comments on commit a7d821c

Please sign in to comment.