Skip to content

Commit a685224

Browse files
committed
Generate javadoc.
1 parent 78eb389 commit a685224

File tree

1 file changed

+42
-5
lines changed

1 file changed

+42
-5
lines changed

pom.xml

+42-5
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,32 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>org.jsl.collider</groupId>
5+
<groupId>org.js-labs</groupId>
66
<artifactId>js-collider</artifactId>
77
<packaging>jar</packaging>
88

99
<name>js-collider</name>
10-
<version>0.93</version>
10+
<version>0.1.0</version>
11+
<description>Java NIO framework</description>
1112
<url>https://github.com/js-labs/js-collider</url>
12-
<description>NIO framework</description>
13+
14+
<licenses>
15+
<license>
16+
<name>GNU Affero General Public License</name>
17+
<url>http://www.gnu.org/licenses/agpl-3.0.txt</url>
18+
<distribution>repo</distribution>
19+
<comments>GNU Affero General Public License</comments>
20+
</license>
21+
</licenses>
22+
23+
<developers>
24+
</developers>
25+
26+
<scm>
27+
<connection>scm:git:https://github.com/js-labs/js-collider.git</connection>
28+
<tag>v${project.version}</tag>
29+
<url>https://github.com/js-labs/js-collider</url>
30+
</scm>
1331

1432
<properties>
1533
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -26,7 +44,6 @@
2644

2745
<build>
2846
<plugins>
29-
3047
<plugin>
3148
<groupId>org.apache.maven.plugins</groupId>
3249
<artifactId>maven-source-plugin</artifactId>
@@ -40,7 +57,27 @@
4057
</execution>
4158
</executions>
4259
</plugin>
43-
60+
<plugin>
61+
<groupId>org.apache.maven.plugins</groupId>
62+
<artifactId>maven-javadoc-plugin</artifactId>
63+
<version>2.10.3</version>
64+
<executions>
65+
<execution>
66+
<id>attach-docs</id>
67+
<goals>
68+
<goal>jar</goal>
69+
</goals>
70+
</execution>
71+
</executions>
72+
</plugin>
73+
<plugin>
74+
<groupId>org.apache.maven.plugins</groupId>
75+
<artifactId>maven-deploy-plugin</artifactId>
76+
<version>2.8.2</version>
77+
<configuration>
78+
<altDeploymentRepository>local::default::file://${basedir}/target/repo</altDeploymentRepository>
79+
</configuration>
80+
</plugin>
4481
</plugins>
4582
</build>
4683

0 commit comments

Comments
 (0)