Skip to content

Commit

Permalink
set version number to 5.0.0-SNAPSHOT.
Browse files Browse the repository at this point in the history
add the jar-with-dependencies artefact.
  • Loading branch information
ErwanDemairy committed Sep 12, 2024
1 parent 3c62d54 commit 9837cd0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ plugins {
`java-library`
`maven-publish`
id("org.gradlex.extra-java-module-info") version "1.8"
id("com.gradleup.shadow") version "8.3.1"
}

repositories {
Expand Down Expand Up @@ -37,7 +38,7 @@ dependencies {
}

group = "fr.inria.corese"
version = "4.5.1"
version = "5.0.0-SNAPSHOT"
description = "corese-core"
java.sourceCompatibility = JavaVersion.VERSION_11

Expand All @@ -54,6 +55,11 @@ tasks.withType<JavaCompile>() {
tasks.withType<Javadoc>() {
options.encoding = "UTF-8"
}
tasks {
shadowJar {
this.archiveClassifier = "jar-with-dependencies"
}
}
extraJavaModuleInfo {
failOnMissingModuleInfo.set(false)
automaticModule("fr.com.hp.hpl.jena.rdf.arp:arp", "arp")
Expand Down

0 comments on commit 9837cd0

Please sign in to comment.