Building trunk (issue)

View: New views
20 Messages — Rating Filter:   Alert me  
< Prev | 1 - 2 - 3 | Next >

Building trunk (issue)

by olamy-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,
I usually build the plugin from the trunk in order to tests the plugin
with the last changes.
I use the tycho pseudo release 0.4.0-DEV-3170 found here [1]
But since today (with a clean repo), I have the following error :

1) org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170

  Try downloading the file manually from the project website.

  Then, install it using the command:
      mvn install:install-file -DgroupId=org.codehaus.tycho
-DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
-Dpackaging=maven-plugin -Dfile=/path/to/file

  Alternatively, if you host your own repository you can deploy the file there:
      mvn deploy:deploy-file -DgroupId=org.codehaus.tycho
-DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
-Dpackaging=maven-plugin -Dfile=/path/to/file -Durl=[url]
-DrepositoryId=[id]

----------
1 required artifact is missing.

for artifact:
  org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170

I usually use snapshots repositories from the sonatype repos. If I
search this version in nexus ui, I can't find it.

Do I have to use an other tycho version ?

--
Olivier

[1] http://repository.sonatype.org/content/repositories/tycho-pseudo-releases/org/codehaus/tycho/tycho-distribution/

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by hgomez :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Olivier.

Did you have a guide on how to build m2eclipse from the trunk ?

I'd like to do the same.

Regards

2009/10/28 Olivier Lamy <olamy@...>:

> Hi,
> I usually build the plugin from the trunk in order to tests the plugin
> with the last changes.
> I use the tycho pseudo release 0.4.0-DEV-3170 found here [1]
> But since today (with a clean repo), I have the following error :
>
> 1) org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>
>  Try downloading the file manually from the project website.
>
>  Then, install it using the command:
>      mvn install:install-file -DgroupId=org.codehaus.tycho
> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
> -Dpackaging=maven-plugin -Dfile=/path/to/file
>
>  Alternatively, if you host your own repository you can deploy the file there:
>      mvn deploy:deploy-file -DgroupId=org.codehaus.tycho
> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
> -Dpackaging=maven-plugin -Dfile=/path/to/file -Durl=[url]
> -DrepositoryId=[id]
>
> ----------
> 1 required artifact is missing.
>
> for artifact:
>  org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>
> I usually use snapshots repositories from the sonatype repos. If I
> search this version in nexus ui, I can't find it.
>
> Do I have to use an other tycho version ?
>
> --
> Olivier
>
> [1] http://repository.sonatype.org/content/repositories/tycho-pseudo-releases/org/codehaus/tycho/tycho-distribution/
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>
>

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by olamy-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,
What I do (did) to share this with colleagues.
Setup a hudson job ("free-style").
"Invoke top-level Maven targets" section which use a tycho maven version.
clean install -f org.maven.ide.eclipse.parent/pom.xml
-Dmaven.test.skipExec=true -U -V -s
/local/maven/.m2/settings-tycho.xml
Note the dedicated settings (because I have only a oss nexus version
without p2 support).
So I have :
    <mirror>
      <mirrorOf>external:*</mirrorOf>
      <name>proxy central all</name>
      <url>http://ip:port/nexus/content/groups/all-repos/</url>
      <id>proxy-all</id>
      <mirrorOfLayouts>default,legacy</mirrorOfLayouts>
    </mirror>

Then some shell commands :
rm -rf /local/maven/m2eclipse/update-dev/*

cp -r $WORKSPACE/trunk/org.maven.ide.eclipse.update/target/site/
/local/maven/m2eclipse/update-dev/

And I have setup an httpd instance with the following content :

Alias /m2eclipse-dev "/local/maven/m2eclipse/update-dev"
<Directory "/local/maven/m2eclipse/update-dev">
    Options All
    Allow from All
    AllowOverride FileInfo
    IndexOptions +FancyIndexing +NameWidth=*
</Directory>

And you have an update site with a trunk build.

But now I can't do it anymore due to the issue in my first email.

HTH,
--
Olivier

2009/10/28 Henri Gomez <henri.gomez@...>:

> Hi Olivier.
>
> Did you have a guide on how to build m2eclipse from the trunk ?
>
> I'd like to do the same.
>
> Regards
>
> 2009/10/28 Olivier Lamy <olamy@...>:
>> Hi,
>> I usually build the plugin from the trunk in order to tests the plugin
>> with the last changes.
>> I use the tycho pseudo release 0.4.0-DEV-3170 found here [1]
>> But since today (with a clean repo), I have the following error :
>>
>> 1) org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>>
>>  Try downloading the file manually from the project website.
>>
>>  Then, install it using the command:
>>      mvn install:install-file -DgroupId=org.codehaus.tycho
>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>> -Dpackaging=maven-plugin -Dfile=/path/to/file
>>
>>  Alternatively, if you host your own repository you can deploy the file there:
>>      mvn deploy:deploy-file -DgroupId=org.codehaus.tycho
>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>> -Dpackaging=maven-plugin -Dfile=/path/to/file -Durl=[url]
>> -DrepositoryId=[id]
>>
>> ----------
>> 1 required artifact is missing.
>>
>> for artifact:
>>  org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>>
>> I usually use snapshots repositories from the sonatype repos. If I
>> search this version in nexus ui, I can't find it.
>>
>> Do I have to use an other tycho version ?
>>
>> --
>> Olivier
>>
>> [1] http://repository.sonatype.org/content/repositories/tycho-pseudo-releases/org/codehaus/tycho/tycho-distribution/
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>    http://xircles.codehaus.org/manage_email
>>
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>
>



--
Olivier

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by hgomez :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Great Olivier.

Same config here (Hudson, Nexus OSS and Apache 2 fully loaded of vhosts !)

But I was using a regular Maven 2.2.1 and not the Tycho version.
I'll do that


2009/10/28 Olivier Lamy <olamy@...>:

> Hi,
> What I do (did) to share this with colleagues.
> Setup a hudson job ("free-style").
> "Invoke top-level Maven targets" section which use a tycho maven version.
> clean install -f org.maven.ide.eclipse.parent/pom.xml
> -Dmaven.test.skipExec=true -U -V -s
> /local/maven/.m2/settings-tycho.xml
> Note the dedicated settings (because I have only a oss nexus version
> without p2 support).
> So I have :
>    <mirror>
>      <mirrorOf>external:*</mirrorOf>
>      <name>proxy central all</name>
>      <url>http://ip:port/nexus/content/groups/all-repos/</url>
>      <id>proxy-all</id>
>      <mirrorOfLayouts>default,legacy</mirrorOfLayouts>
>    </mirror>
>
> Then some shell commands :
> rm -rf /local/maven/m2eclipse/update-dev/*
>
> cp -r $WORKSPACE/trunk/org.maven.ide.eclipse.update/target/site/
> /local/maven/m2eclipse/update-dev/
>
> And I have setup an httpd instance with the following content :
>
> Alias /m2eclipse-dev "/local/maven/m2eclipse/update-dev"
> <Directory "/local/maven/m2eclipse/update-dev">
>    Options All
>    Allow from All
>    AllowOverride FileInfo
>    IndexOptions +FancyIndexing +NameWidth=*
> </Directory>
>
> And you have an update site with a trunk build.
>
> But now I can't do it anymore due to the issue in my first email.
>
> HTH,
> --
> Olivier
>
> 2009/10/28 Henri Gomez <henri.gomez@...>:
>> Hi Olivier.
>>
>> Did you have a guide on how to build m2eclipse from the trunk ?
>>
>> I'd like to do the same.
>>
>> Regards
>>
>> 2009/10/28 Olivier Lamy <olamy@...>:
>>> Hi,
>>> I usually build the plugin from the trunk in order to tests the plugin
>>> with the last changes.
>>> I use the tycho pseudo release 0.4.0-DEV-3170 found here [1]
>>> But since today (with a clean repo), I have the following error :
>>>
>>> 1) org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>>>
>>>  Try downloading the file manually from the project website.
>>>
>>>  Then, install it using the command:
>>>      mvn install:install-file -DgroupId=org.codehaus.tycho
>>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>>> -Dpackaging=maven-plugin -Dfile=/path/to/file
>>>
>>>  Alternatively, if you host your own repository you can deploy the file there:
>>>      mvn deploy:deploy-file -DgroupId=org.codehaus.tycho
>>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>>> -Dpackaging=maven-plugin -Dfile=/path/to/file -Durl=[url]
>>> -DrepositoryId=[id]
>>>
>>> ----------
>>> 1 required artifact is missing.
>>>
>>> for artifact:
>>>  org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>>>
>>> I usually use snapshots repositories from the sonatype repos. If I
>>> search this version in nexus ui, I can't find it.
>>>
>>> Do I have to use an other tycho version ?
>>>
>>> --
>>> Olivier
>>>
>>> [1] http://repository.sonatype.org/content/repositories/tycho-pseudo-releases/org/codehaus/tycho/tycho-distribution/
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe from this list, please visit:
>>>
>>>    http://xircles.codehaus.org/manage_email
>>>
>>>
>>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>    http://xircles.codehaus.org/manage_email
>>
>>
>>
>
>
>
> --
> Olivier
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>
>

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by hgomez :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

It seems there is a 0.5.0-SNAPSHOT and no more 0.4.0-SNAPSHOTs ;(

http://repository.sonatype.org/content/groups/public/org/codehaus/tycho/tycho-maven-plugin/0.5.0-SNAPSHOT/



2009/10/28 Olivier Lamy <olamy@...>:

> Hi,
> I usually build the plugin from the trunk in order to tests the plugin
> with the last changes.
> I use the tycho pseudo release 0.4.0-DEV-3170 found here [1]
> But since today (with a clean repo), I have the following error :
>
> 1) org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>
>  Try downloading the file manually from the project website.
>
>  Then, install it using the command:
>      mvn install:install-file -DgroupId=org.codehaus.tycho
> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
> -Dpackaging=maven-plugin -Dfile=/path/to/file
>
>  Alternatively, if you host your own repository you can deploy the file there:
>      mvn deploy:deploy-file -DgroupId=org.codehaus.tycho
> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
> -Dpackaging=maven-plugin -Dfile=/path/to/file -Durl=[url]
> -DrepositoryId=[id]
>
> ----------
> 1 required artifact is missing.
>
> for artifact:
>  org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>
> I usually use snapshots repositories from the sonatype repos. If I
> search this version in nexus ui, I can't find it.
>
> Do I have to use an other tycho version ?
>
> --
> Olivier
>
> [1] http://repository.sonatype.org/content/repositories/tycho-pseudo-releases/org/codehaus/tycho/tycho-distribution/
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>
>

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by jvanzyl :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I'm working on the Tycho site but here are the instructions for  
building Tycho:

http://www.sonatype.org/~j2ee-hudson/sites/tycho-site/buildingtycho.html

Still a work in progress but you can try building tycho and then  
building m2eclipse. Feedback appreciated.

On 2009-10-28, at 10:16 AM, Henri Gomez wrote:

> It seems there is a 0.5.0-SNAPSHOT and no more 0.4.0-SNAPSHOTs ;(
>
> http://repository.sonatype.org/content/groups/public/org/codehaus/tycho/tycho-maven-plugin/0.5.0-SNAPSHOT/
>
>
>
> 2009/10/28 Olivier Lamy <olamy@...>:
>> Hi,
>> I usually build the plugin from the trunk in order to tests the  
>> plugin
>> with the last changes.
>> I use the tycho pseudo release 0.4.0-DEV-3170 found here [1]
>> But since today (with a clean repo), I have the following error :
>>
>> 1) org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>>
>>  Try downloading the file manually from the project website.
>>
>>  Then, install it using the command:
>>      mvn install:install-file -DgroupId=org.codehaus.tycho
>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>> -Dpackaging=maven-plugin -Dfile=/path/to/file
>>
>>  Alternatively, if you host your own repository you can deploy the  
>> file there:
>>      mvn deploy:deploy-file -DgroupId=org.codehaus.tycho
>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>> -Dpackaging=maven-plugin -Dfile=/path/to/file -Durl=[url]
>> -DrepositoryId=[id]
>>
>> ----------
>> 1 required artifact is missing.
>>
>> for artifact:
>>  org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>>
>> I usually use snapshots repositories from the sonatype repos. If I
>> search this version in nexus ui, I can't find it.
>>
>> Do I have to use an other tycho version ?
>>
>> --
>> Olivier
>>
>> [1] http://repository.sonatype.org/content/repositories/tycho-pseudo-releases/org/codehaus/tycho/tycho-distribution/
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>    http://xircles.codehaus.org/manage_email
>>
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>

Thanks,

Jason

----------------------------------------------------------
Jason van Zyl
Founder,  Apache Maven
http://twitter.com/jvanzyl
----------------------------------------------------------


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by jvanzyl :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I'm working on the Tycho site but here are the instructions for  
building Tycho:

http://www.sonatype.org/~j2ee-hudson/sites/tycho-site/buildingtycho.html

Still a work in progress but you can try building tycho and then  
building m2eclipse. Feedback appreciated.

On 2009-10-28, at 10:16 AM, Henri Gomez wrote:

> It seems there is a 0.5.0-SNAPSHOT and no more 0.4.0-SNAPSHOTs ;(
>
> http://repository.sonatype.org/content/groups/public/org/codehaus/tycho/tycho-maven-plugin/0.5.0-SNAPSHOT/
>
>
>
> 2009/10/28 Olivier Lamy <olamy@...>:
>> Hi,
>> I usually build the plugin from the trunk in order to tests the  
>> plugin
>> with the last changes.
>> I use the tycho pseudo release 0.4.0-DEV-3170 found here [1]
>> But since today (with a clean repo), I have the following error :
>>
>> 1) org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>>
>> Try downloading the file manually from the project website.
>>
>> Then, install it using the command:
>>     mvn install:install-file -DgroupId=org.codehaus.tycho
>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>> -Dpackaging=maven-plugin -Dfile=/path/to/file
>>
>> Alternatively, if you host your own repository you can deploy the  
>> file there:
>>     mvn deploy:deploy-file -DgroupId=org.codehaus.tycho
>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>> -Dpackaging=maven-plugin -Dfile=/path/to/file -Durl=[url]
>> -DrepositoryId=[id]
>>
>> ----------
>> 1 required artifact is missing.
>>
>> for artifact:
>> org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>>
>> I usually use snapshots repositories from the sonatype repos. If I
>> search this version in nexus ui, I can't find it.
>>
>> Do I have to use an other tycho version ?
>>
>> --
>> Olivier
>>
>> [1] http://repository.sonatype.org/content/repositories/tycho-pseudo-releases/org/codehaus/tycho/tycho-distribution/
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>   http://xircles.codehaus.org/manage_email
>>
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>   http://xircles.codehaus.org/manage_email
>
>

Thanks,

Jason

----------------------------------------------------------
Jason van Zyl
Founder,  Apache Maven
http://twitter.com/jvanzyl
----------------------------------------------------------


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by olamy-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

perfect (I usually prefer a README.TXT but that's nice too :-) ).



2009/10/28 Jason van Zyl <jason@...>:

> I'm working on the Tycho site but here are the instructions for building
> Tycho:
>
> http://www.sonatype.org/~j2ee-hudson/sites/tycho-site/buildingtycho.html
>
> Still a work in progress but you can try building tycho and then building
> m2eclipse. Feedback appreciated.
>
> On 2009-10-28, at 10:16 AM, Henri Gomez wrote:
>
>> It seems there is a 0.5.0-SNAPSHOT and no more 0.4.0-SNAPSHOTs ;(
>>
>>
>> http://repository.sonatype.org/content/groups/public/org/codehaus/tycho/tycho-maven-plugin/0.5.0-SNAPSHOT/
>>
>>
>>
>> 2009/10/28 Olivier Lamy <olamy@...>:
>>>
>>> Hi,
>>> I usually build the plugin from the trunk in order to tests the plugin
>>> with the last changes.
>>> I use the tycho pseudo release 0.4.0-DEV-3170 found here [1]
>>> But since today (with a clean repo), I have the following error :
>>>
>>> 1) org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>>>
>>> Try downloading the file manually from the project website.
>>>
>>> Then, install it using the command:
>>>    mvn install:install-file -DgroupId=org.codehaus.tycho
>>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>>> -Dpackaging=maven-plugin -Dfile=/path/to/file
>>>
>>> Alternatively, if you host your own repository you can deploy the file
>>> there:
>>>    mvn deploy:deploy-file -DgroupId=org.codehaus.tycho
>>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>>> -Dpackaging=maven-plugin -Dfile=/path/to/file -Durl=[url]
>>> -DrepositoryId=[id]
>>>
>>> ----------
>>> 1 required artifact is missing.
>>>
>>> for artifact:
>>> org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>>>
>>> I usually use snapshots repositories from the sonatype repos. If I
>>> search this version in nexus ui, I can't find it.
>>>
>>> Do I have to use an other tycho version ?
>>>
>>> --
>>> Olivier
>>>
>>> [1]
>>> http://repository.sonatype.org/content/repositories/tycho-pseudo-releases/org/codehaus/tycho/tycho-distribution/
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe from this list, please visit:
>>>
>>>  http://xircles.codehaus.org/manage_email
>>>
>>>
>>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>  http://xircles.codehaus.org/manage_email
>>
>>
>
> Thanks,
>
> Jason
>
> ----------------------------------------------------------
> Jason van Zyl
> Founder,  Apache Maven
> http://twitter.com/jvanzyl
> ----------------------------------------------------------
>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>   http://xircles.codehaus.org/manage_email
>
>
>



--
Olivier

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by jvanzyl :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I generate everything from Confluence.

On 2009-10-28, at 12:42 PM, Olivier Lamy wrote:

> perfect (I usually prefer a README.TXT but that's nice too :-) ).
>
>
>
> 2009/10/28 Jason van Zyl <jason@...>:
>> I'm working on the Tycho site but here are the instructions for  
>> building
>> Tycho:
>>
>> http://www.sonatype.org/~j2ee-hudson/sites/tycho-site/buildingtycho.html
>>
>> Still a work in progress but you can try building tycho and then  
>> building
>> m2eclipse. Feedback appreciated.
>>
>> On 2009-10-28, at 10:16 AM, Henri Gomez wrote:
>>
>>> It seems there is a 0.5.0-SNAPSHOT and no more 0.4.0-SNAPSHOTs ;(
>>>
>>>
>>> http://repository.sonatype.org/content/groups/public/org/codehaus/tycho/tycho-maven-plugin/0.5.0-SNAPSHOT/
>>>
>>>
>>>
>>> 2009/10/28 Olivier Lamy <olamy@...>:
>>>>
>>>> Hi,
>>>> I usually build the plugin from the trunk in order to tests the  
>>>> plugin
>>>> with the last changes.
>>>> I use the tycho pseudo release 0.4.0-DEV-3170 found here [1]
>>>> But since today (with a clean repo), I have the following error :
>>>>
>>>> 1) org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-
>>>> DEV-3170
>>>>
>>>> Try downloading the file manually from the project website.
>>>>
>>>> Then, install it using the command:
>>>>    mvn install:install-file -DgroupId=org.codehaus.tycho
>>>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>>>> -Dpackaging=maven-plugin -Dfile=/path/to/file
>>>>
>>>> Alternatively, if you host your own repository you can deploy the  
>>>> file
>>>> there:
>>>>    mvn deploy:deploy-file -DgroupId=org.codehaus.tycho
>>>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>>>> -Dpackaging=maven-plugin -Dfile=/path/to/file -Durl=[url]
>>>> -DrepositoryId=[id]
>>>>
>>>> ----------
>>>> 1 required artifact is missing.
>>>>
>>>> for artifact:
>>>> org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>>>>
>>>> I usually use snapshots repositories from the sonatype repos. If I
>>>> search this version in nexus ui, I can't find it.
>>>>
>>>> Do I have to use an other tycho version ?
>>>>
>>>> --
>>>> Olivier
>>>>
>>>> [1]
>>>> http://repository.sonatype.org/content/repositories/tycho-pseudo-releases/org/codehaus/tycho/tycho-distribution/
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe from this list, please visit:
>>>>
>>>>  http://xircles.codehaus.org/manage_email
>>>>
>>>>
>>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe from this list, please visit:
>>>
>>>  http://xircles.codehaus.org/manage_email
>>>
>>>
>>
>> Thanks,
>>
>> Jason
>>
>> ----------------------------------------------------------
>> Jason van Zyl
>> Founder,  Apache Maven
>> http://twitter.com/jvanzyl
>> ----------------------------------------------------------
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>   http://xircles.codehaus.org/manage_email
>>
>>
>>
>
>
>
> --
> Olivier
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>

Thanks,

Jason

----------------------------------------------------------
Jason van Zyl
Founder,  Apache Maven
http://twitter.com/jvanzyl
----------------------------------------------------------


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by jvanzyl :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I also tried this with a clean local repository and no settings.xml so  
it should work out of the box.

I will continue working on the docs.

I'm continually publishing here:

http://www.sonatype.org/~j2ee-hudson/sites/tycho-site/

If you want to take a look. It won't be coherent for a couple days.

On 2009-10-28, at 12:42 PM, Olivier Lamy wrote:

> perfect (I usually prefer a README.TXT but that's nice too :-) ).
>
>
>
> 2009/10/28 Jason van Zyl <jason@...>:
>> I'm working on the Tycho site but here are the instructions for  
>> building
>> Tycho:
>>
>> http://www.sonatype.org/~j2ee-hudson/sites/tycho-site/buildingtycho.html
>>
>> Still a work in progress but you can try building tycho and then  
>> building
>> m2eclipse. Feedback appreciated.
>>
>> On 2009-10-28, at 10:16 AM, Henri Gomez wrote:
>>
>>> It seems there is a 0.5.0-SNAPSHOT and no more 0.4.0-SNAPSHOTs ;(
>>>
>>>
>>> http://repository.sonatype.org/content/groups/public/org/codehaus/tycho/tycho-maven-plugin/0.5.0-SNAPSHOT/
>>>
>>>
>>>
>>> 2009/10/28 Olivier Lamy <olamy@...>:
>>>>
>>>> Hi,
>>>> I usually build the plugin from the trunk in order to tests the  
>>>> plugin
>>>> with the last changes.
>>>> I use the tycho pseudo release 0.4.0-DEV-3170 found here [1]
>>>> But since today (with a clean repo), I have the following error :
>>>>
>>>> 1) org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-
>>>> DEV-3170
>>>>
>>>> Try downloading the file manually from the project website.
>>>>
>>>> Then, install it using the command:
>>>>    mvn install:install-file -DgroupId=org.codehaus.tycho
>>>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>>>> -Dpackaging=maven-plugin -Dfile=/path/to/file
>>>>
>>>> Alternatively, if you host your own repository you can deploy the  
>>>> file
>>>> there:
>>>>    mvn deploy:deploy-file -DgroupId=org.codehaus.tycho
>>>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>>>> -Dpackaging=maven-plugin -Dfile=/path/to/file -Durl=[url]
>>>> -DrepositoryId=[id]
>>>>
>>>> ----------
>>>> 1 required artifact is missing.
>>>>
>>>> for artifact:
>>>> org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>>>>
>>>> I usually use snapshots repositories from the sonatype repos. If I
>>>> search this version in nexus ui, I can't find it.
>>>>
>>>> Do I have to use an other tycho version ?
>>>>
>>>> --
>>>> Olivier
>>>>
>>>> [1]
>>>> http://repository.sonatype.org/content/repositories/tycho-pseudo-releases/org/codehaus/tycho/tycho-distribution/
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe from this list, please visit:
>>>>
>>>>  http://xircles.codehaus.org/manage_email
>>>>
>>>>
>>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe from this list, please visit:
>>>
>>>  http://xircles.codehaus.org/manage_email
>>>
>>>
>>
>> Thanks,
>>
>> Jason
>>
>> ----------------------------------------------------------
>> Jason van Zyl
>> Founder,  Apache Maven
>> http://twitter.com/jvanzyl
>> ----------------------------------------------------------
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>   http://xircles.codehaus.org/manage_email
>>
>>
>>
>
>
>
> --
> Olivier
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>

Thanks,

Jason

----------------------------------------------------------
Jason van Zyl
Founder,  Apache Maven
http://twitter.com/jvanzyl
----------------------------------------------------------


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by hgomez :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

So we should use a new tycho (from the trunk) to build m2eclipse after ?

2009/10/28 Jason van Zyl <jason@...>:

> I also tried this with a clean local repository and no settings.xml so it
> should work out of the box.
>
> I will continue working on the docs.
>
> I'm continually publishing here:
>
> http://www.sonatype.org/~j2ee-hudson/sites/tycho-site/
>
> If you want to take a look. It won't be coherent for a couple days.
>
> On 2009-10-28, at 12:42 PM, Olivier Lamy wrote:
>
>> perfect (I usually prefer a README.TXT but that's nice too :-) ).
>>
>>
>>
>> 2009/10/28 Jason van Zyl <jason@...>:
>>>
>>> I'm working on the Tycho site but here are the instructions for building
>>> Tycho:
>>>
>>> http://www.sonatype.org/~j2ee-hudson/sites/tycho-site/buildingtycho.html
>>>
>>> Still a work in progress but you can try building tycho and then building
>>> m2eclipse. Feedback appreciated.
>>>
>>> On 2009-10-28, at 10:16 AM, Henri Gomez wrote:
>>>
>>>> It seems there is a 0.5.0-SNAPSHOT and no more 0.4.0-SNAPSHOTs ;(
>>>>
>>>>
>>>>
>>>> http://repository.sonatype.org/content/groups/public/org/codehaus/tycho/tycho-maven-plugin/0.5.0-SNAPSHOT/
>>>>
>>>>
>>>>
>>>> 2009/10/28 Olivier Lamy <olamy@...>:
>>>>>
>>>>> Hi,
>>>>> I usually build the plugin from the trunk in order to tests the plugin
>>>>> with the last changes.
>>>>> I use the tycho pseudo release 0.4.0-DEV-3170 found here [1]
>>>>> But since today (with a clean repo), I have the following error :
>>>>>
>>>>> 1) org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>>>>>
>>>>> Try downloading the file manually from the project website.
>>>>>
>>>>> Then, install it using the command:
>>>>>   mvn install:install-file -DgroupId=org.codehaus.tycho
>>>>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>>>>> -Dpackaging=maven-plugin -Dfile=/path/to/file
>>>>>
>>>>> Alternatively, if you host your own repository you can deploy the file
>>>>> there:
>>>>>   mvn deploy:deploy-file -DgroupId=org.codehaus.tycho
>>>>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>>>>> -Dpackaging=maven-plugin -Dfile=/path/to/file -Durl=[url]
>>>>> -DrepositoryId=[id]
>>>>>
>>>>> ----------
>>>>> 1 required artifact is missing.
>>>>>
>>>>> for artifact:
>>>>> org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>>>>>
>>>>> I usually use snapshots repositories from the sonatype repos. If I
>>>>> search this version in nexus ui, I can't find it.
>>>>>
>>>>> Do I have to use an other tycho version ?
>>>>>
>>>>> --
>>>>> Olivier
>>>>>
>>>>> [1]
>>>>>
>>>>> http://repository.sonatype.org/content/repositories/tycho-pseudo-releases/org/codehaus/tycho/tycho-distribution/
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe from this list, please visit:
>>>>>
>>>>>  http://xircles.codehaus.org/manage_email
>>>>>
>>>>>
>>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe from this list, please visit:
>>>>
>>>>  http://xircles.codehaus.org/manage_email
>>>>
>>>>
>>>
>>> Thanks,
>>>
>>> Jason
>>>
>>> ----------------------------------------------------------
>>> Jason van Zyl
>>> Founder,  Apache Maven
>>> http://twitter.com/jvanzyl
>>> ----------------------------------------------------------
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe from this list, please visit:
>>>
>>>  http://xircles.codehaus.org/manage_email
>>>
>>>
>>>
>>
>>
>>
>> --
>> Olivier
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>   http://xircles.codehaus.org/manage_email
>>
>>
>
> Thanks,
>
> Jason
>
> ----------------------------------------------------------
> Jason van Zyl
> Founder,  Apache Maven
> http://twitter.com/jvanzyl
> ----------------------------------------------------------
>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>   http://xircles.codehaus.org/manage_email
>
>
>

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by olamy-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

You can only use current mvn trunk.
Perso, I have deployed tycho stuff in a company repo.
Just deploy with the two following options :

-DforgeSnapshotId=${id coming from your setting with write access to the repo}
-DforgeSnapshotUrl=http://ip:port/nexus/content/repositories/internal-opensource-snapshots/

And tycho is deployed in a repo.

--
Olivier

2009/10/28 Henri Gomez <henri.gomez@...>:

> So we should use a new tycho (from the trunk) to build m2eclipse after ?
>
> 2009/10/28 Jason van Zyl <jason@...>:
>> I also tried this with a clean local repository and no settings.xml so it
>> should work out of the box.
>>
>> I will continue working on the docs.
>>
>> I'm continually publishing here:
>>
>> http://www.sonatype.org/~j2ee-hudson/sites/tycho-site/
>>
>> If you want to take a look. It won't be coherent for a couple days.
>>
>> On 2009-10-28, at 12:42 PM, Olivier Lamy wrote:
>>
>>> perfect (I usually prefer a README.TXT but that's nice too :-) ).
>>>
>>>
>>>
>>> 2009/10/28 Jason van Zyl <jason@...>:
>>>>
>>>> I'm working on the Tycho site but here are the instructions for building
>>>> Tycho:
>>>>
>>>> http://www.sonatype.org/~j2ee-hudson/sites/tycho-site/buildingtycho.html
>>>>
>>>> Still a work in progress but you can try building tycho and then building
>>>> m2eclipse. Feedback appreciated.
>>>>
>>>> On 2009-10-28, at 10:16 AM, Henri Gomez wrote:
>>>>
>>>>> It seems there is a 0.5.0-SNAPSHOT and no more 0.4.0-SNAPSHOTs ;(
>>>>>
>>>>>
>>>>>
>>>>> http://repository.sonatype.org/content/groups/public/org/codehaus/tycho/tycho-maven-plugin/0.5.0-SNAPSHOT/
>>>>>
>>>>>
>>>>>
>>>>> 2009/10/28 Olivier Lamy <olamy@...>:
>>>>>>
>>>>>> Hi,
>>>>>> I usually build the plugin from the trunk in order to tests the plugin
>>>>>> with the last changes.
>>>>>> I use the tycho pseudo release 0.4.0-DEV-3170 found here [1]
>>>>>> But since today (with a clean repo), I have the following error :
>>>>>>
>>>>>> 1) org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>>>>>>
>>>>>> Try downloading the file manually from the project website.
>>>>>>
>>>>>> Then, install it using the command:
>>>>>>   mvn install:install-file -DgroupId=org.codehaus.tycho
>>>>>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>>>>>> -Dpackaging=maven-plugin -Dfile=/path/to/file
>>>>>>
>>>>>> Alternatively, if you host your own repository you can deploy the file
>>>>>> there:
>>>>>>   mvn deploy:deploy-file -DgroupId=org.codehaus.tycho
>>>>>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>>>>>> -Dpackaging=maven-plugin -Dfile=/path/to/file -Durl=[url]
>>>>>> -DrepositoryId=[id]
>>>>>>
>>>>>> ----------
>>>>>> 1 required artifact is missing.
>>>>>>
>>>>>> for artifact:
>>>>>> org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-DEV-3170
>>>>>>
>>>>>> I usually use snapshots repositories from the sonatype repos. If I
>>>>>> search this version in nexus ui, I can't find it.
>>>>>>
>>>>>> Do I have to use an other tycho version ?
>>>>>>
>>>>>> --
>>>>>> Olivier
>>>>>>
>>>>>> [1]
>>>>>>
>>>>>> http://repository.sonatype.org/content/repositories/tycho-pseudo-releases/org/codehaus/tycho/tycho-distribution/
>>>>>>
>>>>>> ---------------------------------------------------------------------
>>>>>> To unsubscribe from this list, please visit:
>>>>>>
>>>>>>  http://xircles.codehaus.org/manage_email
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe from this list, please visit:
>>>>>
>>>>>  http://xircles.codehaus.org/manage_email
>>>>>
>>>>>
>>>>
>>>> Thanks,
>>>>
>>>> Jason
>>>>
>>>> ----------------------------------------------------------
>>>> Jason van Zyl
>>>> Founder,  Apache Maven
>>>> http://twitter.com/jvanzyl
>>>> ----------------------------------------------------------
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe from this list, please visit:
>>>>
>>>>  http://xircles.codehaus.org/manage_email
>>>>
>>>>
>>>>
>>>
>>>
>>>
>>> --
>>> Olivier
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe from this list, please visit:
>>>
>>>   http://xircles.codehaus.org/manage_email
>>>
>>>
>>
>> Thanks,
>>
>> Jason
>>
>> ----------------------------------------------------------
>> Jason van Zyl
>> Founder,  Apache Maven
>> http://twitter.com/jvanzyl
>> ----------------------------------------------------------
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>   http://xircles.codehaus.org/manage_email
>>
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>
>



--
Olivier

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by hgomez :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

2009/10/28 Jason van Zyl <jason@...>:
> I'm working on the Tycho site but here are the instructions for building
> Tycho:
>
> http://www.sonatype.org/~j2ee-hudson/sites/tycho-site/buildingtycho.html
>
> Still a work in progress but you can try building tycho and then building
> m2eclipse. Feedback appreciated.

Could you add to the document, where to get the latest Maven 3.0 (from trunk) ?

Thanks

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by jvanzyl :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

The M2Eclipse build should work out of the box with the latest Maven  
3.x build. There's a bunch of trying to build now so you can play  
along with us.

On 2009-10-28, at 2:23 PM, Olivier Lamy wrote:

> You can only use current mvn trunk.
> Perso, I have deployed tycho stuff in a company repo.
> Just deploy with the two following options :
>
> -DforgeSnapshotId=${id coming from your setting with write access to  
> the repo}
> -DforgeSnapshotUrl=http://ip:port/nexus/content/repositories/ 
> internal-opensource-snapshots/
>
> And tycho is deployed in a repo.
>
> --
> Olivier
>
> 2009/10/28 Henri Gomez <henri.gomez@...>:
>> So we should use a new tycho (from the trunk) to build m2eclipse  
>> after ?
>>
>> 2009/10/28 Jason van Zyl <jason@...>:
>>> I also tried this with a clean local repository and no  
>>> settings.xml so it
>>> should work out of the box.
>>>
>>> I will continue working on the docs.
>>>
>>> I'm continually publishing here:
>>>
>>> http://www.sonatype.org/~j2ee-hudson/sites/tycho-site/
>>>
>>> If you want to take a look. It won't be coherent for a couple days.
>>>
>>> On 2009-10-28, at 12:42 PM, Olivier Lamy wrote:
>>>
>>>> perfect (I usually prefer a README.TXT but that's nice too :-) ).
>>>>
>>>>
>>>>
>>>> 2009/10/28 Jason van Zyl <jason@...>:
>>>>>
>>>>> I'm working on the Tycho site but here are the instructions for  
>>>>> building
>>>>> Tycho:
>>>>>
>>>>> http://www.sonatype.org/~j2ee-hudson/sites/tycho-site/buildingtycho.html
>>>>>
>>>>> Still a work in progress but you can try building tycho and then  
>>>>> building
>>>>> m2eclipse. Feedback appreciated.
>>>>>
>>>>> On 2009-10-28, at 10:16 AM, Henri Gomez wrote:
>>>>>
>>>>>> It seems there is a 0.5.0-SNAPSHOT and no more 0.4.0-SNAPSHOTs ;(
>>>>>>
>>>>>>
>>>>>>
>>>>>> http://repository.sonatype.org/content/groups/public/org/codehaus/tycho/tycho-maven-plugin/0.5.0-SNAPSHOT/
>>>>>>
>>>>>>
>>>>>>
>>>>>> 2009/10/28 Olivier Lamy <olamy@...>:
>>>>>>>
>>>>>>> Hi,
>>>>>>> I usually build the plugin from the trunk in order to tests  
>>>>>>> the plugin
>>>>>>> with the last changes.
>>>>>>> I use the tycho pseudo release 0.4.0-DEV-3170 found here [1]
>>>>>>> But since today (with a clean repo), I have the following  
>>>>>>> error :
>>>>>>>
>>>>>>> 1) org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-
>>>>>>> DEV-3170
>>>>>>>
>>>>>>> Try downloading the file manually from the project website.
>>>>>>>
>>>>>>> Then, install it using the command:
>>>>>>>   mvn install:install-file -DgroupId=org.codehaus.tycho
>>>>>>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>>>>>>> -Dpackaging=maven-plugin -Dfile=/path/to/file
>>>>>>>
>>>>>>> Alternatively, if you host your own repository you can deploy  
>>>>>>> the file
>>>>>>> there:
>>>>>>>   mvn deploy:deploy-file -DgroupId=org.codehaus.tycho
>>>>>>> -DartifactId=tycho-maven-plugin -Dversion=0.4.0-DEV-3170
>>>>>>> -Dpackaging=maven-plugin -Dfile=/path/to/file -Durl=[url]
>>>>>>> -DrepositoryId=[id]
>>>>>>>
>>>>>>> ----------
>>>>>>> 1 required artifact is missing.
>>>>>>>
>>>>>>> for artifact:
>>>>>>> org.codehaus.tycho:tycho-maven-plugin:maven-plugin:0.4.0-
>>>>>>> DEV-3170
>>>>>>>
>>>>>>> I usually use snapshots repositories from the sonatype repos.  
>>>>>>> If I
>>>>>>> search this version in nexus ui, I can't find it.
>>>>>>>
>>>>>>> Do I have to use an other tycho version ?
>>>>>>>
>>>>>>> --
>>>>>>> Olivier
>>>>>>>
>>>>>>> [1]
>>>>>>>
>>>>>>> http://repository.sonatype.org/content/repositories/tycho-pseudo-releases/org/codehaus/tycho/tycho-distribution/
>>>>>>>
>>>>>>> ---------------------------------------------------------------------
>>>>>>> To unsubscribe from this list, please visit:
>>>>>>>
>>>>>>>  http://xircles.codehaus.org/manage_email
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>> ---------------------------------------------------------------------
>>>>>> To unsubscribe from this list, please visit:
>>>>>>
>>>>>>  http://xircles.codehaus.org/manage_email
>>>>>>
>>>>>>
>>>>>
>>>>> Thanks,
>>>>>
>>>>> Jason
>>>>>
>>>>> ----------------------------------------------------------
>>>>> Jason van Zyl
>>>>> Founder,  Apache Maven
>>>>> http://twitter.com/jvanzyl
>>>>> ----------------------------------------------------------
>>>>>
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe from this list, please visit:
>>>>>
>>>>>  http://xircles.codehaus.org/manage_email
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> Olivier
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe from this list, please visit:
>>>>
>>>>   http://xircles.codehaus.org/manage_email
>>>>
>>>>
>>>
>>> Thanks,
>>>
>>> Jason
>>>
>>> ----------------------------------------------------------
>>> Jason van Zyl
>>> Founder,  Apache Maven
>>> http://twitter.com/jvanzyl
>>> ----------------------------------------------------------
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe from this list, please visit:
>>>
>>>   http://xircles.codehaus.org/manage_email
>>>
>>>
>>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe from this list, please visit:
>>
>>    http://xircles.codehaus.org/manage_email
>>
>>
>>
>
>
>
> --
> Olivier
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>

Thanks,

Jason

----------------------------------------------------------
Jason van Zyl
Founder,  Apache Maven
http://twitter.com/jvanzyl
----------------------------------------------------------


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by jvanzyl :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On 2009-10-28, at 2:25 PM, Henri Gomez wrote:

> 2009/10/28 Jason van Zyl <jason@...>:
>> I'm working on the Tycho site but here are the instructions for  
>> building
>> Tycho:
>>
>> http://www.sonatype.org/~j2ee-hudson/sites/tycho-site/buildingtycho.html
>>
>> Still a work in progress but you can try building tycho and then  
>> building
>> m2eclipse. Feedback appreciated.
>
> Could you add to the document, where to get the latest Maven 3.0  
> (from trunk) ?
>

Here's the URL, could you work through that and draft a document for  
the rest of the community? That would be much appreciated.

> Thanks
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>

Thanks,

Jason

----------------------------------------------------------
Jason van Zyl
Founder,  Apache Maven
http://twitter.com/jvanzyl
----------------------------------------------------------


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by hgomez :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

> Here's the URL, could you work through that and draft a document for the
> rest of the community? That would be much appreciated.

I'll do that.

Just finished to build maven 3.0 from trunk (should do the ant 2
times, the first time only bin and boot where populated).

Used :

ant -Dmaven.home=/Users/henri/Downloads/sonatype-stuff/apache-maven-3.0-SNAPSHOT/

Now Tycho from trunk with the new M3

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by hgomez :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

export TYCHO_TARGET_PLATFORM=/Applications/eclipse

There is my Eclipse 3.5.1 in /Applications/eclipse

bootstage 1 :

works

bootstage 2 :

Error when building tycho from the new M3 :

/Users/henri/Downloads/sonatype-stuff/apache-maven-3.0-SNAPSHOT/bin/mvn
clean install -e -V -Pbootstrap-2
-Dtycho.targetPlatform=$TYCHO_TARGET_PLATFORM

[INFO] Total time: 1:36.852s
[INFO] Finished at: Wed Oct 28 22:44:41 CET 2009
[INFO] Final Memory: 218M/399M
[INFO] ------------------------------------------------------------------------
[ERROR] [0]
org.apache.maven.plugin.MojoExecutionException: Plugin
'org.eclipse.equinox.security.win32.x86_highest version' not found!
        at org.codehaus.tycho.eclipsepackaging.ProductExportMojo.copyPlugin(ProductExportMojo.java:742)
        at org.codehaus.tycho.eclipsepackaging.ProductExportMojo.copyPlugins(ProductExportMojo.java:688)
        at org.codehaus.tycho.eclipsepackaging.ProductExportMojo.execute(ProductExportMojo.java:162)
        at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:105)
        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:547)
        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:317)
        at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:233)
        at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:102)
        at org.apache.maven.cli.MavenCli.execute(MavenCli.java:421)
        at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:156)
        at org.apache.maven.cli.MavenCli.main(MavenCli.java:121)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
        at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
        at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
[ERROR]
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]




2009/10/28 Henri Gomez <henri.gomez@...>:

>> Here's the URL, could you work through that and draft a document for the
>> rest of the community? That would be much appreciated.
>
> I'll do that.
>
> Just finished to build maven 3.0 from trunk (should do the ant 2
> times, the first time only bin and boot where populated).
>
> Used :
>
> ant -Dmaven.home=/Users/henri/Downloads/sonatype-stuff/apache-maven-3.0-SNAPSHOT/
>
> Now Tycho from trunk with the new M3
>

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by hgomez :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hum, I forgot to add the DeltaPack.

Downloading it and retrying

2009/10/28 Henri Gomez <henri.gomez@...>:

> export TYCHO_TARGET_PLATFORM=/Applications/eclipse
>
> There is my Eclipse 3.5.1 in /Applications/eclipse
>
> bootstage 1 :
>
> works
>
> bootstage 2 :
>
> Error when building tycho from the new M3 :
>
> /Users/henri/Downloads/sonatype-stuff/apache-maven-3.0-SNAPSHOT/bin/mvn
> clean install -e -V -Pbootstrap-2
> -Dtycho.targetPlatform=$TYCHO_TARGET_PLATFORM
>
> [INFO] Total time: 1:36.852s
> [INFO] Finished at: Wed Oct 28 22:44:41 CET 2009
> [INFO] Final Memory: 218M/399M
> [INFO] ------------------------------------------------------------------------
> [ERROR] [0]
> org.apache.maven.plugin.MojoExecutionException: Plugin
> 'org.eclipse.equinox.security.win32.x86_highest version' not found!
>        at org.codehaus.tycho.eclipsepackaging.ProductExportMojo.copyPlugin(ProductExportMojo.java:742)
>        at org.codehaus.tycho.eclipsepackaging.ProductExportMojo.copyPlugins(ProductExportMojo.java:688)
>        at org.codehaus.tycho.eclipsepackaging.ProductExportMojo.execute(ProductExportMojo.java:162)
>        at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:105)
>        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:547)
>        at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:317)
>        at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:233)
>        at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:102)
>        at org.apache.maven.cli.MavenCli.execute(MavenCli.java:421)
>        at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:156)
>        at org.apache.maven.cli.MavenCli.main(MavenCli.java:121)
>        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
>        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>        at java.lang.reflect.Method.invoke(Method.java:597)
>        at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
>        at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
>        at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
>        at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
> [ERROR]
> [ERROR] Re-run Maven using the -X switch to enable full debug logging.
> [ERROR]
>
>
>
>
> 2009/10/28 Henri Gomez <henri.gomez@...>:
>>> Here's the URL, could you work through that and draft a document for the
>>> rest of the community? That would be much appreciated.
>>
>> I'll do that.
>>
>> Just finished to build maven 3.0 from trunk (should do the ant 2
>> times, the first time only bin and boot where populated).
>>
>> Used :
>>
>> ant -Dmaven.home=/Users/henri/Downloads/sonatype-stuff/apache-maven-3.0-SNAPSHOT/
>>
>> Now Tycho from trunk with the new M3
>>
>

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by jvanzyl :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

If you make a Confluence formatted document I can give you access here:

https://docs.sonatype.org/display/TYCHO/Index

Then I publish it here:

http://www.sonatype.org/~j2ee-hudson/sites/tycho-site/

On 2009-10-28, at 2:40 PM, Henri Gomez wrote:

>> Here's the URL, could you work through that and draft a document  
>> for the
>> rest of the community? That would be much appreciated.
>
> I'll do that.
>
> Just finished to build maven 3.0 from trunk (should do the ant 2
> times, the first time only bin and boot where populated).
>
> Used :
>
> ant -Dmaven.home=/Users/henri/Downloads/sonatype-stuff/apache-
> maven-3.0-SNAPSHOT/
>
> Now Tycho from trunk with the new M3
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>

Thanks,

Jason

----------------------------------------------------------
Jason van Zyl
Founder,  Apache Maven
http://twitter.com/jvanzyl
----------------------------------------------------------


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



Re: Building trunk (issue)

by jvanzyl :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Did you install the delta pack?

On 2009-10-28, at 2:47 PM, Henri Gomez wrote:

> export TYCHO_TARGET_PLATFORM=/Applications/eclipse
>
> There is my Eclipse 3.5.1 in /Applications/eclipse
>
> bootstage 1 :
>
> works
>
> bootstage 2 :
>
> Error when building tycho from the new M3 :
>
> /Users/henri/Downloads/sonatype-stuff/apache-maven-3.0-SNAPSHOT/bin/
> mvn
> clean install -e -V -Pbootstrap-2
> -Dtycho.targetPlatform=$TYCHO_TARGET_PLATFORM
>
> [INFO] Total time: 1:36.852s
> [INFO] Finished at: Wed Oct 28 22:44:41 CET 2009
> [INFO] Final Memory: 218M/399M
> [INFO]  
> ------------------------------------------------------------------------
> [ERROR] [0]
> org.apache.maven.plugin.MojoExecutionException: Plugin
> 'org.eclipse.equinox.security.win32.x86_highest version' not found!
> at org.codehaus.tycho.eclipsepackaging.ProductExportMojo.copyPlugin
> (ProductExportMojo.java:742)
> at org.codehaus.tycho.eclipsepackaging.ProductExportMojo.copyPlugins
> (ProductExportMojo.java:688)
> at org.codehaus.tycho.eclipsepackaging.ProductExportMojo.execute
> (ProductExportMojo.java:162)
> at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo
> (DefaultBuildPluginManager.java:105)
> at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute
> (DefaultLifecycleExecutor.java:547)
> at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute
> (DefaultLifecycleExecutor.java:317)
> at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:233)
> at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:102)
> at org.apache.maven.cli.MavenCli.execute(MavenCli.java:421)
> at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:156)
> at org.apache.maven.cli.MavenCli.main(MavenCli.java:121)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke
> (NativeMethodAccessorImpl.java:39)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke
> (DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:597)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced
> (Launcher.java:290)
> at org.codehaus.plexus.classworlds.launcher.Launcher.launch
> (Launcher.java:230)
> at  
> org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode
> (Launcher.java:409)
> at org.codehaus.plexus.classworlds.launcher.Launcher.main
> (Launcher.java:352)
> [ERROR]
> [ERROR] Re-run Maven using the -X switch to enable full debug logging.
> [ERROR]
>
>
>
>
> 2009/10/28 Henri Gomez <henri.gomez@...>:
>>> Here's the URL, could you work through that and draft a document  
>>> for the
>>> rest of the community? That would be much appreciated.
>>
>> I'll do that.
>>
>> Just finished to build maven 3.0 from trunk (should do the ant 2
>> times, the first time only bin and boot where populated).
>>
>> Used :
>>
>> ant -Dmaven.home=/Users/henri/Downloads/sonatype-stuff/apache-
>> maven-3.0-SNAPSHOT/
>>
>> Now Tycho from trunk with the new M3
>>
>
> ---------------------------------------------------------------------
> To unsubscribe from this list, please visit:
>
>    http://xircles.codehaus.org/manage_email
>
>

Thanks,

Jason

----------------------------------------------------------
Jason van Zyl
Founder,  Apache Maven
http://twitter.com/jvanzyl
----------------------------------------------------------


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


< Prev | 1 - 2 - 3 | Next >