Skip to content

Commit f52f278

Browse files
committed
fix: stepping dependencies
1 parent 218ac9d commit f52f278

File tree

5 files changed

+9
-20
lines changed

5 files changed

+9
-20
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.travis.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Violation Comments to Bitbucket Server Lib
22

3-
[![Build Status](https://travis-ci.org/tomasbjerre/violation-comments-to-bitbucket-server-lib.svg?branch=master)](https://travis-ci.org/tomasbjerre/violation-comments-to-bitbucket-server-lib)
43
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/se.bjurr.violations/violation-comments-to-bitbucket-server-lib/badge.svg)](https://maven-badges.herokuapp.com/maven-central/se.bjurr.violations/violation-comments-to-bitbucket-server-lib)
54

65
This is a library that adds violation comments from static code analysis to Bitbucket Server.

build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apply plugin: 'java'
1+
apply plugin: 'java-library'
22

33
buildscript {
44
repositories {
@@ -12,12 +12,12 @@ buildscript {
1212
apply from: project.buildscript.classLoader.getResource('main.gradle').toURI()
1313

1414
dependencies {
15-
compile 'se.bjurr.violations:violation-comments-lib:1.+'
16-
compile 'com.jayway.jsonpath:json-path:2.7.0'
17-
compile 'com.google.code.gson:gson:2.8.0'
18-
compile 'com.google.guava:guava:20.0'
19-
compile 'org.apache.httpcomponents:httpclient:4.5.5'
15+
api 'se.bjurr.violations:violation-comments-lib:1.106.1'
16+
api 'com.jayway.jsonpath:json-path:2.7.0'
17+
api 'com.google.code.gson:gson:2.10'
18+
api 'com.google.guava:guava:31.1-jre'
19+
api 'org.apache.httpcomponents:httpclient:4.5.14'
2020

21-
testCompile 'junit:junit:4.12'
22-
testCompile 'org.assertj:assertj-core:2.5.0'
21+
testImplementation 'junit:junit:4.13.2'
22+
testImplementation 'org.assertj:assertj-core:3.23.1'
2323
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)