1 Star 0 Fork 6

捷码开源(GEMOS)/gemparent

forked from 捷码/gemparent 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 13.08 KB
一键复制 编辑 原始数据 按行查看 历史
捷码 提交于 2019-03-31 20:35 +08:00 . fx
<?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.gemframe</groupId>
<artifactId>gemparent</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<modules>
<module>gem-core</module>
<module>gem-auth</module>
<!--<module>gem-anti</module>-->
<!--nail 钉子-->
<!--anti 打假-->
<!--ants 蚂蚁-->
<!--hit 打击-->
</modules>
<properties>
<!--公用版本号 -->
<gemframe-parent-version>1.0.0</gemframe-parent-version>
<gemframe-version>1.0.0</gemframe-version>
<!--Spring-->
<spring-cloud-version>Edgware.SR4</spring-cloud-version>
<spring-platform-bom-version>Brussels-SR10</spring-platform-bom-version>
<java-jdk-version>1.8</java-jdk-version>
<jedis-version>2.9.0</jedis-version>
<dozer-version>5.4.0</dozer-version>
<admin-version>1.5.7</admin-version>
<fastjson-version>1.2.7</fastjson-version>
<hutool-version>4.1.19</hutool-version>
<activiti-version>5.22.0</activiti-version>
<apache-ant-version>1.9.7</apache-ant-version>
<apache-poi-version>3.14</apache-poi-version>
<boot-mapper-version>1.1.0</boot-mapper-version>
<ganymed-ssh2-version>build210</ganymed-ssh2-version>
<alibaba-druid-version>1.1.8</alibaba-druid-version>
<tx-transaction-version>4.1.0</tx-transaction-version>
<persistence-api-version>1.0</persistence-api-version>
<elasticsearch-version>6.1.2</elasticsearch-version>
<logstash-logback-version>4.11</logstash-logback-version>
<springfox-swagger-version>2.6.1</springfox-swagger-version>
<spring-boot-maven-plugin-version>2.0.1.RELEASE</spring-boot-maven-plugin-version>
<maven-plugin-version>2.3</maven-plugin-version>
<!--字符集-->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<!--定义统一依赖关系及版本号-->
<dependencyManagement>
<dependencies>
<!--zys-start-->
<!--jedis-->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>${jedis-version}</version>
</dependency>
<!--cloud-->
<dependency>
<groupId>io.spring.platform</groupId>
<artifactId>platform-bom</artifactId>
<version>${spring-platform-bom-version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud-version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson-version}</version>
</dependency>
<!-- pojo copy -->
<dependency>
<groupId>net.sf.dozer</groupId>
<artifactId>dozer</artifactId>
<version>${dozer-version}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
<!--zys-end-->
<!--gemframe start-->
<dependency>
<groupId>cn.gemframe</groupId>
<artifactId>gem-core</artifactId>
<version>${gemframe-version}</version>
</dependency>
<dependency>
<groupId>cn.gemframe</groupId>
<artifactId>gem-work-bean</artifactId>
<version>${gemframe-version}</version>
</dependency>
<!--gemframe end-->
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>${apache-ant-version}</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool-version}</version>
</dependency>
<dependency>
<groupId>ch.ethz.ganymed</groupId>
<artifactId>ganymed-ssh2</artifactId>
<version>${ganymed-ssh2-version}</version>
</dependency>
<!--admin-->
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-client</artifactId>
<version>${admin-version}</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>${apache-poi-version}</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>${apache-poi-version}</version><!--$NO-MVN-MAN-VER$ -->
</dependency>
<!--elasticsearch logs-->
<dependency>
<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
<version>${logstash-logback-version}</version>
</dependency>
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>${elasticsearch-version}</version>
</dependency>
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>transport</artifactId>
<version>${elasticsearch-version}</version>
<exclusions>
<exclusion>
<artifactId>org.elasticsearch</artifactId>
<groupId>elasticsearch</groupId>
</exclusion>
</exclusions>
</dependency>
<!--mybatis、druid-->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>${alibaba-druid-version}</version>
</dependency>
<dependency>
<groupId>tk.mybatis</groupId>
<artifactId>mapper-spring-boot-starter</artifactId>
<version>${boot-mapper-version}</version>
</dependency>
<!--分页帮助类-->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>${boot-mapper-version}</version>
</dependency>
<!--office-->
<dependency>
<groupId>cn.gemframe</groupId>
<artifactId>gem-common-cells</artifactId>
<version>0.0.2</version>
</dependency>
<dependency>
<groupId>cn.gemframe</groupId>
<artifactId>gem-common-words</artifactId>
<version>0.0.2</version>
</dependency>
<dependency>
<groupId>cn.gemframe</groupId>
<artifactId>gem-common-ppt</artifactId>
<version>0.0.2</version>
</dependency>
<dependency>
<groupId>cn.gemframe</groupId>
<artifactId>gem-anti</artifactId>
<version>${gemframe-parent-version}</version>
</dependency>
<!--persistence-->
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>${persistence-api-version}</version>
</dependency>
<!--swagger-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>${springfox-swagger-version}</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>${springfox-swagger-version}</version>
</dependency>
<!--transaction 分布式事务-->
<dependency>
<groupId>com.codingapi</groupId>
<artifactId>transaction-springcloud</artifactId>
<version>${tx-transaction-version}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.codingapi</groupId>
<artifactId>tx-plugins-db</artifactId>
<version>${tx-transaction-version}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.codingapi</groupId>
<artifactId>tx-client</artifactId>
<version>${tx-transaction-version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<!--定义子模块强制依赖-->
<dependencies>
<dependency>
<groupId>cn.gemframe</groupId>
<artifactId>gem-anti</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies>
<!--下载构件-->
<repositories>
<!--gem公共仓库(包含gem-releases、maven中央仓库、阿里云镜像)-->
<repository>
<id>maven-public</id>
<name>maven-public</name>
<url>http://maven.gemframe.cn/repository/maven-public/</url>
</repository>
<!--maven中央仓库gem代理-->
<repository>
<id>maven-central</id>
<name>maven-central</name>
<url>http://maven.gemframe.cn/repository/maven-central/</url>
</repository>
<!--阿里巴巴镜像-->
<repository>
<id>Aliyun-Central-Mirror-Nexus</id>
<name>Aliyun central mirror maven repository via Nexus</name>
<url>http://maven.aliyun.com/nexus/content/groups/central/</url>
</repository>
<!--Spring快照-->
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/libs-snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<!--插件下载-->
<pluginRepositories>
<pluginRepository>
<id>maven-public</id>
<name>maven-public</name>
<url>http://maven.gemframe.cn/repository/maven-public/</url>
</pluginRepository>
</pluginRepositories>
<!--分发构件-->
<distributionManagement>
<repository>
<id>releases</id>
<name>Internal Releases</name>
<url>http://maven.gemframe.cn/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>Internal Snapshots</name>
<url>http://maven.gemframe.cn/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java-jdk-version}</source>
<target>${java-jdk-version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${maven-plugin-version}</version>
<configuration>
<generateBackupPoms>false</generateBackupPoms>
</configuration>
</plugin>
</plugins>
<defaultGoal>compile</defaultGoal>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/gemos/gemparent.git
git@gitee.com:gemos/gemparent.git
gemos
gemparent
gemparent
master

搜索帮助