hmily/hmily-core/pom.xml

110 lines
3.3 KiB
XML
Raw Normal View History

2017-09-28 14:37:13 +08:00
<?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>
2018-11-16 16:46:18 +08:00
<artifactId>hmily</artifactId>
<groupId>org.dromara</groupId>
2018-09-27 14:33:43 +08:00
<version>1.2.1-RELEASE</version>
2017-09-28 14:37:13 +08:00
</parent>
<modelVersion>4.0.0</modelVersion>
2018-11-16 16:46:18 +08:00
<artifactId>hmily-core</artifactId>
<name>hmily-core</name>
2017-09-28 14:37:13 +08:00
<packaging>jar</packaging>
2018-11-16 16:46:18 +08:00
2017-09-28 14:37:13 +08:00
<dependencies>
2018-11-16 16:46:18 +08:00
2017-09-28 14:37:13 +08:00
<dependency>
2018-11-16 16:46:18 +08:00
<groupId>org.dromara</groupId>
<artifactId>hmily-common</artifactId>
2017-09-28 14:37:13 +08:00
</dependency>
2018-11-16 16:46:18 +08:00
2017-09-28 14:37:13 +08:00
<dependency>
2018-11-16 16:46:18 +08:00
<groupId>org.dromara</groupId>
<artifactId>hmily-annotation</artifactId>
2017-09-28 14:37:13 +08:00
</dependency>
2018-11-16 16:46:18 +08:00
2017-09-28 14:37:13 +08:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
2017-09-28 14:37:13 +08:00
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb</artifactId>
</dependency>
2018-08-22 17:56:41 +08:00
2017-09-28 14:37:13 +08:00
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.10.8</version>
<scope>test</scope>
</dependency>
2018-08-22 17:56:41 +08:00
2017-09-28 14:37:13 +08:00
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito</artifactId>
<version>1.6.1</version>
<scope>test</scope>
</dependency>
2018-08-22 17:56:41 +08:00
2017-09-28 14:37:13 +08:00
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>1.6.1</version>
<scope>test</scope>
</dependency>
2017-11-08 16:09:50 +08:00
2017-09-28 14:37:13 +08:00
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
</dependency>
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
</dependency>
2018-03-07 11:53:49 +08:00
<dependency>
<groupId>com.lmax</groupId>
<artifactId>disruptor</artifactId>
</dependency>
2017-09-28 14:37:13 +08:00
</dependencies>
2018-11-16 16:46:18 +08:00
2017-09-28 14:37:13 +08:00
<build>
2018-11-16 16:46:18 +08:00
<finalName>hmily-core</finalName>
2017-09-28 14:37:13 +08:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>