diff --git a/README.md b/README.md index 5637082..b7256e0 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,8 @@ Shared beans between [jactor-persistence](https://github.com/jactor-rises/jactor-modules/tree/main/persistence) and [jactor-web](https://github.com/jactor-rises/jactor-modules/tree/main/web) http api and json-serialization +will be available using [jitpack.io](https://jitpack.io/#jactor-rises/jactor-shared) + ## Http api ### Dto diff --git a/build.gradle.kts b/build.gradle.kts index 79ea2d1..300eb60 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,10 +6,8 @@ plugins { `maven-publish` } +group = "com.github.jactor-rises" val cliVersion = providers.gradleProperty("version").orNull?.trim() -val cliGroup = providers.gradleProperty("group").orNull?.trim() - -group = cliGroup.takeIf { !it.isNullOrBlank() } ?: "com.github.jactor-rises" version = cliVersion.takeIf { !it.isNullOrBlank() } ?: "0.0.0-SNAPSHOT" dependencies { @@ -31,6 +29,7 @@ java { repositories { mavenCentral() + mavenLocal() } kotlin { @@ -43,6 +42,7 @@ tasks.withType { useJUnitPlatform() testLogging { events("passed", "skipped", "failed") + showStandardStreams = true exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL } }