Skip to content

Commit

Permalink
Migration Updates and new compression module
Browse files Browse the repository at this point in the history
  • Loading branch information
ChKemper committed Jun 7, 2024
1 parent f7af826 commit f37190d
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 8 deletions.
5 changes: 4 additions & 1 deletion BCEL/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ plugins {

group = 'de.repmek.tools.BCEL'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

java {
sourceCompatibility = JavaVersion.VERSION_1_8
}

dependencies {
implementation 'org.apache.bcel:bcel:6.9.0'
Expand Down
9 changes: 7 additions & 2 deletions JNI/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,16 @@ plugins {
id 'cpp'
}

mainClassName = 'de.repmek.jni.SayHello'
application {
mainClass = 'de.repmek.jni.SayHello'
}

group = 'de.repmek.tools.JNI'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

java {
sourceCompatibility = JavaVersion.VERSION_1_8
}

println "Building on OS: " + System.properties['os.name']
println "Using JDK: " + System.properties['java.home']
Expand Down
5 changes: 4 additions & 1 deletion backtracking/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ plugins {

group = 'de.repmek.tools.backtracking'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

java {
sourceCompatibility = JavaVersion.VERSION_1_8
}

dependencies {

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
buildscript {
repositories {
mavenCentral()
jcenter()
google()
}
}

allprojects {
repositories {
mavenCentral()
jcenter()
google()
}
}
15 changes: 15 additions & 0 deletions compression/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
plugins {
id 'java'
}

group = 'de.repmek.compression'
version = '0.0.1-SNAPSHOT'

java {
sourceCompatibility = JavaVersion.VERSION_17
}

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.2'
}
5 changes: 4 additions & 1 deletion jzos_batch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ plugins {

group = 'de.repmek.tools.JZos'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

java {
sourceCompatibility = JavaVersion.VERSION_1_8
}

dependencies {
implementation files('libs/jzos.jar')
Expand Down
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ include 'backtracking'
include 'jzos_batch'
include 'JNI'
include 'xmp'
include 'compression'
5 changes: 4 additions & 1 deletion xmp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ plugins {

group = 'de.repmek.xmp'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

java {
sourceCompatibility = JavaVersion.VERSION_1_8
}

dependencies {
implementation 'com.adobe.xmp:xmpcore:6.1.11'
Expand Down

0 comments on commit f37190d

Please sign in to comment.