Skip to content
Commits on Source (6)
javafxsvg (1.2.1-2) unstable; urgency=medium
* Team upload.
* Switch to compat level 11.
* Fix FTBFS with OpenJFX 11 by build-depending on openjfx artifacts
explicitly. (Closes: #893345)
* Declare compliance with Debian Policy 4.2.1.
-- Markus Koschany <apo@debian.org> Wed, 14 Nov 2018 14:20:10 +0100
javafxsvg (1.2.1-1) unstable; urgency=medium
* Initial release (Closes: #848401)
......
......@@ -3,9 +3,9 @@ Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: tony mancill <tmancill@debian.org>
Build-Depends: debhelper (>= 10), default-jdk, maven-debian-helper (>= 2.1)
Build-Depends: debhelper (>= 11), default-jdk, maven-debian-helper (>= 2.1)
Build-Depends-Indep: libbatik-java, libxmlgraphics-commons-java, openjfx
Standards-Version: 3.9.8
Standards-Version: 4.2.1
Vcs-Git: https://anonscm.debian.org/git/pkg-java/javafxsvg.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/javafxsvg.git
Homepage: https://github.com/codecentric/javafxsvg
......
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: CenterDevice JavaFxSVG
Source: https://github.com/codecentric/javafxsvg
......
From: Markus Koschany <apo@debian.org>
Date: Wed, 14 Nov 2018 14:15:33 +0100
Subject: javafx
Build-depend on openjfx artifacts explicitly to fix the FTBFS with OpenJFX 11.
Bug-Debian: https://bugs.debian.org/893345
Forwarded: no
---
pom.xml | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/pom.xml b/pom.xml
index 57cbe99..56ed69c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -136,6 +136,21 @@
<artifactId>xmlgraphics-commons</artifactId>
<version>2.1</version>
</dependency>
+ <dependency>
+ <groupId>org.openjfx</groupId>
+ <artifactId>javafx-controls</artifactId>
+ <version>11</version>
+ </dependency>
+ <dependency>
+ <groupId>org.openjfx</groupId>
+ <artifactId>javafx-graphics</artifactId>
+ <version>11</version>
+ </dependency>
+ <dependency>
+ <groupId>org.openjfx</groupId>
+ <artifactId>javafx-fxml</artifactId>
+ <version>11</version>
+ </dependency>
<dependency>
<groupId>org.loadui</groupId>
<artifactId>testFx</artifactId>