Re: [ccw] Problems building CCW on OSX

42 views
Skip to first unread message
Message has been deleted

Laurent PETIT

unread,
Jul 15, 2014, 7:45:39 AM7/15/14
to counterclockwise
Hi,

In fact, it seems that the build went quite well, but it's the last phase, the "install" phase, which doesn't work, and I think I know why.

In a nutshell: use 'mvn clean verify' instead of 'mvn clean install' => installing for maven means copying into ~/.m2/repository/.... what has been built, but for a final product such as ccw, this makes little sense.

I'll update the CONTRIBUTING page.


Here, the install phase does not work because there's an exec command that renames the zips to more appropriate names before they can be uploaded to the ftp (when the jenkins build is executed).

When you just issue the 'mvn clean verify' build, look into ccw.product/target/products and you'll get see all products built for the different platforms.

Note that you don't need to create products from maven while you're hacking / developing ccw itself. There are instructions on how to do so following the instructions on how to build products from the command line in the same CONTRIBUTING document.

Cheers,

--
Laurent




2014-07-14 17:19 GMT+02:00 <plamen...@gmail.com>:
Hello,

when I follow the instructions at https://github.com/laurentpetit/ccw/blob/master/CONTRIBUTING.adoc, I get the error at the end of this post. I'm not new to either Clojure or Java, but I just start learning how to create Eclipse plugins, so I could be that it's easy to correct, but I just don't know enought about the build process.

So - the error is:
ERROR] Failed to execute goal org.apache.maven.plugins:maven-install-plugin:2.3.1:install (default-install) on project ccw.product: Failed to install artifact ccw:ccw.product:zip:win32.win32.x86:0.26.0: /Users/ps/git/ccw/ccw.product/target/products/ccw-win32.win32.x86.zip (No such file or directory)

In that directory I don't see the desired file "ccw-win32.win32.x86.zip", but I see some other with similar names:
-rw-r--r--   1 ps  staff   162M Jul 14 17:09 Counterclockwise-0.26.0-linux.gtk.x86.zip
-rw-r--r--   1 ps  staff   162M Jul 14 17:10 Counterclockwise-0.26.0-linux.gtk.x86_64.zip
-rw-r--r--   1 ps  staff   162M Jul 14 17:10 Counterclockwise-0.26.0-macosx.cocoa.x86_64.zip
-rw-r--r--   1 ps  staff   162M Jul 14 17:09 Counterclockwise-0.26.0-win32.win32.x86.zip
-rw-r--r--   1 ps  staff   162M Jul 14 17:09 Counterclockwise-0.26.0-win32.win32.x86_64.zip

After that, I can't strat the from Eclipse either the plugin- nor the product-run configuration with errors :
!SESSION 2014-07-14 13:52:46.317 -----------------------------------------------
eclipse.buildId=unknown
java.version=1.6.0_65
java.vendor=Apple Inc.
BootLoader constants: OS=macosx, ARCH=x86_64, WS=cocoa, NL=en_US
Framework arguments:  -product org.eclipse.platform.ide
Command-line arguments:  -product org.eclipse.platform.ide -data /Users/ps/prj/clj/ws0002/../runtime EclipseApplication -dev file:/Users/ps/prj/clj/ws0002/.metadata/.plugins/org.eclipse.pde.core/Counterclockwise Plugin/dev.properties -os macosx -ws cocoa -arch x86_64 -consoleLog -console

!ENTRY org.eclipse.osgi 2 0 2014-07-14 13:52:50.068
!MESSAGE One or more bundles are not resolved because the following root constraints are not resolved:
!SUBENTRY 1 org.eclipse.osgi 2 0 2014-07-14 13:52:50.068
!MESSAGE Bundle reference:file:/Users/ps/git/ccw/ccw.core/ was not resolved.
!SUBENTRY 2 ccw.core 2 0 2014-07-14 13:52:50.068
!MESSAGE Missing required capability Require-Capability: osgi.ee; filter="(&(osgi.ee=JavaSE)(version=1.7))".

!ENTRY org.eclipse.osgi 2 0 2014-07-14 13:52:50.073
!MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists:
!SUBENTRY 1 org.eclipse.osgi 2 0 2014-07-14 13:52:50.074
!MESSAGE Bundle ccw.core_0.26.0 [411] was not resolved.
!SUBENTRY 2 ccw.core 2 0 2014-07-14 13:52:50.074
!MESSAGE Missing required capability Require-Capability: osgi.ee; filter="(&(osgi.ee=JavaSE)(version=1.7))".
!SUBENTRY 1 org.eclipse.osgi 2 0 2014-07-14 13:52:50.074
!MESSAGE Bundle ccw.core.e4_0.26.0 [412] was not resolved.
!SUBENTRY 2 ccw.core.e4 2 0 2014-07-14 13:52:50.075
!MESSAGE Missing host ccw.core_0.0.0.

Is there anything I can do to finish the build? The relevant end of the maven log is just below.

With best regards

[INFO] ------------------------------------------------------------------------
[INFO] Building ccw.feature 0.26.0
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ ccw.feature ---
[INFO] Deleting /Users/ps/git/ccw/ccw.feature/target
[INFO]
[INFO] --- tycho-packaging-plugin:0.20.0:build-qualifier-aggregator (default-build-qualifier-aggregator) @ ccw.feature ---
[INFO] The project's OSGi version is 0.26.0
[INFO]
[INFO] --- tycho-packaging-plugin:0.20.0:validate-id (default-validate-id) @ ccw.feature ---
[INFO]
[INFO] --- tycho-packaging-plugin:0.20.0:validate-version (default-validate-version) @ ccw.feature ---
[INFO]
[INFO] --- tycho-packaging-plugin:0.20.0:package-feature (default-package-feature) @ ccw.feature ---
[INFO] Building jar: /Users/ps/git/ccw/ccw.feature/target/ccw.feature-0.26.0.jar
[INFO]
[INFO] --- tycho-p2-plugin:0.20.0:p2-metadata-default (default-p2-metadata-default) @ ccw.feature ---
[INFO]
[INFO] --- tycho-p2-plugin:0.20.0:feature-p2-metadata (default-feature-p2-metadata) @ ccw.feature ---
[INFO]
[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ ccw.feature ---
[INFO] Installing /Users/ps/git/ccw/ccw.feature/target/ccw.feature-0.26.0.jar to /Users/ps/.m2/repository/ccw/ccw.feature/0.26.0/ccw.feature-0.26.0.jar
[INFO] Installing /Users/ps/git/ccw/ccw.feature/pom.xml to /Users/ps/.m2/repository/ccw/ccw.feature/0.26.0/ccw.feature-0.26.0.pom
[INFO] Installing /Users/ps/git/ccw/ccw.feature/target/p2content.xml to /Users/ps/.m2/repository/ccw/ccw.feature/0.26.0/ccw.feature-0.26.0-p2metadata.xml
[INFO] Installing /Users/ps/git/ccw/ccw.feature/target/p2artifacts.xml to /Users/ps/.m2/repository/ccw/ccw.feature/0.26.0/ccw.feature-0.26.0-p2artifacts.xml
[INFO]
[INFO] --- tycho-p2-plugin:0.20.0:update-local-index (default-update-local-index) @ ccw.feature ---
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Counterclockwise Product (Repository) 0.26.0
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ ccw.product ---
[INFO] Deleting /Users/ps/git/ccw/ccw.product/target
[INFO]
[INFO] --- tycho-packaging-plugin:0.20.0:build-qualifier-aggregator (default-build-qualifier-aggregator) @ ccw.product ---
[INFO] The project's OSGi version is 0.26.0
[INFO]
[INFO] --- maven-clean-plugin:2.5:clean (default-clean-1) @ ccw.product ---
[INFO]
[INFO] --- tycho-p2-publisher-plugin:0.20.0:publish-products (default-publish-products) @ ccw.product ---
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   ccw.core.e4/0.26.0
[WARNING]   ccw.feature.feature.group/0.26.0
[WARNING]   ccw.branding/0.26.0
[WARNING]   ccw.feature.feature.jar/0.26.0
[WARNING]   paredit.clj/0.26.0
[WARNING]   ccw.core/0.26.0
Error - 3 icon(s) not replaced in /private/var/folders/pd/hz0f8q_n2c57yx9fcwd4twk80000gn/T/p2.brandingIron4931755515644386178/launcher.exe using /Users/ps/git/ccw/ccw.product/target/products/ccw/images/ccw.ico
Error - 3 icon(s) not replaced in /private/var/folders/pd/hz0f8q_n2c57yx9fcwd4twk80000gn/T/p2.brandingIron1532501583045529139/launcher.exe using /Users/ps/git/ccw/ccw.product/target/products/ccw/images/ccw.ico
[INFO]
[INFO] --- tycho-p2-publisher-plugin:0.20.0:publish-categories (default-publish-categories) @ ccw.product ---
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   ccw.core.e4/0.26.0
[WARNING]   ccw.feature.feature.group/0.26.0
[WARNING]   ccw.branding/0.26.0
[WARNING]   ccw.feature.feature.jar/0.26.0
[WARNING]   paredit.clj/0.26.0
[WARNING]   ccw.core/0.26.0
[INFO]
[INFO] --- tycho-p2-publisher-plugin:0.20.0:attach-artifacts (default-attach-artifacts) @ ccw.product ---
[INFO]
[INFO] --- tycho-p2-repository-plugin:0.20.0:assemble-repository (default-assemble-repository) @ ccw.product ---
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   ccw.core.e4/0.26.0
[WARNING]   ccw.feature.feature.group/0.26.0
[WARNING]   ccw.branding/0.26.0
[WARNING]   ccw.feature.feature.jar/0.26.0
[WARNING]   paredit.clj/0.26.0
[WARNING]   ccw.core/0.26.0
[INFO]
[INFO] --- tycho-p2-repository-plugin:0.20.0:archive-repository (default-archive-repository) @ ccw.product ---
[INFO] Building zip: /Users/ps/git/ccw/ccw.product/target/ccw.product-0.26.0.zip
[INFO]
[INFO] --- mojo-executor-maven-plugin:2.2.0:execute-mojo (materialize) @ ccw.product ---
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   ccw.core.e4/0.26.0
[WARNING]   ccw.feature.feature.group/0.26.0
[WARNING]   ccw.branding/0.26.0
[WARNING]   ccw.feature.feature.jar/0.26.0
[WARNING]   paredit.clj/0.26.0
[WARNING]   ccw.core/0.26.0
[INFO] Installing product ccw for environment win32/win32/x86 to /Users/ps/git/ccw/ccw.product/target/products/ccw/win32/win32/x86/counterclockwise-0.26.0
Installing ccw 0.26.0.
Installing ccw.feature.feature.group 0.26.0.
Installing org.eclipse.egit.feature.group 3.0.3.201309161630-r.
Installing org.eclipse.m2e.feature.feature.group 1.4.0.20130601-0317.
Installing org.eclipse.wst.web_ui.feature.feature.group 3.5.1.v201307171524-7O7QG2NEMkBS3C2az0gQwwALctEj3DZPgTEZceV4.
Installing com.github.eclipsecolortheme.feature.feature.group 0.13.1.201405041302.
Operation completed in 9506 ms.
[INFO] Installing product ccw for environment win32/win32/x86_64 to /Users/ps/git/ccw/ccw.product/target/products/ccw/win32/win32/x86_64/counterclockwise-0.26.0
Installing ccw 0.26.0.
Installing ccw.feature.feature.group 0.26.0.
Installing org.eclipse.egit.feature.group 3.0.3.201309161630-r.
Installing org.eclipse.m2e.feature.feature.group 1.4.0.20130601-0317.
Installing org.eclipse.wst.web_ui.feature.feature.group 3.5.1.v201307171524-7O7QG2NEMkBS3C2az0gQwwALctEj3DZPgTEZceV4.
Installing com.github.eclipsecolortheme.feature.feature.group 0.13.1.201405041302.
Operation completed in 7589 ms.
[INFO] Installing product ccw for environment linux/gtk/x86 to /Users/ps/git/ccw/ccw.product/target/products/ccw/linux/gtk/x86/counterclockwise-0.26.0
Installing ccw 0.26.0.
Installing ccw.feature.feature.group 0.26.0.
Installing org.eclipse.egit.feature.group 3.0.3.201309161630-r.
Installing org.eclipse.m2e.feature.feature.group 1.4.0.20130601-0317.
Installing org.eclipse.wst.web_ui.feature.feature.group 3.5.1.v201307171524-7O7QG2NEMkBS3C2az0gQwwALctEj3DZPgTEZceV4.
Installing com.github.eclipsecolortheme.feature.feature.group 0.13.1.201405041302.
Operation completed in 7405 ms.
[INFO] Installing product ccw for environment linux/gtk/x86_64 to /Users/ps/git/ccw/ccw.product/target/products/ccw/linux/gtk/x86_64/counterclockwise-0.26.0
Installing ccw 0.26.0.
Installing ccw.feature.feature.group 0.26.0.
Installing org.eclipse.egit.feature.group 3.0.3.201309161630-r.
Installing org.eclipse.m2e.feature.feature.group 1.4.0.20130601-0317.
Installing org.eclipse.wst.web_ui.feature.feature.group 3.5.1.v201307171524-7O7QG2NEMkBS3C2az0gQwwALctEj3DZPgTEZceV4.
Installing com.github.eclipsecolortheme.feature.feature.group 0.13.1.201405041302.
Operation completed in 7937 ms.
[INFO] Installing product ccw for environment macosx/cocoa/x86_64 to /Users/ps/git/ccw/ccw.product/target/products/ccw/macosx/cocoa/x86_64/counterclockwise-0.26.0.app
Installing ccw 0.26.0.
Installing ccw.feature.feature.group 0.26.0.
Installing org.eclipse.egit.feature.group 3.0.3.201309161630-r.
Installing org.eclipse.m2e.feature.feature.group 1.4.0.20130601-0317.
Installing org.eclipse.wst.web_ui.feature.feature.group 3.5.1.v201307171524-7O7QG2NEMkBS3C2az0gQwwALctEj3DZPgTEZceV4.
Installing com.github.eclipsecolortheme.feature.feature.group 0.13.1.201405041302.
Operation completed in 7227 ms.
[INFO]
[INFO] --- mojo-executor-maven-plugin:2.2.0:execute-mojo (archive) @ ccw.product ---
[INFO] Building zip: /Users/ps/git/ccw/ccw.product/target/products/ccw-win32.win32.x86.zip
[INFO] Building zip: /Users/ps/git/ccw/ccw.product/target/products/ccw-win32.win32.x86_64.zip
[INFO] Building zip: /Users/ps/git/ccw/ccw.product/target/products/ccw-linux.gtk.x86.zip
[INFO] Building zip: /Users/ps/git/ccw/ccw.product/target/products/ccw-linux.gtk.x86_64.zip
[INFO] Building zip: /Users/ps/git/ccw/ccw.product/target/products/ccw-macosx.cocoa.x86_64.zip
[INFO]
[INFO] --- mojo-executor-maven-plugin:2.2.0:execute-mojo (rename-archive) @ ccw.product ---
[INFO] Executing tasks

rename archives with version numbers:
     [move] Moving 1 file to /Users/ps/git/ccw/ccw.product/target/products
     [move] Moving 1 file to /Users/ps/git/ccw/ccw.product/target/products
     [move] Moving 1 file to /Users/ps/git/ccw/ccw.product/target/products
     [move] Moving 1 file to /Users/ps/git/ccw/ccw.product/target/products
     [move] Moving 1 file to /Users/ps/git/ccw/ccw.product/target/products
[INFO] Executed tasks
[INFO]
[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ ccw.product ---
[INFO] Installing /Users/ps/git/ccw/ccw.product/target/ccw.product-0.26.0.zip to /Users/ps/.m2/repository/ccw/ccw.product/0.26.0/ccw.product-0.26.0.zip
[INFO] Installing /Users/ps/git/ccw/ccw.product/pom.xml to /Users/ps/.m2/repository/ccw/ccw.product/0.26.0/ccw.product-0.26.0.pom
[INFO] Installing /Users/ps/git/ccw/ccw.product/target/extraArtifacts/ccw.executable.gtk.linux.x86.zip to /Users/ps/.m2/repository/ccw/ccw.product/0.26.0/ccw.product-0.26.0-ccw.executable.gtk.linux.x86.zip
[INFO] Installing /Users/ps/git/ccw/ccw.product/target/p2content.xml to /Users/ps/.m2/repository/ccw/ccw.product/0.26.0/ccw.product-0.26.0-p2metadata.xml
[INFO] Installing /Users/ps/git/ccw/ccw.product/target/extraArtifacts/ccw.executable.win32.win32.x86.zip to /Users/ps/.m2/repository/ccw/ccw.product/0.26.0/ccw.product-0.26.0-ccw.executable.win32.win32.x86.zip
[INFO] Installing /Users/ps/git/ccw/ccw.product/target/extraArtifacts/ccw.executable.cocoa.macosx.x86_64.zip to /Users/ps/.m2/repository/ccw/ccw.product/0.26.0/ccw.product-0.26.0-ccw.executable.cocoa.macosx.x86_64.zip
[INFO] Installing /Users/ps/git/ccw/ccw.product/target/p2artifacts.xml to /Users/ps/.m2/repository/ccw/ccw.product/0.26.0/ccw.product-0.26.0-p2artifacts.xml
[INFO] Installing /Users/ps/git/ccw/ccw.product/target/extraArtifacts/ccw.executable.win32.win32.x86_64.zip to /Users/ps/.m2/repository/ccw/ccw.product/0.26.0/ccw.product-0.26.0-ccw.executable.win32.win32.x86_64.zip
[INFO] Installing /Users/ps/git/ccw/ccw.product/target/extraArtifacts/ccw.executable.gtk.linux.x86_64.zip to /Users/ps/.m2/repository/ccw/ccw.product/0.26.0/ccw.product-0.26.0-ccw.executable.gtk.linux.x86_64.zip
[INFO] Installing /Users/ps/git/ccw/ccw.product/target/products/ccw-win32.win32.x86.zip to /Users/ps/.m2/repository/ccw/ccw.product/0.26.0/ccw.product-0.26.0-win32.win32.x86.zip
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] parent ............................................ SUCCESS [0.125s]
[INFO] Counterclockwise Eclipse 4.3 Target Platform (Target)  SUCCESS [0.151s]
[INFO] ccw.branding ...................................... SUCCESS [1.039s]
[INFO] paredit.clj ....................................... SUCCESS [0.601s]
[INFO] ccw.core .......................................... SUCCESS [6.629s]
[INFO] ccw.core.e4 ....................................... SUCCESS [0.337s]
[INFO] ccw.feature ....................................... SUCCESS [0.176s]
[INFO] Counterclockwise Product (Repository) ............. FAILURE [2:10.985s]
[INFO] documentation ..................................... SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2:37.660s
[INFO] Finished at: Mon Jul 14 17:10:33 CEST 2014
[INFO] Final Memory: 97M/521M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-install-plugin:2.3.1:install (default-install) on project ccw.product: Failed to install artifact ccw:ccw.product:zip:win32.win32.x86:0.26.0: /Users/ps/git/ccw/ccw.product/target/products/ccw-win32.win32.x86.zip (No such file or directory) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :ccw.product

--
You received this message because you are subscribed to the Google Groups "counterclockwise" group.
To unsubscribe from this group and stop receiving emails from it, send an email to clojuredev-dev...@googlegroups.com.
To post to this group, send email to clojured...@googlegroups.com.
Visit this group at http://groups.google.com/group/clojuredev-devel.
For more options, visit https://groups.google.com/d/optout.

Message has been deleted

Laurent PETIT

unread,
Jul 17, 2014, 4:19:40 AM7/17/14
to counterclockwise
Hello, 

You're unlucky: you're trying to build ccw from scratch the exact week the Eclipse Color Theme guys release a new version (from 0.13 to 0.14).

And unfortunately they don't keep old versions in their repository, meaning they reliably break ccw build every time they release a new version.

It's trivial to fix, though, working on it right now, will push the fix on master soon.

Cheers,



2014-07-16 14:21 GMT+02:00 <plamen...@gmail.com>:
Hello again,

as first thank you for the response!

Yes, the build fails at the end only, but it's also meant (as far as I understand) to generate and populate the lib folder in the core project, after which one could start the plugin also from the provided launch configurations for Eclipse. At that point I didn't knew if I have to do something else (thank you for the "mvn clean verify"!! :), because I got error messages about missing jars in the launched Eclipse too (see the first log in my previous post).

Ok, after your reply I recloned the repo, and executed "mvn clean verify", but this time I get pretty at the beginning another error - the full log is below.

Is there anything I could do to succeed this time? (I tried to remove the eclipsecolortheme from the build, but then got other errors...)

Regards and thank you for the help
Plamen

$ mvn clean verify
[INFO] Scanning for projects...
[WARNING] The POM for org.apache.maven:maven-toolchain:jar:3.0-TYCHO-733848 is missing, no dependency information available
[INFO] Computing target platform for MavenProject: ccw:ccw.branding:0.26.1-SNAPSHOT @ /Users/ps/git/ccw/ccw.branding/pom.xml
[INFO] Adding repository http://download.eclipse.org/technology/swtbot/releases/latest
[INFO] Fetching p2.index from http://download.eclipse.org/releases/kepler/ (0B at 0B/s)
[INFO] Adding repository http://download.eclipse.org/releases/kepler
[INFO] Fetching p2.index from http://download.eclipse.org/releases/kepler/201402280900/ (0B at 0B/s)
[INFO] Fetching p2.index from http://download.eclipse.org/releases/kepler/201309270900/ (0B at 0B/s)
[INFO] Fetching p2.index from http://download.eclipse.org/releases/kepler/201306260900/ (0B at 0B/s)
[INFO] Fetching p2.index from http://download.eclipse.org/technology/epp/packages/kepler/ (0B at 0B/s)
[INFO] Adding repository http://eclipse-color-theme.github.io/update
[ERROR] Internal error: java.lang.RuntimeException: Failed to resolve target definition /Users/ps/git/ccw/ccw.target.e43/ccw.target.e43.target: Could not find "com.github.eclipsecolortheme.feature.feature.group/0.13.1.201405041302" in the repositories of the current location -> [Help 1]
org.apache.maven.InternalErrorException: Internal error: java.lang.RuntimeException: Failed to resolve target definition /Users/ps/git/ccw/ccw.target.e43/ccw.target.e43.target
    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:164)
    at org.apache.maven.cli.MavenCli.execute(MavenCli.java:555)
    at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:214)
    at org.apache.maven.cli.MavenCli.main(MavenCli.java:158)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:606)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
Caused by: java.lang.RuntimeException: Failed to resolve target definition /Users/ps/git/ccw/ccw.target.e43/ccw.target.e43.target
    at org.eclipse.tycho.p2.target.TargetDefinitionResolver.resolveContent(TargetDefinitionResolver.java:85)
    at org.eclipse.tycho.p2.target.TargetDefinitionResolverService.resolveFromArguments(TargetDefinitionResolverService.java:65)
    at org.eclipse.tycho.p2.target.TargetDefinitionResolverService.getTargetDefinitionContent(TargetDefinitionResolverService.java:55)
    at org.eclipse.tycho.p2.target.TargetPlatformFactoryImpl.resolveTargetDefinitions(TargetPlatformFactoryImpl.java:210)
    at org.eclipse.tycho.p2.target.TargetPlatformFactoryImpl.createTargetPlatform(TargetPlatformFactoryImpl.java:144)
    at org.eclipse.tycho.p2.target.TargetPlatformFactoryImpl.createTargetPlatform(TargetPlatformFactoryImpl.java:117)
    at org.eclipse.tycho.p2.target.TargetPlatformFactoryImpl.createTargetPlatform(TargetPlatformFactoryImpl.java:1)
    at org.eclipse.tycho.p2.resolver.P2TargetPlatformResolver.computeTargetPlatform(P2TargetPlatformResolver.java:214)
    at org.eclipse.tycho.core.resolver.DefaultTychoDependencyResolver.resolveProject(DefaultTychoDependencyResolver.java:100)
    at org.eclipse.tycho.core.maven.TychoMavenLifecycleParticipant.afterProjectsRead(TychoMavenLifecycleParticipant.java:75)
    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:271)
    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:152)
    ... 11 more
Caused by: org.eclipse.tycho.p2.target.facade.TargetDefinitionResolutionException: Could not find "com.github.eclipsecolortheme.feature.feature.group/0.13.1.201405041302" in the repositories of the current location
    at org.eclipse.tycho.p2.target.TargetDefinitionResolver.getUnitInstance(TargetDefinitionResolver.java:214)
    at org.eclipse.tycho.p2.target.TargetDefinitionResolver.resolveContentWithExceptions(TargetDefinitionResolver.java:128)
    at org.eclipse.tycho.p2.target.TargetDefinitionResolver.resolveContent(TargetDefinitionResolver.java:80)
    ... 22 more

[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:

plamen...@gmail.com

unread,
Jul 18, 2014, 2:26:21 PM7/18/14
to clojured...@googlegroups.com
A lot of thanks for helping, Laurent!

With best regards
Reply all
Reply to author
Forward
0 new messages