File tree Expand file tree Collapse file tree 6 files changed +12
-7
lines changed
Expand file tree Collapse file tree 6 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -144,6 +144,7 @@ subprojects {
144144 val log4j2Bridge = " org.apache.logging.log4j:log4j-1.2-api:$log4j2VersionNr "
145145
146146 projectToConf.extra[" commons-lang3" ] = " org.apache.commons:commons-lang3:3.8.1"
147+ projectToConf.extra[" commons-io2" ] = " commons-io:commons-io:2.0.1"
147148
148149 projectToConf.extra[" junitVersion" ] = junitVersion
149150 projectToConf.extra[" log4j2ApiVersion" ] = log4j2Api
Original file line number Diff line number Diff line change @@ -59,12 +59,6 @@ Export-Package: saros,
5959 saros.ui.util,
6060 saros.util,
6161 saros.versioning,
62- org.apache.commons.io,
63- org.apache.commons.io.comparator,
64- org.apache.commons.io.filefilter,
65- org.apache.commons.io.input,
66- org.apache.commons.io.monitor,
67- org.apache.commons.io.output,
6862 org.apache.commons.lang3,
6963 org.apache.commons.lang3.exception,
7064 org.apache.commons.lang3.time,
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ plugins {
55
66val versionQualifier = ext.get(" versionQualifier" ) as String
77val commonsLang = ext.get(" commons-lang3" ) as String
8+ val commonsIo = ext.get(" commons-io2" ) as String
89
910val log4j2ApiVersion = ext.get(" log4j2ApiVersion" ) as String
1011val log4j2CoreVersion = ext.get(" log4j2CoreVersion" ) as String
@@ -40,7 +41,7 @@ sarosEclipse {
4041
4142dependencies {
4243 bundle(" commons-codec:commons-codec:1.3" )
43- bundleApi( " commons-io:commons-io:2.0.1 " )
44+ bundle(commonsIo )
4445 bundleApi(commonsLang)
4546
4647 bundle(" javax.jmdns:jmdns:3.4.1" )
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ import com.diffplug.gradle.pde.EclipseRelease
1010val versionQualifier = ext.get(" versionQualifier" ) as String
1111val eclipseVersionNr = ext.get(" eclipseVersion" ) as String
1212
13+ val commonsIo = ext.get(" commons-io2" ) as String
14+
1315configurations {
1416 val testConfig by getting {}
1517 getByName(" testImplementation" ) {
@@ -40,6 +42,7 @@ sourceSets {
4042
4143dependencies {
4244 implementation(project(" :saros.core" ))
45+ implementation(commonsIo)
4346 // This is a workaround for https://github.com/saros-project/saros/issues/1086
4447 implementation(" org.eclipse.platform:org.eclipse.urischeme:1.1.0" )
4548 // This is a workaround for https://github.com/saros-project/saros/issues/1114
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ val versionQualifier: String? = ext.get("versionQualifier") as String?
66val intellijHome: String? = ext.get(" intellijHome" ) as String?
77val intellijSandboxDir: String? = ext.get(" intellijSandboxDir" ) as String?
88
9+ val commonsIo = ext.get(" commons-io2" ) as String
10+
911configurations {
1012 val testConfig by getting {}
1113 val testCompile by getting {
@@ -15,6 +17,7 @@ configurations {
1517
1618dependencies {
1719 compile(project(path = " :saros.core" , configuration = " plain" ))
20+ implementation(commonsIo)
1821
1922 compile(" org.easytesting:fest-assert:1.2" )
2023 compile(" org.easytesting:fest-reflect:1.2" )
Original file line number Diff line number Diff line change 11val versionQualifier = ext.get(" versionQualifier" )
22
3+ val commonsIo = ext.get(" commons-io2" ) as String
4+
35configurations {
46 val testConfig by getting {}
57 val testCompile by getting {
@@ -10,6 +12,7 @@ configurations {
1012dependencies {
1113 compile(project(" :saros.core" ))
1214 compile(" org.apache.commons:commons-collections4:4.2" )
15+ implementation(commonsIo)
1316}
1417
1518sourceSets {
You can’t perform that action at this time.
0 commit comments