1 Star 0 Fork 0

houbb/eunit

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 5.50 KB
一键复制 编辑 原始数据 按行查看 历史
houbb 提交于 2018-08-13 16:17 +08:00 . [Update] 调整自定义解析器位置
<?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>com.github.ofofs</groupId>
<artifactId>eunit</artifactId>
<version>1.0.1.RELEASE</version>
<name>EUnit</name>
<description>自动生成测试数据</description>
<url>https://github.com/ofofs/eunit</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>ofofs</name>
<email>ofofs@kangyonggan.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com/ofofs/eunit.git</connection>
<developerConnection>scm:git:git@github.com/ofofs/eunit.git</developerConnection>
<url>git@github.com/ofofs/eunit.git</url>
</scm>
<properties>
<!--Project-->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!--Plugin-->
<plugin.compiler.version>3.5.1</plugin.compiler.version>
<plugin.compiler.level>1.8</plugin.compiler.level>
<plugin.source.version>2.2.1</plugin.source.version>
<plugin.javadoc.version>2.9.1</plugin.javadoc.version>
<plugin.gpg.version>1.6</plugin.gpg.version>
<commons-lang3.version>3.3.2</commons-lang3.version>
<reggen.version>1.0.0</reggen.version>
<junit.version>5.2.0</junit.version>
</properties>
<build>
<plugins>
<!--Compiler Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${plugin.compiler.version}</version>
<configuration>
<source>${plugin.compiler.level}</source>
<target>${plugin.compiler.level}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<dependency>
<groupId>com.github.ofofs</groupId>
<artifactId>reggen</artifactId>
<version>${reggen.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
<optional>true</optional>
</dependency>
</dependencies>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- Source -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${plugin.source.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${plugin.javadoc.version}</version>
<executions>
<execution>
<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>${plugin.gpg.version}</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>oss</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>oss</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
</profiles>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/houbinbin/eunit.git
git@gitee.com:houbinbin/eunit.git
houbinbin
eunit
eunit
master

搜索帮助