1 Star 0 Fork 36

徐龙/Fast-boot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 6.14 KB
一键复制 编辑 原始数据 按行查看 历史
<?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>
<packaging>pom</packaging>
<groupId>cn.jiangzeyin.fast-boot</groupId>
<artifactId>common-parent</artifactId>
<version>1.1.23</version>
<name>Fast-boot</name>
<url>http://blog.csdn.net/jiangzeyin_</url>
<description>Spring Boot fast-boot</description>
<inceptionYear>2017</inceptionYear>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<fastjson.version>1.2.47</fastjson.version>
<simple-util.version>1.0.12</simple-util.version>
<common-boot.version>1.1.23</common-boot.version>
<common-redis.version>1.1.23</common-redis.version>
<spring-boot.version>1.4.7.RELEASE</spring-boot.version>
<hutool-all.version>4.1.7</hutool-all.version>
</properties>
<modules>
<module>common-boot</module>
<module>common-redis</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>cn.jiangzeyin</groupId>
<artifactId>simple-util</artifactId>
<version>${simple-util.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
</dependency>
<dependency>
<groupId>cn.jiangzeyin.fast-boot</groupId>
<artifactId>common-boot</artifactId>
<version>${common-boot.version}</version>
</dependency>
<dependency>
<groupId>cn.jiangzeyin.fast-boot</groupId>
<artifactId>common-redis</artifactId>
<version>${common-redis.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<!-- 编译插件, 设定JDK版本 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
<compilerArguments>
<verbose/>
<bootclasspath>${java.home}/lib/rt.jar;${java.home}/lib/jce.jar</bootclasspath>
</compilerArguments>
</configuration>
</plugin>
<!-- source插件,打包源码 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>attach-javadoc</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- GPG -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>verify-gpg</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!--surefire插件,避免mvn test console乱码-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>once</forkMode>
<argLine>-Dfile.encoding=UTF-8</argLine>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>maven-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>maven-repo</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<!--<repository>-->
<!--<id>yokead-loc-repo</id>-->
<!--<url>http://bwcx:4040/repository/yokead/</url>-->
<!--</repository>-->
</distributionManagement>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<tag>master</tag>
<url>[email protected]:jiangzeyin/common-boot.git</url>
<connection>scm:git:[email protected]:jiangzeyin/common-boot.git</connection>
<developerConnection>scm:git:[email protected]:jiangzeyin/common-boot.git</developerConnection>
</scm>
<developers>
<developer>
<name>jiangzeyin</name>
<email>[email protected]</email>
<organization>bwcx_jzy</organization>
</developer>
</developers>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/xulong2005/common-parent.git
[email protected]:xulong2005/common-parent.git
xulong2005
common-parent
Fast-boot
master

搜索帮助