165 lines
6.0 KiB
XML
165 lines
6.0 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">
|
||
<parent>
|
||
<artifactId>tenlion-module</artifactId>
|
||
<groupId>cn.com.tenlion</groupId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>module-data-house</artifactId>
|
||
|
||
<properties>
|
||
<springframework.version>2.5.4</springframework.version>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<artifactId>interface-data-house</artifactId>
|
||
<groupId>cn.com.tenlion</groupId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>ink.wgink</groupId>
|
||
<artifactId>module-file</artifactId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>ink.wgink</groupId>
|
||
<artifactId>module-dictionary</artifactId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework</groupId>
|
||
<artifactId>spring-test</artifactId>
|
||
<version>5.3.3</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.apache.httpcomponents</groupId>
|
||
<artifactId>httpcore</artifactId>
|
||
<version>4.4.10</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.httpcomponents</groupId>
|
||
<artifactId>httpclient</artifactId>
|
||
<version>4.5.6</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.quartz-scheduler</groupId>
|
||
<artifactId>quartz</artifactId>
|
||
<version>2.2.1</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.github.binarywang</groupId>
|
||
<artifactId>java-emoji-converter</artifactId>
|
||
<version>0.1.1</version>
|
||
</dependency>
|
||
<!-- mongodb start -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
||
<version>${springframework.version}</version>
|
||
</dependency>
|
||
<!-- mongodb end -->
|
||
<!-- redis start -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
<version>${springframework.version}</version>
|
||
</dependency>
|
||
<!-- redis end -->
|
||
|
||
<dependency>
|
||
<groupId>com.google.code.gson</groupId>
|
||
<artifactId>gson</artifactId>
|
||
<version>2.8.5</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.kafka</groupId>
|
||
<artifactId>spring-kafka</artifactId>
|
||
<version>2.2.0.RELEASE</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<version>1.16.10</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-websocket</artifactId>
|
||
<version>${springframework.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<artifactId>module-freemarker</artifactId>
|
||
<groupId>cn.com.tenlion</groupId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.com.tenlion</groupId>
|
||
<artifactId>module-config-content</artifactId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<artifactId>groovy-all</artifactId>
|
||
<groupId>org.codehaus.groovy</groupId>
|
||
<version>3.0.9</version>
|
||
<type>pom</type>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.com.tenlion</groupId>
|
||
<artifactId>module-project-config</artifactId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.codehaus.gmavenplus</groupId>
|
||
<artifactId>gmavenplus-plugin</artifactId>
|
||
<version>1.6.1</version>
|
||
<configuration>
|
||
<sourceEncoding>UTF-8</sourceEncoding>
|
||
<sources>
|
||
<source>
|
||
<directory>${project.basedir}/src/main/java/cn/com/tenlion/datahouse/groovy</directory>
|
||
<includes>
|
||
<include>**/*.groovy</include>
|
||
</includes>
|
||
</source>
|
||
</sources>
|
||
<testSources>
|
||
<testSource>
|
||
<directory>${project.basedir}/src/main/test/cn/com/tenlion/datahouse/groovy</directory>
|
||
<includes>
|
||
<include>**/*.groovy</include>
|
||
</includes>
|
||
</testSource>
|
||
</testSources>
|
||
<!-- 用maven编译时需要加encoding:mvn -Dfile.encoding=UTF-8 compile -->
|
||
</configuration>
|
||
<executions>
|
||
<execution>
|
||
<goals>
|
||
<goal>addSources</goal>
|
||
<goal>addTestSources</goal>
|
||
<goal>compile</goal>
|
||
<goal>compileTests</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
</project> |