You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
183 lines
6.3 KiB
183 lines
6.3 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<groupId>com.despisctionsystem</groupId> |
|
<artifactId>code4</artifactId> |
|
<version>0.0.1-SNAPSHOT</version> |
|
<name>code4</name> |
|
<description>code4</description> |
|
|
|
<properties> |
|
<java.version>1.8</java.version> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
<spring-boot.version>2.3.7.RELEASE</spring-boot.version> |
|
</properties> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
<version>3.0.0</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-thymeleaf</artifactId> |
|
<version>3.0.0</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-aop</artifactId> |
|
<version>3.0.0</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.hibernate.validator</groupId> |
|
<artifactId>hibernate-validator</artifactId> |
|
<version>8.0.0.Final</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>jakarta.validation</groupId> |
|
<artifactId>jakarta.validation-api</artifactId> |
|
<version>3.0.0</version> |
|
</dependency> |
|
|
|
|
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<version>1.18.24</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
<version>3.0.0</version> |
|
<scope>test</scope> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.junit.vintage</groupId> |
|
<artifactId>junit-vintage-engine</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.mybatis.spring.boot</groupId> |
|
<artifactId>mybatis-spring-boot-starter</artifactId> |
|
<version>3.0.0</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.baomidou</groupId> |
|
<artifactId>mybatis-plus-boot-starter</artifactId> |
|
<version>3.5.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>mysql</groupId> |
|
<artifactId>mysql-connector-java</artifactId> |
|
<version>8.0.30</version> |
|
<scope>runtime</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.fasterxml.jackson.module</groupId> |
|
<artifactId>jackson-module-kotlin</artifactId> |
|
<version>2.14.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.ant</groupId> |
|
<artifactId>ant</artifactId> |
|
<version>1.10.12</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.jayway.jsonpath</groupId> |
|
<artifactId>json-path</artifactId> |
|
<version>2.7.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-configuration-processor</artifactId> |
|
<version>3.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.vaadin.external.google</groupId> |
|
<artifactId>android-json</artifactId> |
|
<version>0.0.20131108.vaadin1</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.validation</groupId> |
|
<artifactId>validation-api</artifactId> |
|
<version>2.0.1.Final</version> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-dependencies</artifactId> |
|
<version>${spring-boot.version}</version> |
|
<type>pom</type> |
|
<scope>import</scope> |
|
</dependency> |
|
</dependencies> |
|
</dependencyManagement> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.8.1</version> |
|
<configuration> |
|
<source>1.8</source> |
|
<target>1.8</target> |
|
<encoding>UTF-8</encoding> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<version>2.3.7.RELEASE</version> |
|
<configuration> |
|
<mainClass>com.despisctionsystem.code4.Code4Application</mainClass> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>repackage</id> |
|
<goals> |
|
<goal>repackage</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
|
|
<resources> |
|
<resource> |
|
<directory>src/main/java</directory> |
|
<includes> |
|
<include>**/*.xml</include> |
|
<include>**/*.properties</include> |
|
</includes> |
|
<filtering>false</filtering> |
|
</resource> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<includes> |
|
<include>**/*.xml</include> |
|
<include>**/*.properties</include> |
|
</includes> |
|
<filtering>false</filtering> |
|
</resource> |
|
</resources> |
|
</build> |
|
|
|
</project>
|
|
|