Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove setupdb references #146

Merged
merged 3 commits into from
Jul 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# All ProdLib projects upgrades

## 18.0.1

No code change: remove deprecated Setupdb maven plugin in Authkit for Liquibase updates #144

## 18.0.0

Create JobKitWatchdog in JobKit to warn if the queue (Spooler) as some toubles, like a Job who block the queue, or a very big queue size. Add Supervisable for it and add Spring Boot conf. Do some clean code on JobJit/test and Mailkit #140
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ AuthKit provide a backend API & logon front with:

AuthKit don't use Spring Security functions: it can be setup in addition for Spring Security.

It's use Liquibase for setup/upgrade MySQL database via [setupdb](https://github.com/hdsdi3g/setupdb-maven-plugin), only if you don't want to use Hibernate to do it.
It use Liquibase for setup/upgrade MySQL database, only if you don't want to use Hibernate to do it.

See more on `authkit` dir.
</details>
Expand Down
2 changes: 1 addition & 1 deletion app-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>tv.hd3g.commons</groupId>
<artifactId>parent-web</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
<relativePath>../parent-web/pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>tv.hd3g.commons</groupId>
<artifactId>parent</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>

Expand Down
24 changes: 3 additions & 21 deletions authkit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ Replace VERSION by [the last published version](https://mvnrepository.com/artifa

#### AuthKit development

Please setup an `application.yml` and `log4j2.xml` in `/config`. You can use samples in `src/test/resources`, or just ignore `/config` and keep the ones in `resources` (`/config` is outside git control).
Please setup an `application.yml` and `logback.xml` in `/config`. You can use samples in `src/test/resources`, or just ignore `/config` and keep the ones in `resources` (`/config` is outside git control).

In case if you want use an external MySQL database, after configure the Spring application, like:

Expand All @@ -162,19 +162,7 @@ spring:
open-in-view: false
```

Run:

```shell
mvn setupdb:deploy
```

for deploy manually the database configuration, and use:

```shell
mvn setupdb:dropall
```

For a full reverse setup. More information on setupdb in [setupdb's README](https://github.com/hdsdi3g/setupdb-maven-plugin/blob/master/README.md).
You can use Liquibase to deploy manually the database configuration.

_For maven calls, you can stop internal tests and gpg jar sign with:_

Expand All @@ -190,13 +178,7 @@ scripts/make-rest-doc.sh

#### AuthKit as library or in production

If you want use Liquibase outside maven, please generate a `/target/database-full-archive-changelog.xml` with:

```shell
mvn setupdb:archive
```

And you will be able to use, with a valid setup, **Liquibase v3.x** with the MySQL JDBC connector **mysql-connector-java-8.x.jar** putted in the liquibase setup **lib** directory.
You will be able to use, with a valid setup, **Liquibase v3.x** with the MySQL JDBC connector **mysql-connector-java-8.x.jar** putted in the liquibase setup **lib** directory.

More information on [Liquibase doc site](https://docs.liquibase.com/).

Expand Down
4 changes: 2 additions & 2 deletions authkit/THIRD-PARTY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,9 @@ Lists of 173 third-party dependencies.
(The Apache Software License, Version 2.0) unbescape (org.unbescape:unbescape:1.1.6.RELEASE - http://www.unbescape.org)
(The Apache Software License, Version 2.0) org.xmlunit:xmlunit-core (org.xmlunit:xmlunit-core:2.9.1 - https://www.xmlunit.org/)
(Apache License, Version 2.0) SnakeYAML (org.yaml:snakeyaml:1.33 - https://bitbucket.org/snakeyaml/snakeyaml)
(GNU Lesser General Public License, Version 3) SelfAutoRESTDoc (tv.hd3g:selfautorestdoc:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) SelfAutoRESTDoc (tv.hd3g:selfautorestdoc:18.0.1 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) CodePolicyValidation (tv.hd3g.commons:codepolicyvalidation:3.0.0 - https://github.com/hdsdi3g/codepolicyvalidation)
(GNU Lesser General Public License, Version 3) Commons Interfaces (tv.hd3g.commons:interfaces:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) Commons Interfaces (tv.hd3g.commons:interfaces:18.0.1 - https://github.com/hdsdi3g/prodlib)
(The Apache Software License, Version 2.0) (The SAX License) (The W3C License) XML Commons External Components XML APIs (xml-apis:xml-apis:1.4.01 - http://xml.apache.org/commons/components/external/)
(The Apache Software License, Version 2.0) XML Commons External Components XML APIs Extensions (xml-apis:xml-apis-ext:1.3.04 - http://xml.apache.org/commons/components/external/)
(The GNU Lesser General Public License, Version 2.1) XOM (xom:xom:1.3.8 - https://xom.nu)
16 changes: 3 additions & 13 deletions authkit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@
<parent>
<groupId>tv.hd3g.commons</groupId>
<artifactId>parent-web</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
<relativePath>../parent-web/pom.xml</relativePath>
</parent>

<dependencies>
<dependency>
<groupId>tv.hd3g.commons</groupId>
<artifactId>interfaces</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
</dependency>
<dependency>
<groupId>tv.hd3g</groupId>
<artifactId>selfautorestdoc</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down Expand Up @@ -97,14 +97,4 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>tv.hd3g.mvnplugin</groupId>
<artifactId>setupdb</artifactId>
<version>${setupdb.version}</version>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion csvkit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>tv.hd3g.commons</groupId>
<artifactId>starter</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion env-version/THIRD-PARTY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ Lists of 85 third-party dependencies.
(The Apache Software License, Version 2.0) org.xmlunit:xmlunit-core (org.xmlunit:xmlunit-core:2.9.1 - https://www.xmlunit.org/)
(Apache License, Version 2.0) SnakeYAML (org.yaml:snakeyaml:1.33 - https://bitbucket.org/snakeyaml/snakeyaml)
(GNU Lesser General Public License, Version 3) CodePolicyValidation (tv.hd3g.commons:codepolicyvalidation:3.0.0 - https://github.com/hdsdi3g/codepolicyvalidation)
(GNU Lesser General Public License, Version 3) Commons Interfaces (tv.hd3g.commons:interfaces:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) Commons Interfaces (tv.hd3g.commons:interfaces:18.0.1 - https://github.com/hdsdi3g/prodlib)
4 changes: 2 additions & 2 deletions env-version/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
<parent>
<groupId>tv.hd3g.commons</groupId>
<artifactId>parent</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>

<dependencies>
<dependency>
<groupId>tv.hd3g.commons</groupId>
<artifactId>interfaces</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion env-version/src/main/resources/prodlib-version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.0.0
18.0.1
2 changes: 1 addition & 1 deletion interfaces/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>tv.hd3g.commons</groupId>
<artifactId>starter</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
</project>
2 changes: 1 addition & 1 deletion jobkit/engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>tv.hd3g</groupId>
<artifactId>jobkit-starter</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion jobkit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>tv.hd3g.commons</groupId>
<artifactId>starter</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions jobkit/springboot-service/THIRD-PARTY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,6 @@ Lists of 96 third-party dependencies.
(Apache License, Version 2.0) spring-boot-test-autoconfigure (org.springframework.boot:spring-boot-test-autoconfigure:3.1.1 - https://spring.io/projects/spring-boot)
(The Apache Software License, Version 2.0) org.xmlunit:xmlunit-core (org.xmlunit:xmlunit-core:2.9.1 - https://www.xmlunit.org/)
(Apache License, Version 2.0) SnakeYAML (org.yaml:snakeyaml:1.33 - https://bitbucket.org/snakeyaml/snakeyaml)
(GNU Lesser General Public License, Version 3) JobKit Engine (tv.hd3g:jobkit-engine:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) JobKit Engine (tv.hd3g:jobkit-engine:18.0.1 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) CodePolicyValidation (tv.hd3g.commons:codepolicyvalidation:3.0.0 - https://github.com/hdsdi3g/codepolicyvalidation)
(GNU Lesser General Public License, Version 3) Commons Interfaces (tv.hd3g.commons:interfaces:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) Commons Interfaces (tv.hd3g.commons:interfaces:18.0.1 - https://github.com/hdsdi3g/prodlib)
6 changes: 3 additions & 3 deletions jobkit/springboot-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@
<parent>
<groupId>tv.hd3g</groupId>
<artifactId>jobkit-starter</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

<dependencies>
<dependency>
<groupId>tv.hd3g</groupId>
<artifactId>jobkit-engine</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
</dependency>
<dependency>
<groupId>tv.hd3g.commons</groupId>
<artifactId>interfaces</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
10 changes: 5 additions & 5 deletions jobkit/watchfolder-jpa/THIRD-PARTY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ Lists of 137 third-party dependencies.
(Public Domain) XZ for Java (org.tukaani:xz:1.8 - https://tukaani.org/xz/java.html)
(The Apache Software License, Version 2.0) org.xmlunit:xmlunit-core (org.xmlunit:xmlunit-core:2.9.1 - https://www.xmlunit.org/)
(Apache License, Version 2.0) SnakeYAML (org.yaml:snakeyaml:1.33 - https://bitbucket.org/snakeyaml/snakeyaml)
(GNU Lesser General Public License, Version 3) Jobkit SpringBoot module (tv.hd3g:jobkit:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) JobKit Engine (tv.hd3g:jobkit-engine:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) JobKit Watchfolder (tv.hd3g:jobkit-watchfolder:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) TransfertFiles (tv.hd3g:transfertfiles:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) Jobkit SpringBoot module (tv.hd3g:jobkit:18.0.1 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) JobKit Engine (tv.hd3g:jobkit-engine:18.0.1 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) JobKit Watchfolder (tv.hd3g:jobkit-watchfolder:18.0.1 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) TransfertFiles (tv.hd3g:transfertfiles:18.0.1 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) CodePolicyValidation (tv.hd3g.commons:codepolicyvalidation:3.0.0 - https://github.com/hdsdi3g/codepolicyvalidation)
(GNU Lesser General Public License, Version 3) Commons Interfaces (tv.hd3g.commons:interfaces:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) Commons Interfaces (tv.hd3g.commons:interfaces:18.0.1 - https://github.com/hdsdi3g/prodlib)
6 changes: 3 additions & 3 deletions jobkit/watchfolder-jpa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@
<parent>
<groupId>tv.hd3g</groupId>
<artifactId>jobkit-starter</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

<dependencies>
<dependency>
<groupId>tv.hd3g</groupId>
<artifactId>jobkit</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
</dependency>
<dependency>
<groupId>tv.hd3g</groupId>
<artifactId>jobkit-watchfolder</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
6 changes: 3 additions & 3 deletions jobkit/watchfolder/THIRD-PARTY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Lists of 62 third-party dependencies.
(The MIT License) Project Lombok (org.projectlombok:lombok:1.18.28 - https://projectlombok.org)
(MIT License) SLF4J API Module (org.slf4j:slf4j-api:2.0.7 - http://www.slf4j.org)
(Public Domain) XZ for Java (org.tukaani:xz:1.8 - https://tukaani.org/xz/java.html)
(GNU Lesser General Public License, Version 3) JobKit Engine (tv.hd3g:jobkit-engine:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) TransfertFiles (tv.hd3g:transfertfiles:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) JobKit Engine (tv.hd3g:jobkit-engine:18.0.1 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) TransfertFiles (tv.hd3g:transfertfiles:18.0.1 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) CodePolicyValidation (tv.hd3g.commons:codepolicyvalidation:3.0.0 - https://github.com/hdsdi3g/codepolicyvalidation)
(GNU Lesser General Public License, Version 3) Commons Interfaces (tv.hd3g.commons:interfaces:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) Commons Interfaces (tv.hd3g.commons:interfaces:18.0.1 - https://github.com/hdsdi3g/prodlib)
6 changes: 3 additions & 3 deletions jobkit/watchfolder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@
<parent>
<groupId>tv.hd3g</groupId>
<artifactId>jobkit-starter</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

<dependencies>
<dependency>
<groupId>tv.hd3g</groupId>
<artifactId>transfertfiles</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
</dependency>
<dependency>
<groupId>tv.hd3g</groupId>
<artifactId>jobkit-engine</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
Expand Down
2 changes: 1 addition & 1 deletion jsconfig/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>tv.hd3g.commons</groupId>
<artifactId>parent</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>

Expand Down
8 changes: 4 additions & 4 deletions mailkit/THIRD-PARTY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ Lists of 120 third-party dependencies.
(The Apache Software License, Version 2.0) unbescape (org.unbescape:unbescape:1.1.6.RELEASE - http://www.unbescape.org)
(The Apache Software License, Version 2.0) org.xmlunit:xmlunit-core (org.xmlunit:xmlunit-core:2.9.1 - https://www.xmlunit.org/)
(Apache License, Version 2.0) SnakeYAML (org.yaml:snakeyaml:1.33 - https://bitbucket.org/snakeyaml/snakeyaml)
(GNU Lesser General Public License, Version 3) Jobkit SpringBoot module (tv.hd3g:jobkit:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) JobKit Engine (tv.hd3g:jobkit-engine:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) Jobkit SpringBoot module (tv.hd3g:jobkit:18.0.1 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) JobKit Engine (tv.hd3g:jobkit-engine:18.0.1 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) CodePolicyValidation (tv.hd3g.commons:codepolicyvalidation:3.0.0 - https://github.com/hdsdi3g/codepolicyvalidation)
(GNU Lesser General Public License, Version 3) Project's environment version (tv.hd3g.commons:env-version:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) Commons Interfaces (tv.hd3g.commons:interfaces:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) Project's environment version (tv.hd3g.commons:env-version:18.0.1 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) Commons Interfaces (tv.hd3g.commons:interfaces:18.0.1 - https://github.com/hdsdi3g/prodlib)
8 changes: 4 additions & 4 deletions mailkit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,25 @@
<parent>
<groupId>tv.hd3g.commons</groupId>
<artifactId>parent-web</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
<relativePath>../parent-web/pom.xml</relativePath>
</parent>

<dependencies>
<dependency>
<groupId>tv.hd3g.commons</groupId>
<artifactId>interfaces</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
</dependency>
<dependency>
<groupId>tv.hd3g</groupId>
<artifactId>jobkit</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
</dependency>
<dependency>
<groupId>tv.hd3g.commons</groupId>
<artifactId>env-version</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
</dependency>
<dependency>
<groupId>com.j2html</groupId>
Expand Down
2 changes: 1 addition & 1 deletion parent-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>tv.hd3g.commons</groupId>
<artifactId>parent</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>tv.hd3g.commons</groupId>
<artifactId>starter</artifactId>
<version>18.0.0</version>
<version>18.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>tv.hd3g.commons</groupId>
<artifactId>starter</artifactId>
<packaging>pom</packaging>
<version>18.0.0</version>
<version>18.0.1</version>

<name>Commons Maven starter project</name>
<url>https://github.com/hdsdi3g/prodlib</url>
Expand Down Expand Up @@ -78,7 +78,6 @@
<sonar.version>3.9.1.2184</sonar.version>

<codepolicyvalidation.version>3.0.0</codepolicyvalidation.version>
<setupdb.version>2.0.2</setupdb.version>
<processlauncher.version>6.0.5</processlauncher.version>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion selfautorestdoc/THIRD-PARTY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,4 @@ Lists of 107 third-party dependencies.
(The Apache Software License, Version 2.0) org.xmlunit:xmlunit-core (org.xmlunit:xmlunit-core:2.9.1 - https://www.xmlunit.org/)
(Apache License, Version 2.0) SnakeYAML (org.yaml:snakeyaml:1.33 - https://bitbucket.org/snakeyaml/snakeyaml)
(GNU Lesser General Public License, Version 3) CodePolicyValidation (tv.hd3g.commons:codepolicyvalidation:3.0.0 - https://github.com/hdsdi3g/codepolicyvalidation)
(GNU Lesser General Public License, Version 3) Commons Interfaces (tv.hd3g.commons:interfaces:18.0.0 - https://github.com/hdsdi3g/prodlib)
(GNU Lesser General Public License, Version 3) Commons Interfaces (tv.hd3g.commons:interfaces:18.0.1 - https://github.com/hdsdi3g/prodlib)
Loading