|
1 | 1 | apply plugin: 'com.diffplug.gradle.eclipse.mavencentral'
|
2 | 2 | eclipseMavenCentral { release SWT_VERSION, {
|
3 |
| - compile 'org.eclipse.swt' |
4 |
| - compile 'org.eclipse.jface' |
| 3 | + api 'org.eclipse.swt' |
| 4 | + api 'org.eclipse.jface' |
5 | 5 | useNativesForRunningPlatform()
|
6 | 6 | } }
|
7 | 7 | dependencies {
|
8 |
| - compile project(':durian-swt.os') |
9 |
| - compile "com.diffplug.durian:durian-core:$VER_DURIAN" |
10 |
| - compile "com.diffplug.durian:durian-collect:$VER_DURIAN" |
11 |
| - compile "com.diffplug.durian:durian-concurrent:$VER_DURIAN" |
12 |
| - compile "com.diffplug.durian:durian-rx:$VER_DURIAN_RX" |
13 |
| - compile "io.reactivex.rxjava2:rxjava:$VER_RXJAVA" |
| 8 | + api project(':durian-swt.os') |
| 9 | + api "com.diffplug.durian:durian-rx:$VER_DURIAN_RX" |
| 10 | + api "io.reactivex.rxjava2:rxjava:$VER_RXJAVA" |
| 11 | + implementation "com.diffplug.durian:durian-core:$VER_DURIAN" |
| 12 | + implementation "com.diffplug.durian:durian-collect:$VER_DURIAN" |
| 13 | + implementation "com.diffplug.durian:durian-concurrent:$VER_DURIAN" |
14 | 14 | compileOnly 'com.google.code.findbugs:jsr305:3.0.2'
|
15 | 15 | compileOnly 'com.google.code.findbugs:annotations:3.0.1'
|
16 | 16 |
|
17 |
| - testCompile "junit:junit:$VER_JUNIT" |
18 |
| - testCompile "org.assertj:assertj-core:$VER_ASSERTJ" |
19 |
| - testCompile "com.diffplug.durian:durian-debug:$VER_DURIAN_DEBUG" |
| 17 | + testImplementation "junit:junit:$VER_JUNIT" |
| 18 | + testImplementation "org.assertj:assertj-core:$VER_ASSERTJ" |
| 19 | + testImplementation "com.diffplug.durian:durian-debug:$VER_DURIAN_DEBUG" |
20 | 20 | }
|
21 | 21 |
|
22 | 22 | /////////////////////////
|
|
0 commit comments