221 Star 1.5K Fork 420

minbox-projects / api-boot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.37 KB
一键复制 编辑 原始数据 按行查看 历史
恒宇少年 提交于 2022-04-24 13:43 . :bookmark:创建2.3.9快照版本
<?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>minbox-parent</artifactId>
<version>1.0.9</version>
<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-build</artifactId>
<version>${revision}</version>
<name>ApiBoot Build</name>
<properties>
<revision>2.3.9-SNAPSHOT</revision>
<jdk.version>1.8</jdk.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
<cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version>
</properties>
<description>
ApiBoot is a component service solution.
</description>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<developers>
<developer>
<id>hengboy</id>
<name>恒宇少年 - 于起宇</name>
<url>https://blog.yuqiyu.com</url>
<organization>minbox-projects</organization>
<organizationUrl>https://gitee.com/minbox-projects</organizationUrl>
<email>hengboy@minbox.org</email>
</developer>
</developers>
<!--配置拉取仓库地址-->
<repositories>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>aliyun-central</id>
<url>https://maven.aliyun.com/repository/central</url>
</repository>
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>yuqiyu-snapshots</id>
<url>http://maven.yuqiyu.com/repository/maven-snapshots/</url>
</repository>
</repositories>
<build>
<plugins>
<!--jdk version-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${cobertura-maven-plugin.version}</version>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
<check />
</configuration>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/minbox-projects/api-boot.git
git@gitee.com:minbox-projects/api-boot.git
minbox-projects
api-boot
api-boot
2.3.x

搜索帮助