Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -31,6 +29,7 @@ java {

repositories {
mavenCentral()
mavenLocal()
}

kotlin {
Expand All @@ -43,6 +42,7 @@ tasks.withType<Test> {
useJUnitPlatform()
testLogging {
events("passed", "skipped", "failed")
showStandardStreams = true
exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
}
}
Expand Down
Loading