|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 2 | <modelVersion>4.0.0</modelVersion> |
3 | 3 | <groupId>org.java-websocket</groupId> |
4 | | - <artifactId>java-websocket</artifactId> |
| 4 | + <artifactId>Java-WebSocket</artifactId> |
5 | 5 | <packaging>jar</packaging> |
6 | | - <version>1.3.3</version> |
7 | | - <name>java-websocket</name> |
| 6 | + <version>1.3.4</version> |
| 7 | + <name>Java-WebSocket</name> |
8 | 8 | <description>A barebones WebSocket client and server implementation written 100% in Java</description> |
9 | 9 | <url>https://github.com/TooTallNate/Java-WebSocket</url> |
10 | 10 | <licenses> |
|
16 | 16 | <scm> |
17 | 17 | <url>https://github.com/TooTallNate/Java-WebSocket</url> |
18 | 18 | </scm> |
| 19 | + <distributionManagement> |
| 20 | + <snapshotRepository> |
| 21 | + <id>ossrh</id> |
| 22 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 23 | + </snapshotRepository> |
| 24 | + </distributionManagement> |
19 | 25 | <build> |
20 | | - <sourceDirectory>src\main\java</sourceDirectory> |
21 | | - <testSourceDirectory>test</testSourceDirectory> |
22 | | - <resources> |
23 | | - <resource> |
24 | | - <directory>resources</directory> |
25 | | - </resource> |
26 | | - </resources> |
27 | | - <testResources> |
28 | | - <testResource> |
29 | | - <directory>resources</directory> |
30 | | - </testResource> |
31 | | - </testResources> |
32 | | - <directory>target</directory> |
33 | | - <outputDirectory>target\classes</outputDirectory> |
34 | | - <plugins/> |
| 26 | + <sourceDirectory>src/main/java</sourceDirectory> |
| 27 | + <plugins> |
| 28 | + <plugin> |
| 29 | + <groupId>org.sonatype.plugins</groupId> |
| 30 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 31 | + <version>1.6.7</version> |
| 32 | + <extensions>true</extensions> |
| 33 | + <configuration> |
| 34 | + <serverId>ossrh</serverId> |
| 35 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 36 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 37 | + </configuration> |
| 38 | + </plugin> |
| 39 | + <plugin> |
| 40 | + <groupId>org.apache.maven.plugins</groupId> |
| 41 | + <artifactId>maven-source-plugin</artifactId> |
| 42 | + <version>2.2.1</version> |
| 43 | + <executions> |
| 44 | + <execution> |
| 45 | + <id>attach-sources</id> |
| 46 | + <goals> |
| 47 | + <goal>jar-no-fork</goal> |
| 48 | + </goals> |
| 49 | + </execution> |
| 50 | + </executions> |
| 51 | + </plugin> |
| 52 | + <plugin> |
| 53 | + <groupId>org.apache.maven.plugins</groupId> |
| 54 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 55 | + <version>2.9.1</version> |
| 56 | + <executions> |
| 57 | + <execution> |
| 58 | + <id>attach-javadocs</id> |
| 59 | + <goals> |
| 60 | + <goal>jar</goal> |
| 61 | + </goals> |
| 62 | + </execution> |
| 63 | + </executions> |
| 64 | + </plugin> |
| 65 | + </plugins> |
35 | 66 | </build> |
36 | | - <repositories> |
37 | | - <repository> |
38 | | - <id>central</id> |
39 | | - <url>https://repo1.maven.org/maven2/</url> |
40 | | - <snapshots> |
41 | | - <enabled>false</enabled> |
42 | | - </snapshots> |
43 | | - <releases> |
44 | | - <enabled>true</enabled> |
45 | | - </releases> |
46 | | - </repository> |
47 | | - <repository> |
48 | | - <id>clojars</id> |
49 | | - <url>https://clojars.org/repo/</url> |
50 | | - <snapshots> |
51 | | - <enabled>true</enabled> |
52 | | - </snapshots> |
53 | | - <releases> |
54 | | - <enabled>true</enabled> |
55 | | - </releases> |
56 | | - </repository> |
57 | | - </repositories> |
58 | | - <dependencyManagement> |
59 | | - <dependencies/> |
60 | | - </dependencyManagement> |
61 | | - <dependencies/> |
| 67 | + <dependencies> |
| 68 | + <dependency> |
| 69 | + <groupId>junit</groupId> |
| 70 | + <artifactId>junit</artifactId> |
| 71 | + <version>4.11</version> |
| 72 | + <scope>test</scope> |
| 73 | + </dependency> |
| 74 | + </dependencies> |
62 | 75 | <developers> |
63 | 76 | <developer> |
64 | 77 | <name>Nathan Rajlich</name> |
65 | 78 | <url>https://github.com/TooTallNate</url> |
66 | 79 | |
67 | 80 | </developer> |
68 | | - <developer> |
69 | | - <name>David Rohmer</name> |
70 | | - <url>https://github.com/Davidiusdadi</url> |
71 | | - |
72 | | - </developer> |
73 | 81 | <developer> |
74 | 82 | <name>Marcel Prestel</name> |
75 | 83 | <url>https://github.com/marci4</url> |
|
78 | 86 | </developers> |
79 | 87 | </project> |
80 | 88 |
|
81 | | -<!-- This file was autogenerated by Leiningen. |
82 | | - Please do not edit it directly; instead edit project.clj and regenerate it. |
83 | | - It should not be considered canonical data. For more information see |
84 | | - https://github.com/technomancy/leiningen --> |
| 89 | + |
0 commit comments