135 lines
4.9 KiB
XML
135 lines
4.9 KiB
XML
<?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>
|
|
|
|
<groupId>cn.cloudowr</groupId>
|
|
<artifactId>upgram</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<properties>
|
|
<kotlin.version>1.1.4</kotlin.version>
|
|
<pippo.version>1.5.0</pippo.version>
|
|
</properties>
|
|
<repositories>
|
|
<repository>
|
|
<id>central</id>
|
|
<url>http://jcenter.bintray.com</url>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>ro.pippo</groupId>
|
|
<artifactId>pippo-core</artifactId>
|
|
<version>${pippo.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ro.pippo</groupId>
|
|
<artifactId>pippo-controller</artifactId>
|
|
<version>${pippo.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ro.pippo</groupId>
|
|
<artifactId>pippo-jackson</artifactId>
|
|
<version>${pippo.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ro.pippo</groupId>
|
|
<artifactId>pippo-session-cookie</artifactId>
|
|
<version>${pippo.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ro.pippo</groupId>
|
|
<artifactId>pippo-jetty</artifactId>
|
|
<version>${pippo.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
<version>1.7.13</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>6.0.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.37</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-stdlib-jre8</artifactId>
|
|
<version>${kotlin.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid</artifactId>
|
|
<version>1.1.3</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<!--<plugin>-->
|
|
<!--<groupId>org.jetbrains.kotlin</groupId>-->
|
|
<!--<artifactId>kotlin-maven-plugin</artifactId>-->
|
|
<!--<version>${kotlin.version}</version>-->
|
|
<!--<executions>-->
|
|
<!--<execution>-->
|
|
<!--<id>compile</id>-->
|
|
<!--<phase>compile</phase>-->
|
|
<!--<goals>-->
|
|
<!--<goal>compile</goal>-->
|
|
<!--</goals>-->
|
|
<!--</execution>-->
|
|
<!--<execution>-->
|
|
<!--<id>test-compile</id>-->
|
|
<!--<phase>test-compile</phase>-->
|
|
<!--<goals>-->
|
|
<!--<goal>test-compile</goal>-->
|
|
<!--</goals>-->
|
|
<!--</execution>-->
|
|
<!--</executions>-->
|
|
<!--<configuration>-->
|
|
<!--<jvmTarget>1.8</jvmTarget>-->
|
|
<!--</configuration>-->
|
|
<!--</plugin>-->
|
|
<plugin>
|
|
<artifactId>kotlin-maven-plugin</artifactId>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<version>${kotlin.version}</version>
|
|
|
|
<executions>
|
|
<execution>
|
|
<id>compile</id>
|
|
<goals> <goal>compile</goal> </goals>
|
|
</execution>
|
|
|
|
<execution>
|
|
<id>test-compile</id>
|
|
<goals> <goal>test-compile</goal> </goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
<includeScope>runtime</includeScope>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |