Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Failure after moving to 0.12

in commit

https://github.com/caniszczyk/minerva/commit/158713bda122ed0446e2cb564380cdb049bf01a3

you removed the execution of the plugin-source goal in your parent POM which means no source bundles are generated anymore.

you should restore

      <!-- enable source bundle generation -->
      <plugin>
        <groupId>org.eclipse.tycho</groupId>
        <artifactId>tycho-source-plugin</artifactId>
        <version>${tycho-version}</version>
        <executions>
          <execution>
            <id>plugin-source</id>
            <goals>
              <goal>plugin-source</goal>
            </goals>
          </execution>
        </executions>
      </plugin>


Regards
Jan


-----Original Message-----
From: tycho-user-bounces@xxxxxxxxxxx [mailto:tycho-user-bounces@xxxxxxxxxxx] On Behalf Of Chris Aniszczyk
Sent: Mittwoch, 25. Mai 2011 17:17
To: tycho-user@xxxxxxxxxxx
Subject: [tycho-user] Failure after moving to 0.12

I'm getting this error after moving to 0.12...

[ERROR] Failed to execute goal
org.eclipse.tycho:tycho-p2-repository-plugin:0.12.0:assemble-repository
(default-assemble-repository) on project
org.aniszczyk.minerva-repository: Could not assemble p2 repository:
Copying p2 repository content failed: "Problems resolving provisioning
plan.": ["Unable to satisfy dependency from
org.aniszczyk.minerva.source.feature.group 1.0.0.201105251011 to
org.aniszczyk.minerva.core.source [1.0.0.201105251011].", "Unable to
satisfy dependency from org.aniszczyk.minerva.source.feature.group
1.0.0.201105251011 to org.aniszczyk.minerva.ui.source
[1.0.0.201105251011]."] -> [Help 1]

Thoughts?

Code is available here: https://github.com/caniszczyk/minerva

-- 
Cheers,

Chris Aniszczyk
http://aniszczyk.org
+1 512 961 6719
_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user


Back to the top