Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] Fwd: Re: tycho 0.18.0 re-staged


Worthy of note, if I add a mirror of the latest PMD 4.0 site to my pom
to have it added to the target platform...

     <repository>
      <id>PMD</id>

<url>http://download.jboss.org/jbosstools/updates/requirements/pmd/4.0.0.v20130510-1000/</url>
      <layout>p2</layout>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
      <releases>
        <enabled>true</enabled>
      </releases>
    </repository>

... the build fails with this error:

"The p2 repository at
http://download.jboss.org/jbosstools/updates/requirements/pmd/4.0.0.v20130510-1000
contains units from an old style update site which cannot be used for
dependency resolution"

But if I add a LOCAL repo using file:///, the build's fine.

     <repository>
      <id>PMD</id>

<url>file:///home/nboldt/tru/download.jboss.org/jbosstools/updates/requirements/pmd/4.0.0.v20130510-1000/</url>
      <layout>p2</layout>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
      <releases>
        <enabled>true</enabled>
      </releases>
    </repository>

Why is file:/// acceptable, but http:// is not?

To generate this PMD mirror locally, run this script [1],[2]:

[1]
https://github.com/jbosstools/jbosstools-download.jboss.org/blob/master/jbosstools/updates/requirements/pmd/build.xml
[2]
https://github.com/jbosstools/jbosstools-download.jboss.org/blob/master/jbosstools/updates/requirements/generic/build.xml

N

On 05/28/2013 10:18 AM, Mickael Istria wrote:
This 0.18.0 build of Tycho worked perfectly on SWTBot and JBoss Tools
builds. No regression was noticed, however I did not try the new
features yet.
Also, we've encountered a case where partial IUs prevent the build from
continuing, but that's an issue we'll probably solve on our side.
--
Mickael Istria
Eclipse developer at JBoss, by Red Hat <http://www.jboss.org/tools>
My blog <http://mickaelistria.wordpress.com> - My Tweets
<http://twitter.com/mickaelistria>


_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user


--
Nick Boldt :: JBoss by Red Hat
Productization Lead :: JBoss Tools & Dev Studio
http://nick.divbyzero.com




Back to the top