Skip to content

Commit 354355e

Browse files
authored
Merge pull request #4 from spidasoftware/update-logback-#186610553
update logback [delivers #186610553]
2 parents db4961b + a946c1c commit 354355e

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,6 @@ gradle-app.setting
1515

1616
#vscode artifacts
1717
.vscode/
18-
bin/
18+
bin/
19+
20+
**/.idea

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ Creates a jar and runs all tests.
2828

2929
Builds and runs all tests.
3030

31-
./gradlew install
31+
./gradlew publishToMavenLocal
3232

3333
Builds and installs a new jar in the local Maven repository.
3434

35-
./gradlew uploadArchives
35+
./gradlew publish
3636

3737
Builds and uploads a new jar to the remote Maven repository. Requires environment variables be set. Check version information in build.gradle before running.
3838

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ publishing {
3131

3232
repositories {
3333
maven {
34-
url "${System.getenv('ARTIFACTORY_URL_BASE')}/libs-${project.version.endsWith('-SNAPSHOT') ? 'snapshot' : 'release' }-local"
34+
url System.getenv("ARTIFACTORY_URL_EXPOSED")
3535
credentials {
3636
username = System.getenv('ARTIFACTORY_USERNAME')
3737
password = System.getenv('ARTIFACTORY_PASSWORD')
@@ -54,7 +54,9 @@ dependencies {
5454
implementation group: 'commons-beanutils', name: 'commons-beanutils', version: '1.9.4'
5555
implementation group: 'org.springframework', name: 'spring-context', version:springVersion
5656
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.36'
57-
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.11'
57+
implementation (group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.13') {
58+
exclude(module: 'slf4j-api')
59+
}
5860
testImplementation group: 'org.objenesis', name: 'objenesis', version: '3.3'
5961
testImplementation('org.spockframework:spock-core:2.3-groovy-4.0'){
6062
exclude(module: 'groovy-all')

0 commit comments

Comments
 (0)