2
2
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3
3
<modelVersion >4.0.0</modelVersion >
4
4
5
- <groupId >org.wf </groupId >
5
+ <groupId >com.github.whvcse </groupId >
6
6
7
7
<artifactId >easy-captcha</artifactId >
8
- <version >1.6.2-RELEASE</version >
8
+ <version >1.6.2</version >
9
+ <build >
10
+ <plugins >
11
+ <plugin >
12
+ <groupId >org.apache.maven.plugins</groupId >
13
+ <artifactId >maven-compiler-plugin</artifactId >
14
+ <configuration >
15
+ <source >8</source >
16
+ <target >8</target >
17
+ </configuration >
18
+ </plugin >
19
+ </plugins >
20
+ </build >
9
21
<packaging >jar</packaging >
10
22
11
23
<name >EasyCaptcha</name >
12
- <description >Java图形验证码,支持gif验证码、中文验证码,适用于Java Web、JavaSE项目。 </description >
24
+ <description >Java web graphics verification code, support gif verification code. </description >
13
25
<url >https://github.com/whvcse/EasyCaptcha</url >
14
26
27
+ <licenses >
28
+ <license >
29
+ <name >The Apache Software License, Version 2.0</name >
30
+ <url >http://www.apache.org/licenses/LICENSE-2.0.txt</url >
31
+ </license >
32
+ </licenses >
33
+ <developers >
34
+ <developer >
35
+ <name >whvcse</name >
36
+
37
+ </developer >
38
+ </developers >
39
+ <scm >
40
+ <
connection >scm:
[email protected] :whvcse/EasyCaptcha.git</
connection >
41
+ <
developerConnection >scm:
[email protected] :whvcse/EasyCaptcha.git</
developerConnection >
42
+ <url >https://github.com/whvcse/EasyCaptcha</url >
43
+ </scm >
44
+
45
+ <properties >
46
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
47
+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
48
+ <java .version>1.8</java .version>
49
+ </properties >
50
+
15
51
<dependencies >
16
52
<!-- j2ee环境 -->
17
53
<dependency >
28
64
</dependency >
29
65
</dependencies >
30
66
31
- <build >
32
- <plugins >
33
- <plugin >
34
- <groupId >org.apache.maven.plugins</groupId >
35
- <artifactId >maven-compiler-plugin</artifactId >
36
- <configuration >
37
- <source >6</source >
38
- <target >6</target >
39
- <encoding >UTF-8</encoding >
40
- </configuration >
41
- </plugin >
42
- </plugins >
43
- </build >
44
-
45
- <distributionManagement >
46
- <repository >
47
- <id >rdc-releases</id >
48
- <url >https://repo.rdc.aliyun.com/repository/70786-release-exL3mB/</url >
49
- </repository >
50
- <snapshotRepository >
51
- <id >rdc-snapshots</id >
52
- <url >https://repo.rdc.aliyun.com/repository/70786-snapshot-Y0tgOa/</url >
53
- </snapshotRepository >
54
- </distributionManagement >
67
+ <profiles >
68
+ <profile >
69
+ <id >release</id >
70
+ <build >
71
+ <plugins >
72
+ <!-- Source -->
73
+ <plugin >
74
+ <groupId >org.apache.maven.plugins</groupId >
75
+ <artifactId >maven-source-plugin</artifactId >
76
+ <version >2.2.1</version >
77
+ <executions >
78
+ <execution >
79
+ <phase >package</phase >
80
+ <goals >
81
+ <goal >jar-no-fork</goal >
82
+ </goals >
83
+ </execution >
84
+ </executions >
85
+ </plugin >
86
+ <!-- Javadoc -->
87
+ <plugin >
88
+ <groupId >org.apache.maven.plugins</groupId >
89
+ <artifactId >maven-javadoc-plugin</artifactId >
90
+ <version >2.9.1</version >
91
+ <executions >
92
+ <execution >
93
+ <phase >package</phase >
94
+ <goals >
95
+ <goal >jar</goal >
96
+ </goals >
97
+ </execution >
98
+ </executions >
99
+ </plugin >
100
+ <!-- GPG -->
101
+ <plugin >
102
+ <groupId >org.apache.maven.plugins</groupId >
103
+ <artifactId >maven-gpg-plugin</artifactId >
104
+ <version >1.5</version >
105
+ <executions >
106
+ <execution >
107
+ <phase >verify</phase >
108
+ <goals >
109
+ <goal >sign</goal >
110
+ </goals >
111
+ </execution >
112
+ </executions >
113
+ </plugin >
114
+ </plugins >
115
+ </build >
116
+ <distributionManagement >
117
+ <snapshotRepository >
118
+ <id >oss</id >
119
+ <url >https://oss.sonatype.org/content/repositories/snapshots/</url >
120
+ </snapshotRepository >
121
+ <repository >
122
+ <id >oss</id >
123
+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
124
+ </repository >
125
+ </distributionManagement >
126
+ </profile >
127
+ </profiles >
55
128
</project >
0 commit comments