Skip to content

Commit 374b512

Browse files
committed
Updated version in Clojars
1 parent d478ed1 commit 374b512

File tree

4 files changed

+90
-135
lines changed

4 files changed

+90
-135
lines changed

README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://travis-ci.org/marci4/Java-WebSocket-Dev.svg?branch=master)](https://travis-ci.org/marci4/Java-WebSocket-Dev)
1+
[![Build Status](https://travis-ci.org/marci4/Java-WebSocket-Dev.svg?branch=master)](https://travis-ci.org/marci4/Java-WebSocket-Dev) [![Clojars Project](https://img.shields.io/clojars/v/org.java-websocket/java-websocket.svg)](https://clojars.org/org.java-websocket/java-websocket)
22
Java WebSockets
33
===============
44

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
}
1010

1111
group = 'org.java_websocket'
12-
version = '1.3.1'
12+
version = '1.3.2'
1313
sourceCompatibility = 1.6
1414
targetCompatibility = 1.6
1515

pom.xml

Lines changed: 83 additions & 131 deletions
Original file line numberDiff line numberDiff line change
@@ -1,132 +1,84 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<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">
3-
<parent>
4-
<groupId>org.sonatype.oss</groupId>
5-
<artifactId>oss-parent</artifactId>
6-
<version>7</version>
7-
</parent>
8-
<scm>
9-
<connection>scm:git:git@github.com:TooTallNate/Java-WebSocket.git</connection>
10-
<developerConnection>scm:git:git@github.com:TooTallNate/Java-WebSocket.git</developerConnection>
11-
<url>git@github.com:TooTallNate/Java-WebSocket.git</url>
12-
</scm>
13-
<modelVersion>4.0.0</modelVersion>
14-
<groupId>org.java-websocket</groupId>
15-
<artifactId>Java-WebSocket</artifactId>
16-
<version>1.3.1</version>
17-
<packaging>jar</packaging>
18-
<name>Java WebSocket</name>
19-
<url>http://java-websocket.org/</url>
20-
<description>A barebones WebSocket client and server implementation written in 100% Java</description>
21-
<properties>
22-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23-
<java.version>1.6</java.version>
24-
<cucumber.version>1.0.2</cucumber.version>
25-
</properties>
26-
<build>
27-
<plugins>
28-
<plugin>
29-
<groupId>org.apache.maven.plugins</groupId>
30-
<artifactId>maven-compiler-plugin</artifactId>
31-
<version>2.5.1</version>
32-
<configuration>
33-
<source>${java.version}</source>
34-
<target>${java.version}</target>
35-
</configuration>
36-
</plugin>
37-
<plugin>
38-
<groupId>org.apache.maven.plugins</groupId>
39-
<artifactId>maven-source-plugin</artifactId>
40-
<version>2.2.1</version>
41-
<executions>
42-
<execution>
43-
<id>attach-sources</id>
44-
<goals>
45-
<goal>jar</goal>
46-
</goals>
47-
</execution>
48-
</executions>
49-
</plugin>
50-
<plugin>
51-
<groupId>org.apache.maven.plugins</groupId>
52-
<artifactId>maven-javadoc-plugin</artifactId>
53-
<version>2.9</version>
54-
<executions>
55-
<execution>
56-
<id>attach-javadocs</id>
57-
<goals>
58-
<goal>jar</goal>
59-
</goals>
60-
</execution>
61-
</executions>
62-
</plugin>
63-
</plugins>
64-
</build>
65-
<dependencies>
66-
<!-- JUnit -->
67-
<dependency>
68-
<groupId>junit</groupId>
69-
<artifactId>junit</artifactId>
70-
<version>4.10</version>
71-
<scope>test</scope>
72-
</dependency>
73-
<!-- Cucumber -->
74-
<dependency>
75-
<groupId>info.cukes</groupId>
76-
<artifactId>cucumber-junit</artifactId>
77-
<version>1.0.2</version>
78-
<scope>test</scope>
79-
</dependency>
80-
<dependency>
81-
<groupId>info.cukes</groupId>
82-
<artifactId>cucumber-java</artifactId>
83-
<version>${cucumber.version}</version>
84-
<scope>test</scope>
85-
</dependency>
86-
</dependencies>
87-
<developers>
88-
<developer>
89-
<id>TooTallNate</id>
90-
<name>Nathan Rajlich</name>
91-
<email>nathan@tootallnate.net</email>
92-
<url>https://github.com/TooTallNate</url>
93-
<roles>
94-
<role>founder</role>
95-
</roles>
96-
</developer>
97-
<developer>
98-
<id>Davidiusdadi</id>
99-
<name>David Rohmer</name>
100-
<email>rohmer.david@gmail.com</email>
101-
<url>https://github.com/Davidiusdadi</url>
102-
<roles>
103-
<role>maintainer</role>
104-
</roles>
105-
</developer>
106-
<developer>
107-
<id>marci4</id>
108-
<name>Marcel Prestel</name>
109-
<email>admin@marci4.de</email>
110-
<url>https://github.com/marci4</url>
111-
<roles>
112-
<role>maintainer</role>
113-
</roles>
114-
</developer>
115-
</developers>
116-
<licenses>
117-
<license>
118-
<name>MIT License</name>
119-
<url>http://github.com/TooTallNate/Java-WebSocket/blob/master/LICENSE</url>
120-
</license>
121-
</licenses>
122-
<profiles>
123-
<profile>
124-
<id>release-sign-artifacts</id>
125-
<activation>
126-
<property><name>performRelease</name><value>true</value></property>
127-
</activation>
128-
<build>
129-
</build>
130-
</profile>
131-
</profiles>
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+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>org.java-websocket</groupId>
4+
<artifactId>java-websocket</artifactId>
5+
<packaging>jar</packaging>
6+
<version>1.3.2</version>
7+
<name>java-websocket</name>
8+
<description>A barebones WebSocket client and server implementation written 100% in Java</description>
9+
<url>http://java-websocket.org/</url>
10+
<licenses>
11+
<license>
12+
<name>MIT License</name>
13+
<url>https://github.com/TooTallNate/Java-WebSocket/blob/master/LICENSE</url>
14+
</license>
15+
</licenses>
16+
<scm>
17+
<url>https://github.com/TooTallNate/Java-WebSocket</url>
18+
</scm>
19+
<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/>
35+
</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/>
62+
<developers>
63+
<developer>
64+
<name>Nathan Rajlich</name>
65+
<url>https://github.com/TooTallNate</url>
66+
<email>nathan@tootallnate.net</email>
67+
</developer>
68+
<developer>
69+
<name>David Rohmer</name>
70+
<url>https://github.com/Davidiusdadi</url>
71+
<email>rohmer.david@gmail.com</email>
72+
</developer>
73+
<developer>
74+
<name>Marcel Prestel</name>
75+
<url>https://github.com/marci4</url>
76+
<email>admin@marci4.de</email>
77+
</developer>
78+
</developers>
13279
</project>
80+
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 -->

project.clj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
(defproject org.java-websocket/java-websocket "1.3.1"
1+
(defproject org.java-websocket/java-websocket "1.3.2"
22
:description "A barebones WebSocket client and server implementation written 100% in Java"
33
:url "http://java-websocket.org/"
44
:scm {:name "git"
55
:url "https://github.com/TooTallNate/Java-WebSocket"}
66
:license {:name "MIT License"
77
:url "https://github.com/TooTallNate/Java-WebSocket/blob/master/LICENSE"}
88
:source-paths []
9+
:omit-source true
910
:java-source-paths ["src/main/java"]
1011
:javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"]
11-
:deploy-repositories [["clojars" {:sign-releases false}]]
12+
:signing {:gpg-key "7A9D8E91"}
13+
:deploy-repositories [["releases" :clojars]
14+
["snapshots" :clojars]]
1215
:pom-addition [:developers [:developer
1316
[:name "Nathan Rajlich"]
1417
[:url "https://github.com/TooTallNate"]

0 commit comments

Comments
 (0)