File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ apply from: 干.file('spotless/freshmark.gradle')
13
13
apply from : 干. file(' helper/javadoc-markdown.gradle' )
14
14
15
15
subprojects { subProject ->
16
+ apply plugin : ' java-library'
16
17
apply from : 干. file(' base/java8.gradle' )
17
18
apply from : 干. file(' spotless/java.gradle' )
18
19
@@ -47,11 +48,11 @@ subprojects { subProject ->
47
48
String platformCode = project. name. substring(' durian-swt.' . length())
48
49
eclipseMavenCentral {
49
50
release SWT_VERSION , {
50
- implementation " org.eclipse.swt.$platformCode "
51
+ api " org.eclipse.swt.$platformCode "
51
52
}
52
53
}
53
54
dependencies {
54
- implementation project(' :durian-swt' )
55
+ api project(' :durian-swt' )
55
56
}
56
57
configurations. all {
57
58
resolutionStrategy. eachDependency { DependencyResolveDetails details ->
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.diffplug.gradle.eclipse.mavencentral'
2
2
eclipseMavenCentral {
3
3
release SWT_VERSION , {
4
- implementation ' org.eclipse.swt'
5
- implementation ' org.eclipse.jface'
4
+ api ' org.eclipse.swt'
5
+ api ' org.eclipse.jface'
6
6
useNativesForRunningPlatform()
7
7
}
8
8
}
9
9
dependencies {
10
- implementation project(' :durian-swt.os' )
11
- implementation " com.diffplug.durian:durian-rx:$VER_DURIAN_RX "
12
- implementation " io.reactivex.rxjava2:rxjava:$VER_RXJAVA "
10
+ api project(' :durian-swt.os' )
11
+ api " com.diffplug.durian:durian-rx:$VER_DURIAN_RX "
12
+ api " io.reactivex.rxjava2:rxjava:$VER_RXJAVA "
13
13
implementation " com.diffplug.durian:durian-core:$VER_DURIAN "
14
14
implementation " com.diffplug.durian:durian-collect:$VER_DURIAN "
15
15
implementation " com.diffplug.durian:durian-concurrent:$VER_DURIAN "
You can’t perform that action at this time.
0 commit comments