File tree Expand file tree Collapse file tree 13 files changed +31
-18
lines changed
jbbp-maven/jbbp-maven-plugin-tests Expand file tree Collapse file tree 13 files changed +31
-18
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ repositories {
13
13
14
14
dependencies {
15
15
implementation " com.igormaznitsa:jbbp:${ jbbp_plugin_version} "
16
- testImplementation platform(' org.junit:junit-bom:5.9.1 ' )
16
+ testImplementation platform(" org.junit:junit-bom:${ junit_version } " )
17
17
testImplementation ' org.junit.jupiter:junit-jupiter'
18
18
}
19
19
Original file line number Diff line number Diff line change 52
52
<plugin >
53
53
<groupId >org.codehaus.mojo</groupId >
54
54
<artifactId >exec-maven-plugin</artifactId >
55
- <version >3.1.0</version >
56
55
<executions >
57
56
<execution >
58
57
<id >gradle</id >
66
65
<argument >--scan</argument >
67
66
<argument >--no-daemon</argument >
68
67
<argument >-Pjbbp_plugin_version=${jbbp.test.version} </argument >
68
+ <argument >-Pjunit_version=${junit5.version} </argument >
69
69
</arguments >
70
70
</configuration >
71
71
<goals >
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ repositories {
13
13
14
14
dependencies {
15
15
implementation " com.igormaznitsa:jbbp:${ jbbp_plugin_version} "
16
- testImplementation platform(' org.junit:junit-bom:5.9.1 ' )
16
+ testImplementation platform(" org.junit:junit-bom:${ junit_version } " )
17
17
testImplementation ' org.junit.jupiter:junit-jupiter'
18
18
}
19
19
Original file line number Diff line number Diff line change 52
52
<plugin >
53
53
<groupId >org.codehaus.mojo</groupId >
54
54
<artifactId >exec-maven-plugin</artifactId >
55
- <version >3.1.0</version >
56
55
<executions >
57
56
<execution >
58
57
<id >gradle</id >
66
65
<argument >--scan</argument >
67
66
<argument >--no-daemon</argument >
68
67
<argument >-Pjbbp_plugin_version=${jbbp.test.version} </argument >
68
+ <argument >-Pjunit_version=${junit5.version} </argument >
69
69
</arguments >
70
70
</configuration >
71
71
<goals >
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ repositories {
13
13
14
14
dependencies {
15
15
implementation " com.igormaznitsa:jbbp:${ jbbp_plugin_version} "
16
- testImplementation platform(' org.junit:junit-bom:5.10.1 ' )
16
+ testImplementation platform(" org.junit:junit-bom:${ junit_version } " )
17
17
testImplementation ' org.junit.jupiter:junit-jupiter'
18
18
}
19
19
Original file line number Diff line number Diff line change 52
52
<plugin >
53
53
<groupId >org.codehaus.mojo</groupId >
54
54
<artifactId >exec-maven-plugin</artifactId >
55
- <version >3.1.0</version >
56
55
<executions >
57
56
<execution >
58
57
<id >gradle</id >
66
65
<argument >--scan</argument >
67
66
<argument >--no-daemon</argument >
68
67
<argument >-Pjbbp_plugin_version=${jbbp.test.version} </argument >
68
+ <argument >-Pjunit_version=${junit5.version} </argument >
69
69
</arguments >
70
70
</configuration >
71
71
<goals >
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ repositories {
13
13
14
14
dependencies {
15
15
implementation " com.igormaznitsa:jbbp:${ jbbp_plugin_version} "
16
- testImplementation platform(' org.junit:junit-bom:5.9.1 ' )
16
+ testImplementation platform(" org.junit:junit-bom:${ junit_version } " )
17
17
testImplementation ' org.junit.jupiter:junit-jupiter'
18
18
}
19
19
Original file line number Diff line number Diff line change 52
52
<plugin >
53
53
<groupId >org.codehaus.mojo</groupId >
54
54
<artifactId >exec-maven-plugin</artifactId >
55
- <version >3.1.0</version >
56
55
<executions >
57
56
<execution >
58
57
<id >gradle</id >
66
65
<argument >--scan</argument >
67
66
<argument >--no-daemon</argument >
68
67
<argument >-Pjbbp_plugin_version=${jbbp.test.version} </argument >
68
+ <argument >-Pjunit_version=${junit5.version} </argument >
69
69
</arguments >
70
70
</configuration >
71
71
<goals >
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ def getProp(name) {
9
9
10
10
def jbbpVersion = getProp(' jbbp_plugin_version' )
11
11
def metaLibVersion = getProp(' meta_lib_version' )
12
+ def commonsIoVersion = getProp(' commons_io_version' )
13
+ def junitVersion = getProp(' junit_version' )
12
14
13
15
group = ' com.igormaznitsa'
14
16
version = jbbpVersion
@@ -24,11 +26,11 @@ dependencies {
24
26
implementation gradleApi()
25
27
implementation localGroovy()
26
28
27
- implementation ' commons-io:commons-io:2.17.0 '
29
+ implementation " commons-io:commons-io:" + commonsIoVersion
28
30
implementation " com.igormaznitsa:meta-annotations:" + metaLibVersion
29
31
implementation " com.igormaznitsa:meta-utils:" + metaLibVersion
30
32
31
- testImplementation ' junit:junit:4.13.2 '
33
+ testImplementation " junit:junit:" + junitVersion
32
34
}
33
35
34
36
repositories {
Original file line number Diff line number Diff line change 94
94
<plugin >
95
95
<groupId >org.codehaus.mojo</groupId >
96
96
<artifactId >exec-maven-plugin</artifactId >
97
- <version >3.1.0</version >
98
97
<executions >
99
98
<execution >
100
99
<id >gradle</id >
110
109
<argument >--no-daemon</argument >
111
110
<argument >-Pjbbp_plugin_version=${project.version} </argument >
112
111
<argument >-Pmeta_lib_version=${meta.version} </argument >
112
+ <argument >-Pcommons_io_version=${commonsio.version} </argument >
113
+ <argument >-Pjunit_version=${junit4.version} </argument >
113
114
</arguments >
114
115
</configuration >
115
116
<goals >
You can’t perform that action at this time.
0 commit comments