Skip to content

Commit de4507e

Browse files
committed
configured maven pom.xml for release
1 parent ab3d0ad commit de4507e

File tree

1 file changed

+55
-4
lines changed

1 file changed

+55
-4
lines changed

pom.xml

Lines changed: 55 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,22 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<parent>
55
<groupId>org.sonatype.oss</groupId>
6-
<artifactId>oss-parent</artifactId>
7-
<version>7</version>
6+
<artifactId>oss-parent</artifactId>
7+
<version>7</version>
88
</parent>
9-
<scm>
9+
<scm>
1010
<connection>scm:git:[email protected]/TooTallNate/Java-WebSocket.git</connection>
1111
<developerConnection>scm:git:[email protected]/TooTallNate/Java-WebSocket.git</developerConnection>
1212
<url>[email protected]/TooTallNate/Java-WebSocket.git</url>
1313
</scm>
1414
<modelVersion>4.0.0</modelVersion>
1515
<groupId>org.java-websocket</groupId>
1616
<artifactId>Java-WebSocket</artifactId>
17-
<version>1.0.0-SNAPSHOT</version>
17+
<version>1.3.0</version>
1818
<packaging>jar</packaging>
1919
<name>Java WebSocket</name>
2020
<url>http://java-websocket.org/</url>
21+
<description>A barebones WebSocket client and server implementation written in 100% Java</description>
2122
<properties>
2223
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2324
<java.version>1.6</java.version>
@@ -33,6 +34,56 @@
3334
<target>${java.version}</target>
3435
</configuration>
3536
</plugin>
37+
<plugin>
38+
<groupId>org.apache.maven.plugins</groupId>
39+
<artifactId>maven-source-plugin</artifactId>
40+
<executions>
41+
<execution>
42+
<id>attach-sources</id>
43+
<goals>
44+
<goal>jar</goal>
45+
</goals>
46+
</execution>
47+
</executions>
48+
</plugin>
49+
<plugin>
50+
<groupId>org.apache.maven.plugins</groupId>
51+
<artifactId>maven-javadoc-plugin</artifactId>
52+
<executions>
53+
<execution>
54+
<id>attach-javadocs</id>
55+
<goals>
56+
<goal>jar</goal>
57+
</goals>
58+
</execution>
59+
</executions>
60+
</plugin>
3661
</plugins>
3762
</build>
63+
<developers>
64+
<developer>
65+
<id>TooTallNate</id>
66+
<name>Nathan Rajlich</name>
67+
<email>[email protected]</email>
68+
<url>https://github.com/TooTallNate</url>
69+
<roles>
70+
<role>founder</role>
71+
</roles>
72+
</developer>
73+
<developer>
74+
<id>Davidiusdadi</id>
75+
<name>David Rohmer</name>
76+
<email>[email protected]</email>
77+
<url>https://github.com/Davidiusdadi</url>
78+
<roles>
79+
<role>maintainer</role>
80+
</roles>
81+
</developer>
82+
</developers>
83+
<licenses>
84+
<license>
85+
<name>MIT License</name>
86+
<url>http://github.com/TooTallNate/Java-WebSocket/blob/master/LICENSE</url>
87+
</license>
88+
</licenses>
3889
</project>

0 commit comments

Comments
 (0)