<?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 http://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.1.3.RELEASE</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
<groupId>com.safeluck</groupId>
|
<artifactId>springboot-maven-root</artifactId>
|
<version>1.01</version>
|
<packaging>pom</packaging>
|
|
<properties>
|
<java.version>1.8</java.version>
|
<kotlin.version>1.3.41</kotlin.version>
|
</properties>
|
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-aop</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-cache</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
<!--<exclusions>-->
|
<!--<exclusion>-->
|
<!--<groupId>org.springframework.boot</groupId>-->
|
<!--<artifactId>spring-boot-starter-logging</artifactId>-->
|
<!--</exclusion>-->
|
<!--</exclusions>-->
|
</dependency>
|
<!--<dependency>-->
|
<!--<groupId>org.springframework.boot</groupId>-->
|
<!--<artifactId>spring-boot-starter-log4j</artifactId>-->
|
<!--<version>1.3.8.RELEASE</version>-->
|
<!--</dependency>-->
|
<dependency>
|
<groupId>com.fasterxml.jackson.module</groupId>
|
<artifactId>jackson-module-kotlin</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.jetbrains.kotlin</groupId>
|
<artifactId>kotlin-reflect</artifactId>
|
<version>${kotlin.version}</version>
|
|
</dependency>
|
<dependency>
|
<groupId>org.jetbrains.kotlin</groupId>
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
<version>${kotlin.version}</version>
|
|
</dependency>
|
|
<!--<dependency>-->
|
<!--<groupId>org.springframework.boot</groupId>-->
|
<!--<artifactId>spring-boot-devtools</artifactId>-->
|
<!--<scope>runtime</scope>-->
|
<!--<optional>true</optional>-->
|
<!--</dependency>-->
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>8.0.18</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
<!--<scope>provided</scope>-->
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid</artifactId>
|
<version>1.1.14</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>${commons-lang3.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-collections4</artifactId>
|
<version>4.0</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-collections</groupId>
|
<artifactId>commons-collections</artifactId>
|
<version>3.2.1</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-codec</groupId>
|
<artifactId>commons-codec</artifactId>
|
<version>1.7</version>
|
</dependency>
|
|
<dependency>
|
<groupId>io.netty</groupId>
|
<artifactId>netty</artifactId>
|
<version>3.7.0.Final</version>
|
</dependency>
|
<dependency>
|
<groupId>com.github.sgroschupf</groupId>
|
<artifactId>zkclient</artifactId>
|
<version>0.1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.zookeeper</groupId>
|
<artifactId>zookeeper</artifactId>
|
<version>3.4.13</version>
|
</dependency>
|
<dependency>
|
<groupId>com.google.guava</groupId>
|
<artifactId>guava</artifactId>
|
<version>22.0</version>
|
</dependency>
|
<dependency>
|
<groupId>redis.clients</groupId>
|
<artifactId>jedis</artifactId>
|
<version>2.9.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
<artifactId>caffeine</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.google.code.gson</groupId>
|
<artifactId>gson</artifactId>
|
<version>2.6.2</version>
|
</dependency>
|
<dependency>
|
<groupId>joda-time</groupId>
|
<artifactId>joda-time</artifactId>
|
<version>2.3</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-beanutils</groupId>
|
<artifactId>commons-beanutils</artifactId>
|
<version>1.8.3</version>
|
<exclusions>
|
<exclusion>
|
<groupId>commons-logging</groupId>
|
<artifactId>commons-logging</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>org.reflections</groupId>
|
<artifactId>reflections</artifactId>
|
<version>0.9.11</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.6</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.5.3</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpmime</artifactId>
|
<version>4.5.3</version>
|
</dependency>
|
<dependency>
|
<groupId>org.json</groupId>
|
<artifactId>json</artifactId>
|
<version>20170516</version>
|
</dependency>
|
<dependency>
|
<groupId>javax.persistence</groupId>
|
<artifactId>javax.persistence-api</artifactId>
|
<version>2.2</version>
|
</dependency>
|
|
</dependencies>
|
<!--<repositories>-->
|
<!--<repository>-->
|
<!--<id>central</id>-->
|
<!--<name>Central Repository</name>-->
|
<!--<url>http://maven.aliyun.com/nexus/content/groups/public/</url>-->
|
<!--<snapshots>-->
|
<!--<enabled>false</enabled>-->
|
<!--</snapshots>-->
|
<!--</repository>-->
|
<!--</repositories>-->
|
|
<build>
|
<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
|
<testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
|
<plugins>
|
<plugin >
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<inherited>false</inherited>
|
</plugin>
|
<plugin>
|
<groupId>org.jetbrains.kotlin</groupId>
|
<artifactId>kotlin-maven-plugin</artifactId>
|
|
<configuration>
|
|
<args>
|
<arg>-Xjsr305=strict</arg>
|
</args>
|
<compilerPlugins>
|
<plugin>spring</plugin>
|
</compilerPlugins>
|
|
</configuration>
|
<dependencies>
|
<dependency>
|
<groupId>org.jetbrains.kotlin</groupId>
|
<artifactId>kotlin-maven-allopen</artifactId>
|
<version>${kotlin.version}</version>
|
</dependency>
|
</dependencies>
|
</plugin>
|
|
</plugins>
|
</build>
|
|
<distributionManagement>
|
<repository>
|
<id>nexus-releases</id>
|
<name>libs-releases</name>
|
<url>http://192.168.0.36:10010/repository/maven-releases/</url>
|
</repository>
|
<snapshotRepository>
|
<id>nexus-snapshots</id>
|
<name>libs-snapshots</name>
|
<url>http://192.168.0.36:10010/repository/maven-snapshots/</url>
|
</snapshotRepository>
|
</distributionManagement>
|
|
</project>
|