1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: Updating Maven dependencies concerning libswt-gtk-4-java
The module swt did not find the dependency libswt-gtk-4-java for the
architectures arm64 and ppc64el. We add a default dependency, outside of the
profiles, so that they meet their dependency.
Author: Pierre Gruet <pgtdebian@free.fr>
Debian-Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=976546
Forwarded: not-needed
Last-Update: 2020-12-22
--- a/swt/pom.xml
+++ b/swt/pom.xml
@@ -16,6 +16,11 @@
<groupId>${project.groupId}</groupId>
<artifactId>miglayout-core</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.eclipse.swt</groupId>
+ <artifactId>org.eclipse.swt</artifactId>
+ <version>debian</version>
+ </dependency>
</dependencies>
<profiles>
|