updated dependencies
This commit is contained in:
232
pom.xml
232
pom.xml
@ -17,63 +17,72 @@ limitations under the License.
|
|||||||
|
|
||||||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
<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">
|
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>
|
||||||
|
|
||||||
<artifactId>shared</artifactId>
|
<artifactId>shared</artifactId>
|
||||||
<build>
|
<version>1.2-SNAPSHOT</version>
|
||||||
<pluginManagement>
|
<name>shared</name>
|
||||||
<plugins>
|
<packaging>pom</packaging>
|
||||||
<!-- build archive -->
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<showDeprecation>true</showDeprecation>
|
|
||||||
<source>${maven.compiler.source}</source>
|
|
||||||
<target>${maven.compiler.target}</target>
|
|
||||||
</configuration>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<version>3.8.1</version>
|
|
||||||
</plugin>
|
|
||||||
|
|
||||||
<!-- build maven ejb artifacts -->
|
<modules>
|
||||||
<plugin>
|
<module>configuration</module>
|
||||||
<artifactId>maven-ejb-plugin</artifactId>
|
<module>network</module>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<module>util</module>
|
||||||
<version>3.0.1</version>
|
<module>jeeutil</module>
|
||||||
</plugin>
|
<module>shiro-faces</module>
|
||||||
|
<module>poi-util</module>
|
||||||
|
<module>db</module>
|
||||||
|
</modules>
|
||||||
|
|
||||||
<!-- create new releases -->
|
<licenses>
|
||||||
<plugin>
|
<license>
|
||||||
<artifactId>maven-release-plugin</artifactId>
|
<distribution>repo</distribution>
|
||||||
<version>2.5.3</version>
|
<name>Apache License, Version 2.0</name>
|
||||||
</plugin>
|
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
|
||||||
<!-- control junit tests from maven build -->
|
<developers>
|
||||||
<plugin>
|
<developer>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<email>joern@muehlencord.de</email>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<name>Joern Muehlencord</name>
|
||||||
<version>2.22.2</version>
|
</developer>
|
||||||
</plugin>
|
</developers>
|
||||||
</plugins>
|
|
||||||
</pluginManagement>
|
|
||||||
|
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:https://jomu.timelord.de/git/jomu/shared/</connection>
|
||||||
|
<developerConnection>scm:git:https://jomu.timelord.de/git/jomu/shared/</developerConnection>
|
||||||
|
<tag>HEAD</tag>
|
||||||
|
<url>https://jomu.timelord.de/git/jomu/shared/</url>
|
||||||
|
</scm>
|
||||||
|
|
||||||
|
<distributionManagement>
|
||||||
|
<repository>
|
||||||
|
<id>ossrh</id>
|
||||||
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||||||
|
</repository>
|
||||||
|
<snapshotRepository>
|
||||||
|
<id>ossrh</id>
|
||||||
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||||||
|
</snapshotRepository>
|
||||||
|
</distributionManagement>
|
||||||
|
<groupId>de.muehlencord</groupId>
|
||||||
|
|
||||||
|
<issueManagement>
|
||||||
|
<system>Gitea</system>
|
||||||
|
<url>https://jomu.timelord.de/git/jomu/shared/issues</url>
|
||||||
|
</issueManagement>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<!-- project setup -->
|
||||||
|
<maven.compiler.source>11</maven.compiler.source>
|
||||||
|
<maven.compiler.target>11</maven.compiler.target>
|
||||||
|
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<slf4j.version>1.7.32</slf4j.version>
|
||||||
|
<jackson.version>2.13.0</jackson.version>
|
||||||
|
</properties>
|
||||||
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-release-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<tagNameFormat>v@{project.version}</tagNameFormat>
|
|
||||||
</configuration>
|
|
||||||
<version>2.5.3</version>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
@ -201,7 +210,7 @@ limitations under the License.
|
|||||||
<artifactId>hibernate-core</artifactId>
|
<artifactId>hibernate-core</artifactId>
|
||||||
<groupId>org.hibernate</groupId>
|
<groupId>org.hibernate</groupId>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<version>5.4.23.Final</version>
|
<version>5.6.3.Final</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<artifactId>primefaces</artifactId>
|
<artifactId>primefaces</artifactId>
|
||||||
@ -221,7 +230,7 @@ limitations under the License.
|
|||||||
<dependency>
|
<dependency>
|
||||||
<artifactId>poi-ooxml</artifactId>
|
<artifactId>poi-ooxml</artifactId>
|
||||||
<groupId>org.apache.poi</groupId>
|
<groupId>org.apache.poi</groupId>
|
||||||
<version>5.0.0</version>
|
<version>5.2.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<artifactId>fusionauth-jwt</artifactId>
|
<artifactId>fusionauth-jwt</artifactId>
|
||||||
@ -242,56 +251,10 @@ limitations under the License.
|
|||||||
<artifactId>junit-jupiter-engine</artifactId>
|
<artifactId>junit-jupiter-engine</artifactId>
|
||||||
<groupId>org.junit.jupiter</groupId>
|
<groupId>org.junit.jupiter</groupId>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
<version>5.8.1</version>
|
<version>5.8.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</dependencyManagement>
|
</dependencyManagement>
|
||||||
<developers>
|
|
||||||
<developer>
|
|
||||||
<email>joern@muehlencord.de</email>
|
|
||||||
<name>Joern Muehlencord</name>
|
|
||||||
</developer>
|
|
||||||
</developers>
|
|
||||||
<distributionManagement>
|
|
||||||
<repository>
|
|
||||||
<id>ossrh</id>
|
|
||||||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
||||||
</repository>
|
|
||||||
<snapshotRepository>
|
|
||||||
<id>ossrh</id>
|
|
||||||
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
||||||
</snapshotRepository>
|
|
||||||
</distributionManagement>
|
|
||||||
<groupId>de.muehlencord</groupId>
|
|
||||||
|
|
||||||
<issueManagement>
|
|
||||||
<system>Gitea</system>
|
|
||||||
<url>https://jomu.timelord.de/git/jomu/shared/issues</url>
|
|
||||||
</issueManagement>
|
|
||||||
|
|
||||||
<licenses>
|
|
||||||
<license>
|
|
||||||
<distribution>repo</distribution>
|
|
||||||
<name>Apache License, Version 2.0</name>
|
|
||||||
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
|
||||||
</license>
|
|
||||||
</licenses>
|
|
||||||
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
|
|
||||||
<modules>
|
|
||||||
<module>configuration</module>
|
|
||||||
<module>network</module>
|
|
||||||
<module>util</module>
|
|
||||||
<module>jeeutil</module>
|
|
||||||
<module>shiro-faces</module>
|
|
||||||
<module>poi-util</module>
|
|
||||||
<module>db</module>
|
|
||||||
</modules>
|
|
||||||
|
|
||||||
<name>shared</name>
|
|
||||||
|
|
||||||
<packaging>pom</packaging>
|
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
<profile>
|
<profile>
|
||||||
@ -388,24 +351,61 @@ limitations under the License.
|
|||||||
</profile>
|
</profile>
|
||||||
</profiles>
|
</profiles>
|
||||||
|
|
||||||
<properties>
|
<build>
|
||||||
<!-- project setup -->
|
<pluginManagement>
|
||||||
<jackson.version>2.13.0</jackson.version>
|
<plugins>
|
||||||
<maven.compiler.source>11</maven.compiler.source>
|
<!-- build archive -->
|
||||||
<maven.compiler.target>11</maven.compiler.target>
|
<plugin>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<showDeprecation>true</showDeprecation>
|
||||||
|
<source>${maven.compiler.source}</source>
|
||||||
|
<target>${maven.compiler.target}</target>
|
||||||
|
</configuration>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<version>3.8.1</version>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<!-- build maven ejb artifacts -->
|
||||||
<slf4j.version>1.7.32</slf4j.version>
|
<plugin>
|
||||||
</properties>
|
<artifactId>maven-ejb-plugin</artifactId>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<version>3.0.1</version>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<!-- create new releases -->
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
|
<version>2.5.3</version>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<!-- control junit tests from maven build -->
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<version>2.22.2</version>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
|
|
||||||
|
|
||||||
<scm>
|
<plugins>
|
||||||
<connection>scm:git:https://jomu.timelord.de/git/jomu/shared/</connection>
|
<plugin>
|
||||||
<developerConnection>scm:git:https://jomu.timelord.de/git/jomu/shared/</developerConnection>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<tag>HEAD</tag>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<url>https://jomu.timelord.de/git/jomu/shared/</url>
|
</plugin>
|
||||||
</scm>
|
<plugin>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
<version>1.2-SNAPSHOT</version>
|
<configuration>
|
||||||
|
<tagNameFormat>v@{project.version}</tagNameFormat>
|
||||||
|
</configuration>
|
||||||
|
<version>2.5.3</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
Reference in New Issue
Block a user