Script Cleanup, Changelog Update and Version Bump.

Added a lot of Unit Tests (Roughly 7 Million) to Primitive Collections
(look Debug Branch) and found some really big bugs.
The Coverage was moved from 1.9% to 34.7% so far.
So there were a lot bugs found and at this point I need a break so this
is the first fixpatch until new tests are added.
This commit is contained in:
2022-05-28 23:34:37 +02:00
parent ea5ace0166
commit 36f24731b0
4 changed files with 25 additions and 40 deletions
+1 -8
View File
@@ -1,6 +1,5 @@
plugins {
id 'java-library'
id 'jacoco'
}
tasks.withType(JavaCompile) {
@@ -19,7 +18,7 @@ repositories {
}
archivesBaseName = 'Primitive Collections'
version = '0.6.1.18-SNAPSHOT';
version = '0.6.2';
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = JavaVersion.current();
@@ -99,12 +98,6 @@ test {
useJUnit()
}
jacocoTestReport {
reports {
xml.enabled true
}
}
publishing {
Properties props = new Properties()
if(file("$buildDir/credentials.properties").exists()) {