Merge pull request 'Fixes scm url' (#3) from #23805 into master

Reviewed-on: #3
This commit is contained in:
Fabio Sinibaldi 2022-10-27 11:12:30 +02:00
commit 4bc19bfaec
1 changed files with 23 additions and 1 deletions

24
pom.xml
View File

@ -26,7 +26,7 @@
<properties> <properties>
<distroDirectory>${project.basedir}/distro</distroDirectory> <distroDirectory>${project.basedir}/distro</distroDirectory>
<gitBaseUrl>https://code-repo.d4science.org/gCubeSystem/</gitBaseUrl> <gitBaseUrl>https://code-repo.d4science.org/gCubeSystem</gitBaseUrl>
</properties> </properties>
<scm> <scm>
@ -84,7 +84,29 @@
<version>1.18.4</version> <version>1.18.4</version>
</dependency> </dependency>
<!-- JDK 11 Missing -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.4.0-b180830.0359</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.4.0-b180830.0438</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.glassfish.jaxb/jaxb-runtime -->
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.4.0-b180830.0438</version>
<scope>provided</scope>
</dependency>
<!-- TEST --> <!-- TEST -->