mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-10 21:31:53 +01:00
Exclude org.osgi.service.prefs to fix build (#3001)
Someone added a dependency on a non-existing artifact in the new Equinox release and now many builds are broken because Xtext defines a version range for Equinox 😞, see: * https://github.com/eclipse-equinox/equinox.bundles/issues/54 * https://github.com/eclipse/xtext/issues/2077 Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
parent
293de9d6db
commit
af0566af95
@ -38,6 +38,11 @@
|
|||||||
<groupId>org.eclipse.platform</groupId>
|
<groupId>org.eclipse.platform</groupId>
|
||||||
<artifactId>org.eclipse.osgi</artifactId>
|
<artifactId>org.eclipse.osgi</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<!-- See: https://github.com/eclipse-equinox/equinox.bundles/issues/54 -->
|
||||||
|
<groupId>org.osgi.service</groupId>
|
||||||
|
<artifactId>org.osgi.service.prefs</artifactId>
|
||||||
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
@ -71,12 +76,24 @@
|
|||||||
<groupId>org.eclipse.platform</groupId>
|
<groupId>org.eclipse.platform</groupId>
|
||||||
<artifactId>org.eclipse.osgi</artifactId>
|
<artifactId>org.eclipse.osgi</artifactId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<!-- See: https://github.com/eclipse-equinox/equinox.bundles/issues/54 -->
|
||||||
|
<groupId>org.osgi.service</groupId>
|
||||||
|
<artifactId>org.osgi.service.prefs</artifactId>
|
||||||
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.emf</groupId>
|
<groupId>org.eclipse.emf</groupId>
|
||||||
<artifactId>org.eclipse.emf.codegen.ecore</artifactId>
|
<artifactId>org.eclipse.emf.codegen.ecore</artifactId>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<!-- See: https://github.com/eclipse-equinox/equinox.bundles/issues/54 -->
|
||||||
|
<groupId>org.osgi.service</groupId>
|
||||||
|
<artifactId>org.osgi.service.prefs</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- EMF MWE2 -->
|
<!-- EMF MWE2 -->
|
||||||
|
Loading…
Reference in New Issue
Block a user