Skip to content

Commit 0043611

Browse files
committed
Replace OSGi plugin with biz.aQute.bnd.
See java-json-tools/jackson-coreutils#13.
1 parent 68e918e commit 0043611

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

build.gradle

+10-1
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,23 @@
1717
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
1818
*/
1919

20+
buildscript {
21+
repositories {
22+
mavenCentral()
23+
}
24+
dependencies {
25+
classpath 'biz.aQute.bnd:biz.aQute.bnd.gradle:4.2.0'
26+
}
27+
}
28+
2029
plugins {
2130
id("net.ltgt.errorprone") version "0.8.1" apply false
2231
}
2332

2433
apply(plugin: "java");
2534
apply(plugin: "maven");
2635
apply(plugin: "signing");
27-
apply(plugin: "osgi");
36+
apply(plugin: "biz.aQute.bnd.builder");
2837
apply(plugin: "idea");
2938
apply(plugin: "eclipse");
3039
apply(plugin: "net.ltgt.errorprone");

0 commit comments

Comments
 (0)