1 Star 0 Fork 420

oschina_binggo / api-boot

forked from minbox-projects / api-boot 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.21 KB
一键复制 编辑 原始数据 按行查看 历史
恒宇少年 提交于 2019-12-17 09:07 . 创建2.2.2-SNAPSHOT快照版本
<?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>
<parent>
<groupId>org.minbox.framework</groupId>
<artifactId>oss-parent</artifactId>
<version>0.1.0.RELEASE</version>
<relativePath>../oss-parent</relativePath>
</parent>
<packaging>pom</packaging>
<modules>
<module>api-boot-project</module>
<module>api-boot-samples</module>
</modules>
<groupId>org.minbox.framework</groupId>
<artifactId>api-boot</artifactId>
<version>${revision}</version>
<name>api-boot</name>
<properties>
<revision>2.2.2-SNAPSHOT</revision>
<maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version>
<jdk.version>1.8</jdk.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
</properties>
<description>
ApiBoot是一款基于SpringBoot1.x、2.x的接口服务集成基础框架,
内部提供了第三方框架的封装集成,让接口开发者可以选择性完成开箱即用,
不再为搭建接口框架而犯愁,从而极大的提高开发效率。
</description>
<url>https://gitee.com/minbox-projects/api-boot</url>
<build>
<plugins>
<!--jdk version-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.1.0</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</project>
Java
1
https://gitee.com/lhch/api-boot.git
git@gitee.com:lhch/api-boot.git
lhch
api-boot
api-boot
master

搜索帮助