File tree Expand file tree Collapse file tree 2 files changed +4
-49
lines changed Expand file tree Collapse file tree 2 files changed +4
-49
lines changed Original file line number Diff line number Diff line change @@ -31,8 +31,9 @@ repositories {
3131 jcenter()
3232 maven { url "https://jitpack.io" }
3333}
34+
3435dependencies {
35- implementation 'com.github.XDex:socketcluster-client-java :2.0.0'
36+ implementation 'com.github.XDex:SocketclusterClientJava :2.0.0'
3637}
3738```
3839
Original file line number Diff line number Diff line change @@ -4,27 +4,22 @@ buildscript {
44 }
55}
66
7- plugins {
8- id " com.jfrog.bintray" version " 1.7"
9- }
10-
117allprojects {
128 tasks. withType(JavaCompile ) {
139 sourceCompatibility = ' 1.7'
1410 targetCompatibility = ' 1.7'
1511 }
1612}
1713
18- group ' com.github.XDex'
19- version ' 2.0.0'
14+ group = ' com.github.XDex'
15+ version = ' 2.0.0'
2016
2117allprojects {
2218 repositories {
2319 jcenter()
2420 }
2521 apply plugin : ' java'
2622 apply plugin : ' maven'
27- apply plugin : ' maven-publish'
2823}
2924
3025task wrapper (type : Wrapper ) {
4742 }
4843}
4944
50- publishing {
51- publications {
52- MyPublication (MavenPublication ) {
53- from components. java
54- groupId ' com.github.XDex'
55- artifactId ' SocketclusterClientJava'
56- version ' 2.0.0'
57-
58- artifact sourceJar {
59- classifier " sources"
60- }
61-
62- artifact javadocJar {
63- classifier " javadoc"
64- }
65- }
66- }
67- }
68-
69-
70- bintray {
71- user= System . getenv(' BINTRAY_USER' )
72- key= System . getenv(' BINTRAY_API_KEY' )
73- // configurations = ['archives']
74- publications = [' MyPublication' ]
75- pkg {
76- repo = ' Maven'
77- name = ' socketcluster-client'
78- licenses = [' Apache-2.0' ]
79- vcsUrl = ' https://github.com/sacOO7/socketcluster-client-java.git'
80- publicDownloadNumbers = true
81-
82- version {
83- name = ' 2.0.0'
84- desc = ' Switched to Jackson and implemented sc-min-bin codec support'
85- vcsTag = ' 2.0.0'
86- }
87-
88- }
89- }
90-
9145dependencies {
9246 compile ' com.neovisionaries:nv-websocket-client:2.3'
9347 compile ' org.msgpack:jackson-dataformat-msgpack:0.8.15'
You can’t perform that action at this time.
0 commit comments