|
|
|
@@ -0,0 +1,115 @@ |
|
|
|
<?xml version="1.0" encoding="UTF-8"?> |
|
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
|
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
|
|
|
|
<!-- <parent>--> |
|
|
|
<!-- <groupId>org.springframework.boot</groupId>--> |
|
|
|
<!-- <artifactId>spring-boot-starter-parent</artifactId>--> |
|
|
|
<!-- <version>2.4.2</version>--> |
|
|
|
<!-- </parent>--> |
|
|
|
|
|
|
|
<groupId>com.moze</groupId> |
|
|
|
<artifactId>rms</artifactId> |
|
|
|
<version>0.0.1-SNAPSHOT</version> |
|
|
|
<packaging>jar</packaging> |
|
|
|
<name>rms</name> |
|
|
|
|
|
|
|
<properties> |
|
|
|
<java.version>1.8</java.version> |
|
|
|
<project.mainClass>com.moze.rms.RmsApplication</project.mainClass> |
|
|
|
<maven.compiler.source>1.8</maven.compiler.source> |
|
|
|
<maven.compiler.target>1.8</maven.compiler.target> |
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
|
|
|
|
|
|
|
|
|
|
</properties> |
|
|
|
<!--取代parent--> |
|
|
|
<dependencyManagement> |
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-dependencies</artifactId> |
|
|
|
<version>2.4.2</version> |
|
|
|
<type>pom</type> |
|
|
|
<scope>import</scope> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>org.jdbi</groupId> |
|
|
|
<artifactId>jdbi3-bom</artifactId> |
|
|
|
<version>3.18.0</version> |
|
|
|
<type>pom</type> |
|
|
|
<scope>import</scope> |
|
|
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
</dependencyManagement> |
|
|
|
|
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-web</artifactId> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-starter-test</artifactId> |
|
|
|
<scope>test</scope> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>org.jdbi</groupId> |
|
|
|
<artifactId>jdbi3-core</artifactId> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.jdbi</groupId> |
|
|
|
<artifactId>jdbi3-sqlobject</artifactId> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.jdbi</groupId> |
|
|
|
<artifactId>jdbi3-postgres</artifactId> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.jdbi</groupId> |
|
|
|
<artifactId>jdbi3-spring4</artifactId> |
|
|
|
</dependency> |
|
|
|
<dependency> |
|
|
|
<groupId>org.jdbi</groupId> |
|
|
|
<artifactId>jdbi3-json</artifactId> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>org.postgresql</groupId> |
|
|
|
<artifactId>postgresql</artifactId> |
|
|
|
<version>42.2.18</version> |
|
|
|
</dependency> |
|
|
|
|
|
|
|
<dependency> |
|
|
|
<groupId>org.projectlombok</groupId> |
|
|
|
<artifactId>lombok</artifactId> |
|
|
|
<version>1.18.16</version> |
|
|
|
<optional>true</optional> |
|
|
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
|
|
|
|
<build> |
|
|
|
<plugins> |
|
|
|
<plugin> |
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
|
|
<configuration> |
|
|
|
<mainClass>${project.mainClass}</mainClass> |
|
|
|
<excludes> |
|
|
|
<exclude> |
|
|
|
<groupId>org.projectlombok</groupId> |
|
|
|
<artifactId>lombok</artifactId> |
|
|
|
</exclude> |
|
|
|
</excludes> |
|
|
|
</configuration> |
|
|
|
</plugin> |
|
|
|
</plugins> |
|
|
|
</build> |
|
|
|
|
|
|
|
</project> |