Skip to content
Commits on Source (3)
tycho (1.3.0-2) unstable; urgency=medium
* Team upload.
[ Sudip Mukherjee ]
* Remove dependency on tycho-1.2.0
-- Sudip Mukherjee <sudipm.mukherjee@gmail.com> Sat, 14 Dec 2019 14:25:20 +0000
tycho (1.3.0-1) unstable; urgency=medium tycho (1.3.0-1) unstable; urgency=medium
* Team upload. * Team upload.
......
...@@ -59,7 +59,6 @@ Build-Depends: ...@@ -59,7 +59,6 @@ Build-Depends:
maven-debian-helper, maven-debian-helper,
rsync, rsync,
zip, zip,
libtycho-java (>=1.2.0),
libecj-java libecj-java
Standards-Version: 4.4.1 Standards-Version: 4.4.1
Vcs-Git: https://salsa.debian.org/java-team/tycho.git Vcs-Git: https://salsa.debian.org/java-team/tycho.git
......
Description: tycho-lib-detector: remove dependency on previous tycho
After tycho-1.3.0 was added to unstable, tycho-1.2.0 was removed. And
since this tycho depends on tycho-1.2.0, the build was failing.
LibraryDetector.java does not seem to use anything particular from
previous tycho, so remove the dependency.
Author: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Forwarded: no
--- a/tycho-lib-detector/pom.xml
+++ b/tycho-lib-detector/pom.xml
@@ -30,15 +30,7 @@
<!-- make sure we use minimum source/target level as this code will be run in old JVMs -->
<source>1.3</source>
<target>1.1</target>
- <compilerId>jdt</compilerId>
</configuration>
- <dependencies>
- <dependency>
- <groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-compiler-jdt</artifactId>
- <version>${tychoBootstrapVersion}</version>
- </dependency>
- </dependencies>
</plugin>
</plugins>
</pluginManagement>
...@@ -4,3 +4,4 @@ fix-packaging.patch ...@@ -4,3 +4,4 @@ fix-packaging.patch
mockito.patch mockito.patch
explicit-exception-messages.patch explicit-exception-messages.patch
aether.patch aether.patch
remove_dependency.patch