当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 0 Fork 134

费杰 / roses-biz-support
关闭

forked from stylefeng-Roses / roses-biz-support
关闭
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 7.28 KB
一键复制 编辑 原始数据 按行查看 历史
stylefeng 提交于 2019-03-04 12:46 . 升级1.1.5 更新mp版本3.1.0
<?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.stylefeng.roses</groupId>
<artifactId>roses-biz-support</artifactId>
<version>1.1.5</version>
<packaging>pom</packaging>
<name>roses-biz-support</name>
<description>业务支持,字典,文件,日志</description>
<url>https://gitee.com/stylefeng/roses</url>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.1.RELEASE</version>
</parent>
<modules>
<module>modular-dict</module>
<module>modular-file</module>
<module>modular-log</module>
</modules>
<properties>
<java.version>1.8</java.version>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<lombok.version>1.18.0</lombok.version>
<mp.version>3.1.0</mp.version>
</properties>
<dependencyManagement>
<dependencies>
<!--本项目的依赖管理-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>biz-support-dict-api</artifactId>
<version>1.1.5</version>
</dependency>
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>biz-support-file-api</artifactId>
<version>1.1.5</version>
</dependency>
<!--本框架的依赖管理-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>kernel-core</artifactId>
<version>1.1.5</version>
</dependency>
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>kernel-logger</artifactId>
<version>1.1.5</version>
</dependency>
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>kernel-model</artifactId>
<version>1.1.5</version>
</dependency>
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>kernel-scanner</artifactId>
<version>1.1.5</version>
</dependency>
<!--spring cloud-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Finchley.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>kernel-model</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-annotation</artifactId>
<version>${mp.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!--web ,**注意可选**-->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
</build>
<developers>
<developer>
<name>stylefeng</name>
<email>sn93@qq.com</email>
</developer>
</developers>
<scm>
<connection>scm:git@gitee.com:stylefeng-Roses/roses-biz-support.git</connection>
<developerConnection>scm:git@gitee.com:stylefeng-Roses/roses-biz-support.git</developerConnection>
<url>https://gitee.com/stylefeng-Roses/roses-biz-support</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>center</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>center</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/fjppc/roses-biz-support.git
git@gitee.com:fjppc/roses-biz-support.git
fjppc
roses-biz-support
roses-biz-support
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891