3
3
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4
4
<parent >
5
5
<groupId >org.sonatype.oss</groupId >
6
- <artifactId >oss-parent</artifactId >
7
- <version >7</version >
6
+ <artifactId >oss-parent</artifactId >
7
+ <version >7</version >
8
8
</parent >
9
- <scm >
9
+ <scm >
10
10
<
connection >scm:git:
[email protected] /TooTallNate/Java-WebSocket.git</
connection >
11
11
<
developerConnection >scm:git:
[email protected] /TooTallNate/Java-WebSocket.git</
developerConnection >
12
12
<
url >
[email protected] /TooTallNate/Java-WebSocket.git</
url >
13
13
</scm >
14
14
<modelVersion >4.0.0</modelVersion >
15
15
<groupId >org.java-websocket</groupId >
16
16
<artifactId >Java-WebSocket</artifactId >
17
- <version >1.0.0-SNAPSHOT </version >
17
+ <version >1.3.0 </version >
18
18
<packaging >jar</packaging >
19
19
<name >Java WebSocket</name >
20
20
<url >http://java-websocket.org/</url >
21
+ <description >A barebones WebSocket client and server implementation written in 100% Java</description >
21
22
<properties >
22
23
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
23
24
<java .version>1.6</java .version>
33
34
<target >${java.version} </target >
34
35
</configuration >
35
36
</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 >
36
61
</plugins >
37
62
</build >
63
+ <developers >
64
+ <developer >
65
+ <id >TooTallNate</id >
66
+ <name >Nathan Rajlich</name >
67
+
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
+
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 >
38
89
</project >
0 commit comments