Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [egit-dev] argsj4 not built in orbit yet?

I think you need to use
http://download.eclipse.org/tools/orbit/downloads/drops/S20091203150826/updateSite/.

Also, Tycho can pick individual bundle jars from maven repositories,
although I am not sure if this is appropriate for eclipse.org builds.

--
Regards,
Igor

Shawn O. Pearce wrote:
Chris Aniszczyk <zx@xxxxxxxxxxxxxxxxx> wrote:
On Tue, Dec 22, 2009 at 12:09 PM, Shawn O. Pearce <spearce@xxxxxxxxxxx> wrote:
I just tried to move our entire jgit build to be manifest first,
and args4j 2.0.12 isn't available through any p2 repository...
I see args4j available here:
     http://download.eclipse.org/tools/orbit/downloads/drops/S20091203150826/

Aaaah.  So how the heck to I get Tycho to look at this?

diff --git a/pom.xml b/pom.xml
index b71dbd5..5072acd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -125,7 +125,13 @@
     <repository>
       <id>galileo</id>
       <layout>p2</layout>
-      <url>http://download.eclipse.org/releases/galileo</url>
+      <url>http://download.eclipse.org/releases/galileo/</url>
+    </repository>
+
+    <repository>
+      <id>orbit</id>
+      <layout>p2</layout>
+      <url>http://download.eclipse.org/tools/orbit/downloads/drops/S20091203150826/</url>
     </repository>
   </repositories>
Doesn't seem to work, it can't get the repository data about orbit:

[INFO] Adding repository http://download.eclipse.org/tools/orbit/downloads/drops/S20091203150826/

!ENTRY org.eclipse.equinox.p2.metadata.repository 4 0 2009-12-22 10:17:14.624
!MESSAGE Unexpected error loading extension: org.sonatype.tycho.p2.maven.repository.LocalMetadataRepository
!STACK 0
java.lang.IllegalArgumentException: URI scheme is not "file"
	at java.io.File.<init>(File.java:383)
	at org.sonatype.tycho.p2.maven.repository.LocalMetadataRepositoryFactory.load(LocalMetadataRepositoryFactory.java:32)
	at org.eclipse.equinox.internal.p2.metadata.repository.MetadataRepositoryManager.factoryLoad(MetadataRepositoryManager.java:54)
	at org.eclipse.equinox.internal.p2.repository.helpers.AbstractRepositoryManager.loadRepository(AbstractRepositoryManager.java:669)
...




Back to the top