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-01-16 12:10:52 +08:00
|
|
|
<version>3.2.1</version>
|
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
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>
|
|
|
|
<artifactId>wise-webapp</artifactId>
|
|
|
|
<version>5.1.0-SNAPSHOT</version>
|
|
|
|
|
|
|
|
<name>WiseMapping Webapp</name>
|
|
|
|
<url>http://www.wisemapping.org</url>
|
|
|
|
|
2012-02-12 13:55:42 +08:00
|
|
|
<properties>
|
2023-11-25 11:26:36 +08:00
|
|
|
<com.wisemapping.version>5.1.0-SNAPSHOT</com.wisemapping.version>
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
<org.springframework.version>6.0.11</org.springframework.version>
|
|
|
|
<org.springframework.addons>6.1.2</org.springframework.addons>
|
2023-07-29 13:46:38 +08:00
|
|
|
<spring-security-taglibs.version>6.0.2</spring-security-taglibs.version>
|
2012-02-12 13:55:42 +08:00
|
|
|
</properties>
|
|
|
|
|
2009-06-08 02:59:43 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.wisemapping</groupId>
|
2021-12-25 10:03:23 +08:00
|
|
|
<artifactId>wise-ui</artifactId>
|
2012-02-12 13:55:42 +08:00
|
|
|
<version>${com.wisemapping.version}</version>
|
2012-02-01 11:03:32 +08:00
|
|
|
<type>war</type>
|
2009-06-08 02:59:43 +08:00
|
|
|
</dependency>
|
|
|
|
<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
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
|
|
<!-- <artifactId>spring-boot-devtools</artifactId>-->
|
|
|
|
<!-- <optional>true</optional>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
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>
|
|
|
|
<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>
|
2023-11-28 13:08:28 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
<artifactId>tomcat-embed-jasper</artifactId>
|
|
|
|
<version>10.1.9</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2012-03-14 02:57:30 +08:00
|
|
|
<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>
|
2022-02-20 04:39:38 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-taglibs</artifactId>
|
|
|
|
<version>${spring-security-taglibs.version}</version>
|
|
|
|
</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>
|
|
|
|
<dependency>
|
2022-01-17 12:01:56 +08:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-dbcp2</artifactId>
|
|
|
|
<version>2.9.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
|
|
|
|
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>
|
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
|
|
|
|
2014-07-14 13:43:24 +08:00
|
|
|
<dependency>
|
2023-07-29 13:46:38 +08:00
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
|
|
|
<version>6.0.0</version>
|
2021-12-25 10:03:23 +08:00
|
|
|
<scope>provided</scope>
|
2020-11-07 13:35:54 +08:00
|
|
|
</dependency>
|
2023-08-01 12:01:33 +08:00
|
|
|
<!-- JSLT implementation -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.servlet.jsp.jstl</groupId>
|
|
|
|
<artifactId>jakarta.servlet.jsp.jstl-api</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.web</groupId>
|
|
|
|
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</dependency>
|
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>
|
|
|
|
<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>
|
2023-07-29 13:46:38 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-config</artifactId>
|
|
|
|
<version>${org.springframework.addons}</version>
|
|
|
|
</dependency>
|
2023-11-28 13:08:28 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>RELEASE</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2009-06-08 02:59:43 +08:00
|
|
|
</dependencies>
|
2014-01-19 23:33:56 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2024-01-16 12:10:52 +08:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
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>
|
2022-07-30 07:19:14 +08:00
|
|
|
</project>
|