Skip to content

Commit

Permalink
Update gradle.build
Browse files Browse the repository at this point in the history
  • Loading branch information
sullrich84 committed Apr 18, 2021
1 parent 2302b86 commit f83d44d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 41 deletions.
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Add the following to your `pom.xml` file:
<dependency>
<groupId>de.wettkampfdb</groupId>
<artifactId>domain-objects</artifactId>
<version>1.0.1</version>
<version>x.x.x</version>
</dependency>
```

Expand All @@ -35,7 +35,7 @@ repositories {
}
dependencies {
implementation "de.wettkampfdb:domain-objects:1.0.1"
implementation "de.wettkampfdb:domain-objects:x.x.x"
}
```

Expand Down
39 changes: 0 additions & 39 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,25 +73,6 @@ test {
useJUnitPlatform()
}

testlogger {
theme 'standard'
showExceptions true
showStackTraces true
showFullStackTraces false
showCauses true
slowThreshold 2500
showSummary true
showSimpleNames false
showPassed true
showSkipped true
showFailed true
showStandardStreams false
showPassedStandardStreams true
showSkippedStandardStreams true
showFailedStandardStreams true
logLevel 'lifecycle'
}

publishing {
repositories {
maven {
Expand All @@ -106,26 +87,6 @@ publishing {
publications {
gpr(MavenPublication) {
from(components.java)
versionMapping {
usage('java-api') {
fromResolutionOf('runtimeClasspath')
}
usage('java-runtime') {
fromResolutionResult()
}
}
pom {
name = 'WettkampfDB Domain Objects'
description = 'Data transfering objects uses by the WettkampfDB Domain'
url = 'https://www.wettkampfdb.de'
developers {
developer {
id = 'sullrich84'
name = 'Sebastian Ullrich'
email = 'sebastian.ullrich@deepsource.de'
}
}
}
}
}
}

0 comments on commit f83d44d

Please sign in to comment.