diff --git a/README.md b/README.md
index baf4cd7..9ca48ba 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
A library for java with the native java socket technology and in combination with the custom bytebuffer allocator technology by boonproject
-
+
diff --git a/build.gradle b/build.gradle
index 946b7eb..755dd04 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,9 +1,5 @@
import org.apache.tools.ant.filters.ReplaceTokens
-plugins {
- id 'java'
- id 'maven-publish'
-}
apply plugin: 'java'
apply plugin: 'maven-publish'
@@ -11,7 +7,7 @@ sourceCompatibility = 1.17 // java 15
targetCompatibility = 1.17
group 'com.zyonicsoftware.minereaper.signal'
-version 'v1.2.3'
+version 'v1.2.4'
repositories {
mavenCentral()
@@ -31,13 +27,17 @@ processResources {
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}
-jar {
+java {
+ withSourcesJar()
+}
+
+/*jar {
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
exclude("META-INF/*.SF", "META-INF/*.DSA", "META-INF/*.RSA")
-}
+}*/
publishing {
publications {