Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Mount the bundle dependencies before the default dependencies in the compilation classpath
· 9e91d98a
Emmanuel Bourg
authored
Jul 11, 2019
9e91d98a
Standards-Version updated to 4.4.0
· 2716a38e
Emmanuel Bourg
authored
Jul 11, 2019
2716a38e
Upload to unstable
· 81c5eee8
Emmanuel Bourg
authored
Jul 11, 2019
81c5eee8
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
81c5eee8
eclipse-debian-helper (1.6) unstable; urgency=medium
* Mount the bundle dependencies before the default dependencies
in the compilation classpath
* Standards-Version updated to 4.4.0
-- Emmanuel Bourg <ebourg@apache.org> Thu, 11 Jul 2019 13:31:38 +0200
eclipse-debian-helper (1.5) unstable; urgency=medium
* Improved the detection of the bundle name
...
...
debian/control
View file @
81c5eee8
...
...
@@ -4,7 +4,7 @@ Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: Emmanuel Bourg <ebourg@apache.org>
Build-Depends: debhelper (>= 11),
Standards-Version: 4.
2.1
Standards-Version: 4.
4.0
Vcs-Git: https://salsa.debian.org/java-team/eclipse-debian-helper.git
Vcs-Browser: https://salsa.debian.org/java-team/eclipse-debian-helper
Homepage: https://salsa.debian.org/java-team/eclipse-debian-helper
...
...
src/ant/build-eclipse-bundle.xml
View file @
81c5eee8
...
...
@@ -63,11 +63,11 @@
<!-- Compile the source files to target/classes -->
<javac
srcdir=
"${bundle.dir.@{name}}/target/sources"
destdir=
"${bundle.dir.@{name}}/target/classes"
debug=
"yes"
release=
"@{release}"
includeantruntime=
"false"
encoding=
"@{encoding}"
>
<classpath>
<fileset
dir=
"."
includesfile=
"${bundle.dir.@{name}}/target/dependencies"
/>
<bundle-classpath/>
<pathelement
path=
"/usr/share/java/eclipse-osgi.jar"
/>
<pathelement
path=
"/usr/share/java/org.eclipse.osgi.jar"
/>
<pathelement
path=
"/usr/share/java/osgi.compendium.jar"
/>
<fileset
dir=
"."
includesfile=
"${bundle.dir.@{name}}/target/dependencies"
/>
<bundle-classpath/>
</classpath>
</javac>
...
...