2022-10-28 11:28:37 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2009-06-08 02:59:43 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2023-11-25 11:26:36 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2024-03-14 12:49:50 +08:00
|
|
|
<version>3.2.3</version>
|
2009-06-08 02:59:43 +08:00
|
|
|
</parent>
|
2022-02-16 11:38:12 +08:00
|
|
|
|
2024-01-16 12:10:52 +08:00
|
|
|
<groupId>org.wisemapping</groupId>
|
2024-02-04 15:10:32 +08:00
|
|
|
<artifactId>wise-api</artifactId>
|
2024-03-25 01:18:19 +08:00
|
|
|
<version>6.0.0-SNAPSHOT</version>
|
2024-01-16 12:10:52 +08:00
|
|
|
|
2024-02-04 15:10:32 +08:00
|
|
|
<name>WiseMapping API</name>
|
|
|
|
<url>https://www.wisemapping.org</url>
|
2024-01-16 12:10:52 +08:00
|
|
|
|
2012-02-12 13:55:42 +08:00
|
|
|
<properties>
|
2024-03-25 01:18:19 +08:00
|
|
|
<com.wisemapping.version>6.0.0-SNAPSHOT</com.wisemapping.version>
|
2024-03-14 12:56:29 +08:00
|
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
|
|
<maven.compiler.target>21</maven.compiler.target>
|
2012-02-12 13:55:42 +08:00
|
|
|
</properties>
|
|
|
|
|
2009-06-08 02:59:43 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.velocity</groupId>
|
|
|
|
<artifactId>velocity</artifactId>
|
2020-11-07 13:35:54 +08:00
|
|
|
<version>1.7</version>
|
2009-06-08 02:59:43 +08:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-11-25 11:26:36 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2009-06-08 02:59:43 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-11-25 11:26:36 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
2011-03-21 05:25:41 +08:00
|
|
|
</dependency>
|
2024-01-16 12:10:52 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2024-01-22 09:36:56 +08:00
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
2024-01-16 12:10:52 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2024-01-22 09:36:56 +08:00
|
|
|
<groupId>org.junit.vintage</groupId>
|
|
|
|
<artifactId>junit-vintage-engine</artifactId>
|
2024-01-16 12:10:52 +08:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2024-01-22 09:36:56 +08:00
|
|
|
|
2024-01-16 12:10:52 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<version>6.1.3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2024-02-05 00:54:07 +08:00
|
|
|
|
2024-01-16 12:10:52 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>5.9.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>5.9.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-10-03 06:16:13 +08:00
|
|
|
<dependency>
|
2023-11-25 11:26:36 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
2012-02-12 13:55:42 +08:00
|
|
|
</dependency>
|
2023-08-13 09:57:13 +08:00
|
|
|
<dependency>
|
2023-11-25 11:26:36 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
2023-08-13 09:57:13 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-11-25 11:26:36 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
2023-08-13 09:57:13 +08:00
|
|
|
</dependency>
|
2012-03-14 02:57:30 +08:00
|
|
|
<dependency>
|
2023-11-25 11:26:36 +08:00
|
|
|
<groupId>com.intellij</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
<version>12.0</version>
|
2012-03-14 02:57:30 +08:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-11-25 11:26:36 +08:00
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
<version>42.5.4</version>
|
2012-03-14 02:57:30 +08:00
|
|
|
</dependency>
|
2023-10-30 13:34:45 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
2023-11-25 11:26:36 +08:00
|
|
|
<version>4.0.0</version>
|
2020-11-08 03:56:38 +08:00
|
|
|
</dependency>
|
2020-11-08 06:42:00 +08:00
|
|
|
|
|
|
|
<!-- Hibernate Validator -->
|
2020-11-08 03:56:38 +08:00
|
|
|
<dependency>
|
2021-12-25 10:03:23 +08:00
|
|
|
<groupId>org.hibernate.validator</groupId>
|
2020-11-08 06:42:00 +08:00
|
|
|
<artifactId>hibernate-validator</artifactId>
|
2023-07-29 13:46:38 +08:00
|
|
|
<version>8.0.1.Final</version>
|
2020-11-08 03:56:38 +08:00
|
|
|
</dependency>
|
2009-06-08 02:59:43 +08:00
|
|
|
<dependency>
|
2023-07-29 13:46:38 +08:00
|
|
|
<groupId>jakarta.mail</groupId>
|
|
|
|
<artifactId>jakarta.mail-api</artifactId>
|
|
|
|
<version>2.1.2</version>
|
2009-06-08 02:59:43 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-08-12 09:18:40 +08:00
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
|
|
<version>8.1.0</version>
|
2009-06-08 02:59:43 +08:00
|
|
|
</dependency>
|
2023-08-17 10:35:56 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.angus</groupId>
|
|
|
|
<artifactId>jakarta.mail</artifactId>
|
2023-08-17 11:17:29 +08:00
|
|
|
<version>2.0.2</version>
|
2023-08-17 10:35:56 +08:00
|
|
|
</dependency>
|
2009-06-08 02:59:43 +08:00
|
|
|
<dependency>
|
2022-10-28 11:28:37 +08:00
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
2023-04-02 07:56:29 +08:00
|
|
|
<version>2.20.0</version>
|
2009-06-08 02:59:43 +08:00
|
|
|
</dependency>
|
2022-02-15 11:59:36 +08:00
|
|
|
<!-- https://mvnrepository.com/artifact/commons-validator/commons-validator -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-validator</groupId>
|
|
|
|
<artifactId>commons-validator</artifactId>
|
|
|
|
<version>1.7</version>
|
|
|
|
</dependency>
|
2023-07-29 13:46:38 +08:00
|
|
|
|
2024-02-04 11:37:10 +08:00
|
|
|
<!-- Connection Pool-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
|
<version>5.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
2009-06-08 02:59:43 +08:00
|
|
|
<!-- Only for test purposes -->
|
|
|
|
<dependency>
|
2012-02-22 01:22:43 +08:00
|
|
|
<groupId>org.hsqldb</groupId>
|
2009-06-08 02:59:43 +08:00
|
|
|
<artifactId>hsqldb</artifactId>
|
2023-04-02 07:56:29 +08:00
|
|
|
<version>2.7.1</version>
|
2009-06-08 02:59:43 +08:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2024-02-05 02:09:10 +08:00
|
|
|
|
2012-02-13 08:57:11 +08:00
|
|
|
<dependency>
|
2020-11-07 13:35:54 +08:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2023-07-29 13:46:38 +08:00
|
|
|
<version>2.15.1</version>
|
2021-12-25 10:03:23 +08:00
|
|
|
</dependency>
|
2023-07-29 13:46:38 +08:00
|
|
|
|
2012-02-16 12:16:51 +08:00
|
|
|
<dependency>
|
2023-07-29 13:46:38 +08:00
|
|
|
<groupId>jakarta.transaction</groupId>
|
|
|
|
<artifactId>jakarta.transaction-api</artifactId>
|
|
|
|
<version>2.0.1</version>
|
2012-02-16 12:16:51 +08:00
|
|
|
</dependency>
|
2023-07-29 13:46:38 +08:00
|
|
|
|
2018-09-15 08:50:27 +08:00
|
|
|
<dependency>
|
2022-01-05 10:20:30 +08:00
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
2023-04-02 07:56:29 +08:00
|
|
|
<version>2.11.0</version>
|
2018-09-15 08:50:27 +08:00
|
|
|
</dependency>
|
2024-02-05 00:54:07 +08:00
|
|
|
|
2018-09-15 08:50:27 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
2022-01-05 10:20:30 +08:00
|
|
|
<artifactId>fluent-hc</artifactId>
|
2023-04-02 07:56:29 +08:00
|
|
|
<version>4.5.14</version>
|
2018-09-15 08:50:27 +08:00
|
|
|
</dependency>
|
2024-03-14 12:56:29 +08:00
|
|
|
|
2024-02-05 09:21:51 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-test</artifactId>
|
|
|
|
<version>6.2.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2024-02-05 02:09:10 +08:00
|
|
|
<!-- JWT dependencies -->
|
2024-02-05 00:54:07 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
<artifactId>jjwt-api</artifactId>
|
|
|
|
<version>0.11.5</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
<artifactId>jjwt-impl</artifactId>
|
|
|
|
<version>0.11.5</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
<artifactId>jjwt-jackson</artifactId>
|
|
|
|
<version>0.11.5</version>
|
|
|
|
</dependency>
|
2009-06-08 02:59:43 +08:00
|
|
|
</dependencies>
|
2014-01-19 23:33:56 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2024-01-24 14:20:10 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
</plugin>
|
2024-01-16 12:10:52 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2024-02-04 12:25:15 +08:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>repackage</id>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<finalName>wisemapping-api</finalName>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2024-01-22 09:36:56 +08:00
|
|
|
<!-- <configuration>-->
|
|
|
|
<!-- <jvmArguments>-->
|
|
|
|
<!-- -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005-->
|
|
|
|
<!-- </jvmArguments>-->
|
|
|
|
<!-- </configuration>-->
|
2009-06-08 02:59:43 +08:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2024-02-05 02:09:10 +08:00
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>spring-snapshots</id>
|
|
|
|
<url>https://repo.spring.io/snapshot</url>
|
|
|
|
</pluginRepository>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>spring-milestones</id>
|
|
|
|
<url>https://repo.spring.io/milestone</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
2022-07-30 07:19:14 +08:00
|
|
|
</project>
|