File tree Expand file tree Collapse file tree 2 files changed +14
-16
lines changed Expand file tree Collapse file tree 2 files changed +14
-16
lines changed Original file line number Diff line number Diff line change 2
2
<a href =" https://github.com/mintUI9976/Signal " > <img src =" https://i.postimg.cc/HnjVQNdQ/signal.png " /></a >
3
3
<h2 >A library for java with the native java socket technology and in combination with the custom bytebuffer allocator technology by boonproject</h2 >
4
4
<hr />
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 >
5
+ <a href =" https://github.com/mintUI9976?tab=packages&repo_name=Signal " ><img src =" https://img.shields.io/badge/release-v1.2.2 -9cf " /></a >
6
6
<a href =" https://github.com/mintUI9976/Signal " ><img src =" https://img.shields.io/github/languages/code-size/mintUI9976/Signal?color=orange " /></a >
7
7
<a href =" https://github.com/mintUI9976/Signal " ><img src =" https://img.shields.io/tokei/lines/github/mintUI9976/Signal?color=yellow " /></a >
8
8
<a href =" https://github.com/mintUI9976/Signal/blob/master/LICENSE " ><img src =" https://img.shields.io/github/license/mintUI9976/Signal " /></a >
Original file line number Diff line number Diff line change
1
+ import org.apache.tools.ant.filters.ReplaceTokens
2
+
1
3
plugins {
2
4
id ' java'
3
- id ' maven'
4
- id ' maven-publish'
5
5
}
6
6
7
- apply plugin : ' maven'
8
-
9
7
group ' com.zyonicsoftware.minereaper.signal'
10
- version ' v1.2.1'
11
-
12
- tasks. withType(JavaCompile ) {
13
- options. encoding = ' UTF-8'
14
- }
8
+ version ' v1.2.2'
15
9
16
10
repositories {
17
11
mavenCentral()
@@ -22,15 +16,19 @@ dependencies {
22
16
implementation group : ' org.jetbrains' , name : ' annotations' , version : ' 20.1.0'
23
17
implementation group : ' io.fastjson' , name : ' boon' , version : ' 0.34'
24
18
implementation ' com.github.mintUI9976:RedEugene:v0.3.2'
25
- implementation ' com.github.jitpack:gradle-simple:1.0'
19
+ }
20
+
21
+ processResources {
22
+ from(sourceSets. main. resources. srcDirs) {
23
+ filter ReplaceTokens , tokens : [version : version]
24
+ }
25
+ duplicatesStrategy = DuplicatesStrategy . INCLUDE
26
26
}
27
27
28
28
jar {
29
- from sourceSets. main. allSource
30
29
from {
31
- configurations. compile. collect { it. isDirectory() ? it : zipTree(it) }
32
- }
33
- processResources {
34
- exclude(" *" )
30
+ configurations. runtimeClasspath. collect { it. isDirectory() ? it : zipTree(it) }
35
31
}
32
+ duplicatesStrategy = DuplicatesStrategy . EXCLUDE
33
+ exclude(" META-INF/*.SF" , " META-INF/*.DSA" , " META-INF/*.RSA" )
36
34
}
You can’t perform that action at this time.
0 commit comments