Skip to content

Commit 06cff05

Browse files
committed
init project
1 parent bef37ba commit 06cff05

File tree

2 files changed

+163
-2
lines changed

2 files changed

+163
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@
1010

1111
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
1212
hs_err_pid*
13+
/target

pom.xml

+162-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,172 @@
88
<packaging>jar</packaging>
99

1010
<name>htmldoclet4jdk7</name>
11-
<url>http://maven.apache.org</url>
11+
<url>https://github.com/WinRoad-NET/htmldoclet4jdk7</url>
12+
<description>This is a module of wrdoclet (https://github.com/WinRoad-NET/wrdoclet) for jdk7.</description>
1213

1314
<properties>
1415
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1517
</properties>
1618

19+
<developers>
20+
<developer>
21+
<name>Adams Lee</name>
22+
<email>adamslee@outlook.com</email>
23+
<timezone>+8</timezone>
24+
</developer>
25+
</developers>
26+
27+
<licenses>
28+
<license>
29+
<name>Apache License 2.0</name>
30+
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
31+
<distribution>repo</distribution>
32+
</license>
33+
</licenses>
34+
35+
<scm>
36+
<connection>scm:git:git@github.com:WinRoad-NET/htmldoclet4jdk7.git</connection>
37+
<developerConnection>scm:git:git@github.com:WinRoad-NET/htmldoclet4jdk7.git</developerConnection>
38+
<url>https://github.com/WinRoad-NET/htmldoclet4jdk7</url>
39+
<tag>v1.1.0</tag>
40+
</scm>
41+
42+
<issueManagement>
43+
<system>github</system>
44+
<url>https://github.com/WinRoad-NET/htmldoclet4jdk7/issues</url>
45+
</issueManagement>
46+
47+
<distributionManagement>
48+
<snapshotRepository>
49+
<id>ossrh</id>
50+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
51+
</snapshotRepository>
52+
<repository>
53+
<id>ossrh</id>
54+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
55+
</repository>
56+
</distributionManagement>
57+
58+
<profiles>
59+
<profile>
60+
<id>htmldoclet4jdk7-release</id>
61+
<activation>
62+
<property>
63+
<name>performRelease</name>
64+
<value>true</value>
65+
</property>
66+
</activation>
67+
<build>
68+
<plugins>
69+
<plugin>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-gpg-plugin</artifactId>
72+
<version>1.5</version>
73+
<executions>
74+
<execution>
75+
<id>sign-artifacts</id>
76+
<phase>verify</phase>
77+
<goals>
78+
<goal>sign</goal>
79+
</goals>
80+
</execution>
81+
</executions>
82+
</plugin>
83+
</plugins>
84+
</build>
85+
</profile>
86+
</profiles>
87+
88+
<build>
89+
<plugins>
90+
<plugin>
91+
<groupId>org.apache.maven.plugins</groupId>
92+
<artifactId>maven-compiler-plugin</artifactId>
93+
<version>2.5.1</version>
94+
<configuration>
95+
<source>1.7</source>
96+
<target>1.7</target>
97+
<encoding>UTF-8</encoding>
98+
</configuration>
99+
</plugin>
100+
<plugin>
101+
<groupId>org.apache.maven.plugins</groupId>
102+
<artifactId>maven-source-plugin</artifactId>
103+
<version>2.2.1</version>
104+
<configuration>
105+
<encoding>UTF-8</encoding>
106+
</configuration>
107+
<executions>
108+
<execution>
109+
<id>attach-sources</id>
110+
<goals>
111+
<goal>jar</goal>
112+
</goals>
113+
</execution>
114+
</executions>
115+
</plugin>
116+
<plugin>
117+
<groupId>org.apache.maven.plugins</groupId>
118+
<artifactId>maven-javadoc-plugin</artifactId>
119+
<version>2.9</version>
120+
<executions>
121+
<execution>
122+
<id>attach-javadocs</id>
123+
<goals>
124+
<goal>jar</goal>
125+
</goals>
126+
</execution>
127+
</executions>
128+
</plugin>
129+
<plugin>
130+
<groupId>org.apache.maven.plugins</groupId>
131+
<artifactId>maven-release-plugin</artifactId>
132+
<version>2.5</version>
133+
<configuration>
134+
<autoVersionSubmodules>true</autoVersionSubmodules>
135+
<useReleaseProfile>false</useReleaseProfile>
136+
<releaseProfiles>htmldoclet4jdk7-release</releaseProfiles>
137+
<pushChanges>false</pushChanges>
138+
<localCheckout>true</localCheckout>
139+
<goals>deploy</goals>
140+
</configuration>
141+
</plugin>
142+
<plugin>
143+
<groupId>org.sonatype.plugins</groupId>
144+
<artifactId>nexus-staging-maven-plugin</artifactId>
145+
<version>1.6.6</version>
146+
<extensions>true</extensions>
147+
<configuration>
148+
<serverId>ossrh</serverId>
149+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
150+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
151+
</configuration>
152+
</plugin>
153+
<plugin>
154+
<groupId>org.codehaus.mojo</groupId>
155+
<artifactId>findbugs-maven-plugin</artifactId>
156+
<version>3.0.1</version>
157+
<configuration>
158+
<effort>Max</effort>
159+
<xmlOutput>true</xmlOutput>
160+
</configuration>
161+
<executions>
162+
<execution>
163+
<goals>
164+
<goal>check</goal>
165+
</goals>
166+
</execution>
167+
</executions>
168+
</plugin>
169+
<plugin>
170+
<groupId>org.codehaus.mojo</groupId>
171+
<artifactId>versions-maven-plugin</artifactId>
172+
<version>2.2</version>
173+
</plugin>
174+
</plugins>
175+
</build>
176+
17177
<dependencies>
18178
<dependency>
19179
<groupId>net.winroad</groupId>
@@ -29,6 +189,6 @@
29189
<groupId>org.pegdown</groupId>
30190
<artifactId>pegdown</artifactId>
31191
<version>1.6.0</version>
32-
</dependency>
192+
</dependency>
33193
</dependencies>
34194
</project>

0 commit comments

Comments
 (0)