Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] Source Features

Hello,

I've looked at a large number of projects, but I have not figured out how to configure tycho-source-feature:source-feature that it works.

My first steps were easy and successful:
1. I added a second feature to my category.xml with name "myFeature.source"
2. mvn package -> failure .. correct
3. I added 

  <build>
    <plugins>
      <plugin>
        <groupId>org.eclipse.tycho.extras</groupId>
        <artifactId>tycho-source-feature-plugin</artifactId>
        <version>${tycho.version}</version>
      </plugin>
    </plugins>
  </build>

to the pom of my feature project.
4. mvn package -> success

But target/repository/features contains only the feature with the plugins, nothing else.

5. .. hours of searching the answer :(

Btw: no resolving errors or warnings like other people reported.

Kai

Back to the top