-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
76 lines (65 loc) · 2.11 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>icu.easyj</groupId>
<artifactId>easyj-build</artifactId>
<version>1.1.5</version>
<relativePath/>
</parent>
<artifactId>easyj-tools-parent</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<name>${project.groupId} :: ${project.artifactId}</name>
<description>EasyJ社区提供的一些工具,如:maven插件、注解处理器等等。</description>
<modules>
<module>easyj-maven-plugin</module>
<module>easyj-maven-plugin-test</module>
</modules>
<properties>
<revision>1.1.6-SNAPSHOT</revision>
<junit.version>5.8.2</junit.version>
<jsr305.version>3.0.2</jsr305.version>
</properties>
<url>https://easyj.icu</url>
<scm>
<connection>scm:[email protected]:easyj-projects/easyj-maven-plugin.git</connection>
<developerConnection>scm:[email protected]:easyj-projects/easyj-maven-plugin.git</developerConnection>
<url>https://github.com/easyj-projects/easyj-maven-plugin</url>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/easyj-projects/easyj-maven-plugin/issues</url>
</issueManagement>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>${jsr305.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- 使用插件:Source -->
<plugin>
<artifactId>maven-source-plugin</artifactId>
<configuration>
<attach>true</attach>
</configuration>
</plugin>
<!-- 使用插件:Easyj -->
<plugin>
<groupId>icu.easyj.maven.plugins</groupId>
<artifactId>easyj-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>