1
1
plugins {
2
- id " io.spring.dependency-management" version " 1.0.9.RELEASE "
2
+ id ' io.spring.dependency-management' version ' 1.1.7 '
3
3
id ' java'
4
4
id ' jacoco'
5
5
id " com.github.node-gradle.node" version " 2.2.1"
6
+ id " org.springframework.boot" version " 3.4.2" apply false
6
7
}
7
8
8
9
@@ -35,23 +36,22 @@ repositories {
35
36
36
37
dependencyManagement {
37
38
imports {
38
- mavenBom(releaseMode ? ' com.epam.reportportal:commons-bom:' + getProperty(' bom.version' ) : ' com.epam.reportportal:commons-bom:5.12.3 ' )
39
+ mavenBom(releaseMode ? ' com.epam.reportportal:commons-bom:' + getProperty(' bom.version' ) : ' com.epam.reportportal:commons-bom:5.13.0 ' )
39
40
}
40
41
}
41
42
43
+ ext[' spring-boot.version' ] = " ${ springBootVersion} "
44
+
42
45
dependencies {
43
46
if (releaseMode) {
44
47
implementation ' com.epam.reportportal:commons-dao'
45
48
implementation ' com.epam.reportportal:plugin-api'
46
49
annotationProcessor ' com.epam.reportportal:plugin-api'
47
50
} else {
48
- implementation ' com.github.reportportal:commons-dao:develop-SNAPSHOT'
49
- implementation ' com.github.reportportal:commons:develop-SNAPSHOT'
50
- implementation ' com.github.reportportal:plugin-api:develop-SNAPSHOT'
51
- annotationProcessor ' com.github.reportportal:plugin-api:develop-SNAPSHOT'
51
+ implementation ' com.github.reportportal:commons-dao:11fa2a6'
52
+ implementation ' com.github.reportportal:plugin-api:8874441'
53
+ annotationProcessor ' com.github.reportportal:plugin-api:8874441'
52
54
}
53
- implementation(' org.hibernate:hibernate-core:5.4.18.Final' )
54
- implementation ' com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.12.7'
55
55
56
56
}
57
57
@@ -113,6 +113,7 @@ shadowJar {
113
113
configurations = [project. configurations. compileClasspath]
114
114
zip64 true
115
115
dependencies {
116
+ include(dependency(' commons-io:commons-io:2.15.1' ))
116
117
}
117
118
}
118
119
@@ -135,6 +136,3 @@ task assemblePlugin(type: Copy) {
135
136
task assemblePlugins (type : Copy ) {
136
137
dependsOn subprojects. assemblePlugin
137
138
}
138
-
139
- // compileJava.dependsOn npm_run_build
140
-
0 commit comments