File tree 4 files changed +1
-12
lines changed
buildSrc/src/main/java/saros/gradle/eclipse
4 files changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -51,9 +51,6 @@ subprojects {
51
51
configurations {
52
52
create(" testing" ) // used to reference the testJar
53
53
create(" testConfig" ) // contains test dependencies that are used by all java subprojects
54
- create(" releaseDep" ) { // contains all dependencies which has to be included into the release jar/zip
55
- isTransitive = false // avoid that the whole dependency tree is released
56
- }
57
54
create(" bundle" ) { // contains all which are used by core
58
55
isTransitive = false // avoid that the whole dependency tree is released
59
56
}
@@ -115,7 +112,6 @@ subprojects {
115
112
*/
116
113
register(" generateLib" , Copy ::class ) {
117
114
into(" ${project.projectDir} /lib" )
118
- from(projectToConf.configurations.getByName(" releaseDep" ))
119
115
from(projectToConf.configurations.getByName(" bundle" ))
120
116
from(projectToConf.configurations.getByName(" bundleApi" ))
121
117
}
Original file line number Diff line number Diff line change 18
18
public class SarosEclipsePlugin implements Plugin <Project > {
19
19
private static final String EXTENSION_NAME = "sarosEclipse" ;
20
20
private static final String PLUGIN_VERSION_CHANGE_TASK_NAME = "changeEclipsePluginVersion" ;
21
- private static final List <String > DEFAULT_CONFIG_NAMES = Arrays .asList ("releaseDep " );
21
+ private static final List <String > DEFAULT_CONFIG_NAMES = Arrays .asList ("bundle" , "bundleApi " );
22
22
23
23
/**
24
24
* Method which is called when the plugin is integrated in a gradle build (e.g. with {@code apply
Original file line number Diff line number Diff line change @@ -22,11 +22,6 @@ configurations {
22
22
// Defined in root build.gradle
23
23
val testConfig by getting {}
24
24
25
- // populate releaseDep while it is still used by other projects
26
- val releaseDep by getting {
27
- extendsFrom(bundle, bundleApi)
28
- }
29
-
30
25
// Default configuration
31
26
val testCompile by getting {
32
27
extendsFrom(testConfig)
@@ -41,7 +36,6 @@ sarosEclipse {
41
36
isCreateBundleJar = true
42
37
isAddPdeNature = true
43
38
pluginVersionQualifier = versionQualifier
44
- configs = listOf (" bundle" , " bundleApi" )
45
39
}
46
40
47
41
dependencies {
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ sarosEclipse {
25
25
isAddDependencies = true
26
26
pluginVersionQualifier = versionQualifier
27
27
eclipseVersion = eclipseVersionNr
28
- configs = listOf (" bundle" , " bundleApi" )
29
28
}
30
29
31
30
sourceSets {
You can’t perform that action at this time.
0 commit comments