Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] Pomless Typo builds

Hi,

I'm trying to following the description of pomless Tycho builds: from here: https://wiki.eclipse.org/Tycho/Release_Notes/0.24#POM-less_Tycho_builds

Here is my error message:

I get the following[WARNING] The POM for org.eclipse.tycho.extras:tycho-pomless:jar:0.24.0-SNAPSHOT is missing, no dependency information available
[WARNING] Failed to read extensions descriptor /home/vogella/git/com.vogella.saneclipse/.mvn/extensions.xml: Plugin org.eclipse.tycho.extras:tycho-pomless:0.24.0-SNAPSHOT or one of its dependencies could not be resolved: Could not find artifact org.eclipse.tycho.extras:tycho-pomless:jar:0.24.0-SNAPSHOT
[INFO] Scanning for projects...
[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[ERROR] Child module /home/vogella/git/com.vogella.saneclipse/./com.vogella.saneclipse.preferences/pom.xml of /home/vogella/git/com.vogella.saneclipse/pom.xml does not exist @ 
.... [similar error messages cut of] 

My trivial test is the remove the pom files of my plug-in, features and update sites from my existing Tycho example and to configure the extension via .mvn/extensions.xml in the top directory.

<?xml version="1.0" encoding="UTF-8"?>
<extensions>
  <extension>
    <groupId>org.eclipse.tycho.extras</groupId>
    <artifactId>tycho-pomless</artifactId>
    <version>0.24.0-SNAPSHOT</version>
  </extension>
</extensions>


My ~/.m2/setting.xml looks like the following:


<settings>
<profiles>
    <profile>
      <id>tycho-snapshots</id>
      <pluginRepositories>
        <pluginRepository>
          <id>tycho-snapshots</id>
        </pluginRepository>
      </pluginRepositories>
   </profile>
  </profiles>
  <activeProfiles>
    <activeProfile>tycho-snapshots</activeProfile>
  </activeProfiles>
</settings> 

Any advice?

Best regards, Lars





Back to the top