1 Star 0 Fork 3

ant / cola-example-trade

forked from dfghhj / cola-example-trade 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 6.29 KB
一键复制 编辑 原始数据 按行查看 历史
feifeng 提交于 2020-10-22 11:23 . init & first commit
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>top.dfghhj</groupId>
<artifactId>cola-example-trade</artifactId>
<packaging>pom</packaging>
<version>1.0.0-SNAPSHOT</version>
<name>cola-example-trade</name>
<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<mybatis-starter.version>1.3.1</mybatis-starter.version>
<spring-boot.version>2.1.3.RELEASE</spring-boot.version>
<cola.framework.version>3.0.1</cola.framework.version>
</properties>
<dependencyManagement>
<dependencies>
<!--Framework-->
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>cola-common</artifactId>
<version>${cola.framework.version}</version>
</dependency>
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>cola-core</artifactId>
<version>${cola.framework.version}</version>
</dependency>
<!--Framework End-->
<!--Project modules-->
<dependency>
<groupId>top.dfghhj</groupId>
<artifactId>cola-example-trade-controller</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>top.dfghhj</groupId>
<artifactId>cola-example-trade-client</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>top.dfghhj</groupId>
<artifactId>cola-example-trade-app</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>top.dfghhj</groupId>
<artifactId>cola-example-trade-domain</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>top.dfghhj</groupId>
<artifactId>cola-example-trade-infrastructure</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<!--Project modules End-->
<!--Spring Boot-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>${mybatis-starter.version}</version>
</dependency>
<!--Spring Boot End-->
<!--Validation API-->
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>2.0.0.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>6.0.7.Final</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>javax.el</artifactId>
<version>2.2.6</version>
</dependency>
<!--Validation API End -->
<!-- Misc -->
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.10</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.12.6</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.55</version>
</dependency>
<!-- Misc End -->
<!-- rocketmq -->
<dependency>
<groupId>org.apache.rocketmq</groupId>
<artifactId>rocketmq-spring-boot-starter</artifactId>
<version>2.1.0</version>
</dependency>
<!-- rocketmq -->
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules> <module>cola-example-trade-client</module>
<module>cola-example-trade-controller</module>
<module>cola-example-trade-app</module>
<module>cola-example-trade-domain</module>
<module>cola-example-trade-infrastructure</module>
<module>start</module>
</modules>
</project>
Java
1
https://gitee.com/ant-chn/cola-example-trade.git
git@gitee.com:ant-chn/cola-example-trade.git
ant-chn
cola-example-trade
cola-example-trade
master

搜索帮助