Skip to content

Commit 67d5ca3

Browse files
author
niklasgriese
committed
update build.gradle & README.md
1 parent 47ca0ef commit 67d5ca3

File tree

2 files changed

+11
-80
lines changed

2 files changed

+11
-80
lines changed

README.md

Lines changed: 5 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,19 @@
11
<div align="center">
2-
<a href="https://zyonicsoftware.com"> <img src="https://i.postimg.cc/HnjVQNdQ/signal.png" /></a>
2+
<a href="https://github.com/mintUI9976/Signal"> <img src="https://i.postimg.cc/HnjVQNdQ/signal.png" /></a>
33
<h2>A library for java with the native java socket technology and in combination with the custom bytebuffer allocator technology by boonproject</h2>
44
<hr />
5-
<a href="https://gitlab.zyonicsoftware.com/mint9976/Signal/-/packages"><img src="https://img.shields.io/badge/release-v1.2.0-9cf" /></a>
5+
<a href="https://github.com/mintUI9976?tab=packages&repo_name=Signal"><img src="https://img.shields.io/badge/release-v1.2.1-9cf" /></a>
66
<a href="https://github.com/mintUI9976/Signal"><img src="https://img.shields.io/github/languages/code-size/mintUI9976/Signal?color=orange" /></a>
77
<a href="https://github.com/mintUI9976/Signal"><img src="https://img.shields.io/tokei/lines/github/mintUI9976/Signal?color=yellow" /></a>
88
<a href="https://github.com/mintUI9976/Signal/blob/master/LICENSE"><img src="https://img.shields.io/github/license/mintUI9976/Signal" /></a>
99
<a href="https://github.com/mintUI9976/Signal/stargazers"><img src="https://img.shields.io/github/stars/mintUI9976/Signal?color=ff69b4" /></a>
1010
<a href=""><img src="https://img.shields.io/github/languages/count/mintUI9976/Signal?color=blueviolet" /></a>
11-
<img src="https://img.shields.io/discord/743171495454441503?label=discord&color=cyan" />
1211
<img src="https://img.shields.io/badge/opensource-❤-9cf">
1312
<br />
1413
<br />
1514
<a href="https://github.com/boonproject">BoonProject</a>
1615
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
17-
<a href="https://zyonicsoftware.com">Website</a>
18-
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
1916
<a href="https://github.com/mintUI9976/Signal/blob/master/LICENSE">License</a>
20-
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
21-
<a href="https://gitlab.zyonicsoftware.com">Gitlab</a>
22-
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
23-
<a href="https://github.com/Zyonic-Software">Github</a>
24-
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
25-
<a href="https://twitter.com/zyonicsoftware">Twitter</a>
2617
<br />
2718
<hr />
2819
</div>
@@ -58,58 +49,19 @@
5849
### Implementation / Gradle
5950

6051
````xml
61-
maven{url"https://gitlab.zyonicsoftware.com/api/v4/projects/144/packages/maven"}
62-
````
63-
64-
````xml
65-
compile group:'com.zyonicsoftware.minereaper.signal',name:'Signal',version:'v1.2.0'
66-
````
67-
68-
<hr />
69-
70-
### Implementation / Maven
71-
72-
````xml
73-
74-
<dependency>
75-
<groupId>com.zyonicsoftware.minereaper.signal</groupId>
76-
<artifactId>Signal</artifactId>
77-
<version>v1.2.0</version>
78-
</dependency>
79-
````
80-
81-
````xml
82-
mvn dependency:get -Dartifact=com.zyonicsoftware.minereaper.signal:Signal:v1.2.0
52+
maven { url 'https://jitpack.io' }
8353
````
8454

8555
````xml
86-
87-
<repositories>
88-
<repository>
89-
<id>gitlab-maven</id>
90-
<url>https://gitlab.zyonicsoftware.com/api/v4/projects/144/packages/maven</url>
91-
</repository>
92-
</repositories>
93-
94-
<distributionManagement>
95-
<repository>
96-
<id>gitlab-maven</id>
97-
<url>https://gitlab.zyonicsoftware.com/api/v4/projects/144/packages/maven</url>
98-
</repository>
99-
100-
<snapshotRepository>
101-
<id>gitlab-maven</id>
102-
<url>https://gitlab.zyonicsoftware.com/api/v4/projects/144/packages/maven</url>
103-
</snapshotRepository>
104-
</distributionManagement>
56+
implementation 'com.github.mintUI9976:Signal:Tag'
10557
````
10658

10759
<hr />
10860

10961
### Learn about Signal
11062

11163
- Signal example
112-
guide, [Signal Explained](https://gitlab.zyonicsoftware.com/mint9976/Signal/-/tree/master/src/main/java/com/zyonicsoftware/minereaper/signal/example)
64+
guide, [Signal Explained](https://github.com/mintUI9976/Signal/tree/master/src/main/java/com/zyonicsoftware/minereaper/signal/example)
11365

11466

11567

build.gradle

Lines changed: 6 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,22 @@ plugins {
77
apply plugin: 'maven'
88

99
group 'com.zyonicsoftware.minereaper.signal'
10-
version 'v1.2.0'
10+
version 'v1.2.1'
1111

1212
tasks.withType(JavaCompile) {
1313
options.encoding = 'UTF-8'
1414
}
1515

1616
repositories {
1717
mavenCentral()
18-
maven { url 'https://gitlab.zyonicsoftware.com/api/v4/projects/164/packages/maven' }
18+
maven { url 'https://jitpack.io' }
1919
}
2020

2121
dependencies {
22-
compile group: 'org.jetbrains', name: 'annotations', version: '20.1.0'
23-
compile group: 'io.fastjson', name: 'boon', version: '0.34'
24-
compile group: 'com.zyonicsoftware.minereaper.redeugene', name: 'redeugene', version: 'v0.2.4'
22+
implementation group: 'org.jetbrains', name: 'annotations', version: '20.1.0'
23+
implementation group: 'io.fastjson', name: 'boon', version: '0.34'
24+
implementation 'com.github.mintUI9976:RedEugene:v0.3.2'
25+
implementation 'com.github.jitpack:gradle-simple:1.0'
2526
}
2627

2728
jar {
@@ -33,25 +34,3 @@ jar {
3334
exclude("*")
3435
}
3536
}
36-
37-
publishing {
38-
publications {
39-
library(MavenPublication) {
40-
from components.java
41-
}
42-
}
43-
44-
repositories {
45-
maven {
46-
url "https://gitlab.zyonicsoftware.com/api/v4/projects/144/packages/maven"
47-
credentials(HttpHeaderCredentials) {
48-
name = "Job-Token"
49-
value = System.getenv("CI_JOB_TOKEN")
50-
}
51-
authentication {
52-
header(HttpHeaderAuthentication)
53-
}
54-
}
55-
}
56-
57-
}

0 commit comments

Comments
 (0)