File: jaxb-dependency.patch

package info (click to toggle)
android-platform-frameworks-data-binding 2.2.2-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 17,684 kB
  • sloc: xml: 61,409; java: 34,065; sh: 125; makefile: 10
file content (21 lines) | stat: -rw-r--r-- 909 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Description: Adds an explicit dependency on JAXB to fix the build failure witjh Java 9 and later
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: no
Bug-Debian: https://bugs.debian.org/894287
--- a/compilerCommon/build.gradle
+++ b/compilerCommon/build.gradle
@@ -41,6 +41,7 @@
     compile 'com.googlecode.juniversalchardet:juniversalchardet:1.0.3'
     compile 'com.google.guava:guava:17.0'
     compile 'com.android.tools:annotations:24.5.0'
+    compile 'javax.xml.bind:jaxb-api:debian'
 }
 
 project.tasks.create(name : "generateXmlLexer", type : JavaExec) {
@@ -86,4 +87,4 @@
 tasks['exportBuildVersions'].dependsOn('processResources')
 
 project.ext.pomName = 'Data Binding Compiler Common'
-project.ext.pomDesc = 'Common library that can be shared between different build tools'
\ No newline at end of file
+project.ext.pomDesc = 'Common library that can be shared between different build tools'