Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Tycho milestone 0.24.0 released

Hi Bruno,


looks like a you are using cygwin and so it might be that you are running into this [1]  maven bug.


-martin


[1] https://issues.apache.org/jira/browse/MNG-5873


Von: tycho-user-bounces@xxxxxxxxxxx <tycho-user-bounces@xxxxxxxxxxx> im Auftrag von Bruno Medeiros <bruno.do.medeiros@xxxxxxxxx>
Gesendet: Mittwoch, 04. November 2015 17:48
An: Tycho user list
Betreff: Re: [tycho-user] Tycho milestone 0.24.0 released
 
Yes, the `.mvn/extensions.xml` is at the root of the build. However, it does seem this file is not being read at all. If I change the xml to invalid XML, and then run the Maven build, no errors are reported.


Bruno@Forge2 /cygdrive/d/devel/DDT/LangEclipseIDE.git
$ cat .mvn/extensions.xml

<?xml version="1.0" encoding="UTF-8"?>
<extensions>
  <extension>
    <groupId>org.eclipse.tycho.extras</groupId>
    <artifactId>tycho-pomless</artifactId>
    <version>0.24.0</version>
  </extension>
</extensions>
Bruno@Forge2 /cygdrive/d/devel/DDT/LangEclipseIDE.git
$ mvn --version

Apache Maven 3.3.3 (7994120775791599e205a5524ec3e0dfe41d4a06; 2015-04-22T12:57:37+01:00)
Maven home: D:\devel\tools\apache-maven
Java version: 1.8.0_45, vendor: Oracle Corporation
Java home: D:\devel\tools\jdk8\jre
Default locale: en_GB, platform encoding: Cp1252
OS name: "windows 7", version: "6.1", arch: "amd64", family: "dos"

Bruno@Forge2 /cygdrive/d/devel/DDT/LangEclipseIDE.git
$ mvn clean package


...



On Wed, Nov 4, 2015 at 3:15 PM, SCHREIBER.Martin <Martin.SCHREIBER@xxxxxxxxxxxxx> wrote:

Hi Bruno,

where have you placed the .mvn/extensions.xml file? Make sure it is in the root of your build. E.g. if you have your project in C:/myproject/ and your parent pom in C:/myproject/pom.xml, the extensions.xml file has to be in C:/myproject/.mvn/extensions.xml.

The other stuff (staged repo or tycho snapshot repo definition) is not needed anymore, since 0.24.0 is released now.

hth

martin




Von: tycho-user-bounces@xxxxxxxxxxx <tycho-user-bounces@xxxxxxxxxxx> im Auftrag von Bruno Medeiros <bruno.do.medeiros@xxxxxxxxx>
Gesendet: Dienstag, 03. November 2015 13:25
An: Tycho user list
Betreff: Re: [tycho-user] Tycho milestone 0.24.0 released
 
I was trying this new feature, but couldn't get it to work. I still get  "Child module [...] pom.xml does not exist" errors.

Are the instructions in https://wiki.eclipse.org/Tycho/Release_Notes/0.24 all that is necessary to set this up? What does this line mean: "While trying the staged version, above snippet with the staged repo must be added to your settings.xml" ?  I'm not entirely familiar with Maven.

I see that the sample build ( http://git.eclipse.org/c/tycho/org.eclipse.tycho.extras.git/tree/tycho-extras-its/src/test/resources/testpomless ) has additional configuration in pom.xml, such as:

      <pluginRepository>
            <id>tycho-snapshots</id>
            <url>${tycho-snapshots-url}</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </pluginRepository>
    </pluginRepositories>


Is this necessary, and if so what is tycho-snapshots-url supposed to be?


On Fri, Oct 30, 2015 at 2:36 PM, Sievers, Jan <jan.sievers@xxxxxxx> wrote:
Tycho milestone 0.24.0 has been released and is available from maven central.
See the release notes [1] for details of enhancements and bug fixes in this release.

Thanks to:

Alexander Kurtakov
Lars Vogel
Mickael Istria
Mikolaj Izdebski

who contributed patches for this release.

And thanks and to everyone who helped us with testing the staged version.

Regards,
Tycho team

[1] http://wiki.eclipse.org/Tycho/Release_Notes/0.24

_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/tycho-user



--

_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/tycho-user



--

Back to the top