Skip to content

Commit

Permalink
Added correct Eclipse OSGi dependency (#832)
Browse files Browse the repository at this point in the history
  • Loading branch information
oxisto committed Jun 14, 2022
1 parent a8f1e77 commit d0a69fe
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cpg-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,11 @@ dependencies {
api("com.fasterxml.jackson.module:jackson-module-kotlin:2.13.3")

// Eclipse dependencies
api("org.eclipse.platform:org.eclipse.core.runtime:3.24.100")
api("org.eclipse.platform:org.eclipse.core.runtime:3.24.100") {
// For some reason, this group name is wrong
exclude("org.osgi.service", "org.osgi.service.prefs")
}
api("org.osgi", "org.osgi.service.prefs", "1.1.2")
api("com.ibm.icu:icu4j:71.1")

// CDT
Expand Down

0 comments on commit d0a69fe

Please sign in to comment.