1 Star 0 Fork 7

zz5365562 / grace

forked from minbox-projects / grace 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.49 KB
一键复制 编辑 原始数据 按行查看 历史
恒宇少年 提交于 2021-12-30 14:21 . :bookmark:发布v1.0.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>
<parent>
<groupId>org.minbox.framework</groupId>
<artifactId>minbox-parent</artifactId>
<version>1.0.6</version>
<relativePath/>
</parent>
<groupId>org.minbox.framework</groupId>
<artifactId>grace</artifactId>
<packaging>pom</packaging>
<version>${revision}</version>
<modules>
<module>grace-bom</module>
<module>grace-core</module>
<module>grace-processor</module>
<module>grace-expression</module>
</modules>
<properties>
<revision>1.0.0</revision>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.source.plugin.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</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/zz5365562/grace.git
git@gitee.com:zz5365562/grace.git
zz5365562
grace
grace
master

搜索帮助