Skip to content

Commit

Permalink
upgrade version
Browse files Browse the repository at this point in the history
  • Loading branch information
firestar committed Sep 2, 2023
1 parent 0bb1a95 commit e1e07fa
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 10 deletions.
15 changes: 9 additions & 6 deletions buildSrc/src/main/groovy/nucleodb.java-conventions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,26 @@ plugins {
}

group = 'com.nucleodb'
version = '1.6.2'
version = '1.6.3'

repositories {
mavenCentral()
maven{
url "https://repo.synload.com/"
}
}

java {
toolchain {
languageVersion = JavaLanguageVersion.of(19)
}
}
compileJava {
options.release = 19
}
dependencies {
testImplementation "junit:junit:4.13"
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.2.3'
implementation group: 'org.apache.kafka', name: 'kafka-clients', version: '2.1.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.17.2'
implementation group: 'net.sf.supercsv', name: 'super-csv-java8', version: '2.4.0'
implementation 'com.github.f4b6a3:uuid-creator:4.5.0'
implementation group: 'junit', name: 'junit', version: '4.12'
implementation 'com.google.guava:guava:28.1-jre'
implementation 'com.github.java-json-tools:json-patch:1.13'
implementation 'org.glassfish:javax.json:1.1.4'
Expand Down
19 changes: 15 additions & 4 deletions library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
plugins {
id 'com.github.johnrengelman.shadow' version '7.0.0'

id 'java'
id 'java-library'
id 'nucleodb.java-conventions'
id 'maven-publish'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}

group = 'com.nucleocore'
Expand All @@ -19,19 +20,29 @@ repositories {
}
}
}

java {
toolchain {
languageVersion = JavaLanguageVersion.of(19)
}
}
compileJava {
options.release = 19
}
shadowJar {
minimize()
archiveBaseName.set(group)
archiveVersion.set(version)
archiveClassifier.set('')
minimize{
exclude(dependency('org.*:.*:.*'))
exclude(dependency('com.*:.*:.*'))
exclude(dependency('net.*:.*:.*'))
}
}

dependencies {
implementation(project(':shared'))
}


publishing {
publications {
mavenJava(MavenPublication) {
Expand Down

0 comments on commit e1e07fa

Please sign in to comment.