Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit cd1539f

Browse files
committed
发布到中央仓库成功
1 parent 5b23b2e commit cd1539f

File tree

1 file changed

+59
-54
lines changed

1 file changed

+59
-54
lines changed

pom.xml

Lines changed: 59 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,25 @@
66
<artifactId>autotest.web.framework</artifactId>
77
<version>1.0.2-20170325</version>
88

9+
<name>phoenix.webui.framework</name>
10+
<url>https://github.com/LinuxSuRen/phoenix.webui.framework</url>
11+
<description>WebUI自动化测试框架</description>
12+
<licenses>
13+
<license>
14+
<name>Apache2.0</name>
15+
<url>http://surenpi.com</url>
16+
</license>
17+
</licenses>
18+
<developers>
19+
<developer>
20+
<name>suren</name>
21+
</developer>
22+
</developers>
23+
<organization>
24+
<name>素人</name>
25+
<url>http://surenpi.com</url>
26+
</organization>
27+
928
<properties>
1029
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
1130
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -18,77 +37,48 @@
1837
<build>
1938
<sourceDirectory>src/main/java</sourceDirectory>
2039
<plugins>
21-
<!-- -->
2240
<plugin>
2341
<groupId>org.apache.maven.plugins</groupId>
2442
<artifactId>maven-compiler-plugin</artifactId>
25-
<version>3.1</version>
43+
<version>3.6.1</version>
2644
<configuration>
2745
<source>1.8</source>
2846
<target>1.8</target>
29-
<encoding>UTF-8</encoding>
3047
</configuration>
3148
</plugin>
3249
<plugin>
3350
<groupId>org.apache.maven.plugins</groupId>
34-
<artifactId>maven-shade-plugin</artifactId>
35-
<version>1.4</version>
51+
<artifactId>maven-source-plugin</artifactId>
52+
<version>3.0.1</version>
3653
<executions>
3754
<execution>
38-
<phase>all-in-one</phase>
55+
<id>attach-sources</id>
56+
<phase>package</phase>
3957
<goals>
40-
<goal>shade</goal>
58+
<goal>jar-no-fork</goal>
4159
</goals>
42-
<configuration>
43-
<filters>
44-
<filter>
45-
<artifact>*:*</artifact>
46-
<excludes>
47-
<exclude>META-INF/*.SF</exclude>
48-
<exclude>META-INF/*.DSA</exclude>
49-
<exclude>META-INF/*.RSA</exclude>
50-
</excludes>
51-
</filter>
52-
</filters>
53-
<transformers>
54-
<transformer
55-
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
56-
<mainClass></mainClass>
57-
</transformer>
58-
<transformer
59-
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
60-
<resource>META-INF/spring.handlers</resource>
61-
</transformer>
62-
<transformer
63-
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
64-
<resource>META-INF/spring.schemas</resource>
65-
</transformer>
66-
</transformers>
67-
</configuration>
6860
</execution>
6961
</executions>
7062
</plugin>
7163
<plugin>
7264
<groupId>org.apache.maven.plugins</groupId>
73-
<artifactId>maven-source-plugin</artifactId>
74-
<version>2.1.2</version>
65+
<artifactId>maven-javadoc-plugin</artifactId>
66+
<version>2.9.1</version>
7567
<executions>
7668
<execution>
77-
<id>attach-sources</id>
78-
<phase>verify</phase>
69+
<id>attach-javadocs</id>
7970
<goals>
80-
<goal>jar-no-fork</goal>
71+
<goal>jar</goal>
8172
</goals>
8273
</execution>
8374
</executions>
84-
</plugin>
85-
<plugin>
86-
<groupId>org.apache.maven.plugins</groupId>
87-
<artifactId>maven-javadoc-plugin</artifactId>
88-
<version>2.9.1</version>
8975
<configuration>
76+
<aggregate>true</aggregate>
77+
<charset>UTF-8</charset>
9078
<attach>true</attach>
9179
<encoding>UTF-8</encoding>
80+
<docencoding>UTF-8</docencoding>
81+
<additionalparam>-Xdoclint:none</additionalparam>
9282
</configuration>
9383
</plugin>
9484
<plugin>
@@ -99,14 +89,28 @@
9989
<skip>true</skip>
10090
</configuration>
10191
</plugin>
92+
<plugin>
93+
<groupId>org.apache.maven.plugins</groupId>
94+
<artifactId>maven-gpg-plugin</artifactId>
95+
<version>1.5</version>
96+
<executions>
97+
<execution>
98+
<id>sign-artifacts</id>
99+
<phase>verify</phase>
100+
<goals>
101+
<goal>sign</goal>
102+
</goals>
103+
</execution>
104+
</executions>
105+
</plugin>
102106
</plugins>
103107
</build>
104108

105109
<repositories>
106110
<repository>
107111
<id>maven.surenpi.com</id>
108112
<name>SuRen Maven Repositories</name>
109-
<url>http://maven.surenpi.com/nexus/content/repositories/public/</url>
113+
<url>https://oss.sonatype.org/content/groups/public</url>
110114
<snapshots>
111115
<enabled>true</enabled>
112116
<updatePolicy>always</updatePolicy>
@@ -116,7 +120,7 @@
116120
</releases>
117121
</repository>
118122
</repositories>
119-
123+
120124
<distributionManagement>
121125
<snapshotRepository>
122126
<id>nexus-snapshots</id>
@@ -136,7 +140,7 @@
136140
<artifactId>autotest.interface.framework</artifactId>
137141
<version>0.0.1-SNAPSHOT</version>
138142
</dependency>
139-
143+
140144
<!-- Selenium依赖 -->
141145
<dependency>
142146
<groupId>org.seleniumhq.selenium</groupId>
@@ -262,18 +266,19 @@
262266
<version>2.3.20</version>
263267
</dependency>
264268

265-
<!-- 工具类
266-
<dependency>
267-
<groupId>org.apache.commons</groupId>
268-
<artifactId>commons-lang3</artifactId>
269-
<version>3.4</version>
270-
</dependency>
271-
-->
272-
269+
<!-- 工具类 <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId>
270+
<version>3.4</version> </dependency> -->
271+
273272
<dependency>
274273
<groupId>commons-codec</groupId>
275274
<artifactId>commons-codec</artifactId>
276275
<version>1.10</version>
277276
</dependency>
278277
</dependencies>
278+
279+
<scm>
280+
<connection>https://github.com/LinuxSuRen/phoenix.webui.framework.git</connection>
281+
<url>https://github.com/LinuxSuRen/phoenix.webui.framework</url>
282+
<developerConnection>https://github.com/LinuxSuRen/phoenix.webui.framework.git</developerConnection>
283+
</scm>
279284
</project>

0 commit comments

Comments
 (0)