Skip to content

Commit 8854126

Browse files
committed
fix: new build script and minor adjustments from SCA
1 parent 5697c3e commit 8854126

22 files changed

+6913
-6865
lines changed

CHANGELOG.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# violation-comments-to-bitbucket-server-lib changelog
2-
3-
Changelog of violation-comments-to-bitbucket-server-lib.
41

52
## 2.0.0 (2024-01-27)
63

build.gradle

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,17 @@
1-
apply plugin: 'java-library'
2-
3-
buildscript {
4-
repositories {
5-
mavenCentral()
6-
mavenLocal()
7-
}
8-
dependencies {
9-
classpath 'se.bjurr.gradle:gradle-scripts:2.+'
10-
}
1+
plugins {
2+
id "se.bjurr.gradle.conventional-release" version "0.+"
3+
id "se.bjurr.gradle.java-convention" version "0.+"
4+
id "se.bjurr.gradle.update-versions" version "0.+"
115
}
12-
apply from: project.buildscript.classLoader.getResource('main.gradle').toURI()
136

147
dependencies {
15-
api 'se.bjurr.violations:violation-comments-lib:1.107.1'
16-
api 'com.jayway.jsonpath:json-path:2.9.0'
17-
api 'net.minidev:json-smart:2.5.0'
18-
api 'com.google.code.gson:gson:2.10.1'
19-
api 'com.google.guava:guava:31.1-jre'
20-
api 'org.apache.httpcomponents:httpclient:4.5.14'
8+
api 'se.bjurr.violations:violation-comments-lib:1.107.1'
9+
api 'com.jayway.jsonpath:json-path:2.9.0'
10+
api 'net.minidev:json-smart:2.5.0'
11+
api 'com.google.code.gson:gson:2.10.1'
12+
api 'com.google.guava:guava:31.1-jre'
13+
api 'org.apache.httpcomponents:httpclient:4.5.14'
2114

22-
testImplementation 'junit:junit:4.13.2'
23-
testImplementation 'org.assertj:assertj-core:3.25.2'
15+
testImplementation 'junit:junit:4.13.2'
16+
testImplementation 'org.assertj:assertj-core:3.25.2'
2417
}

gradle.properties

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
#Sat Jan 27 09:18:32 CET 2024
1+
#
2+
#Sat Oct 05 17:31:24 CEST 2024
23
description=Library that adds violation comments from static code analysis to Bitbucket Server.
3-
version=2.0.0
44
group=se.bjurr.violations
5+
version=2.0.1
6+
sourceCompatibility=11
7+
targetCompatibility=11

gradle/wrapper/gradle-wrapper.jar

-15.3 KB
Binary file not shown.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
46
zipStoreBase=GRADLE_USER_HOME
57
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)