cancel
Showing results for 
Search instead for 
Did you mean: 

custom palette

hamepal
Champ in-the-making
Champ in-the-making
Hi,
   I am trying to build one custom palette by following the userguide. When I give the command
mvn eclipse:eclipse
it gives me the following output

E:\CA\software\jbpm-installer\workspace\CustomPalette>mvn eclipse:eclipse
[INFO] Scanning for projects…
[WARNING]
[WARNING] Some problems were encountered while building the effective model for org.acme:money-tasks:jar:1.0.0-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 26, column 12
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING]
[INFO]
[INFO] ————————————————————————
[INFO] Building Acme Corporation Money Tasks 1.0.0-SNAPSHOT
[INFO] ————————————————————————
[INFO]
[INFO] >>> maven-eclipse-plugin:2.8:eclipse (default-cli) @ money-tasks >>>
[INFO]
[INFO] <<< maven-eclipse-plugin:2.8:eclipse (default-cli) @ money-tasks <<<
[INFO]
[INFO] — maven-eclipse-plugin:2.8:eclipse (default-cli) @ money-tasks —
[INFO] Using Eclipse Workspace: E:\CA\software\jbpm-installer\workspace
[WARNING] Workspace defines a VM that does not contain a valid jre/lib/rt.jar: C:\Java_program_files\jre6
[INFO] Adding default classpath container: org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.Stan
dardVMType/J2SE-1.5
Downloading: http://repo1.maven.org/maven2/org/activiti/designer/org.activiti.designer.integration/5.6/org.activi...
ration-5.6.pom
[WARNING] Missing POM for org.activiti.designer:org.activiti.designer.integration:jar:5.6
Downloading: http://repo1.maven.org/maven2/org/activiti/designer/org.activiti.designer.integration/5.6/org.activi...
ration-5.6.jar
[WARNING] An error occurred during dependency resolution.
    Failed to retrieve org.activiti.designer:org.activiti.designer.integration-5.6
Caused by: Could not find artifact org.activiti.designer:org.activiti.designer.integration:jar:5.6 in central (http://repo1.maven.
org/maven2)

Try downloading the file manually from the project website.

Then, install it using the command:
    mvn install:install-file -DgroupId=org.activiti.designer -DartifactId=org.activiti.designer.integration -Dversion=5.6 -Dpackag
ing=jar -Dfile=/path/to/file

Alternatively, if you host your own repository you can deploy the file there:
    mvn deploy:deploy-file -DgroupId=org.activiti.designer -DartifactId=org.activiti.designer.integration -Dversion=5.6 -Dpackagin
g=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

Path to dependency:
        1) org.acme:money-tasks:jar:1.0.0-SNAPSHOT
        2) org.activiti.designer:org.activiti.designer.integration:jar:5.6


  org.activiti.designer:org.activiti.designer.integration:jar:5.6

from the specified remote repositories:
  central (http://repo1.maven.org/maven2, releases=true, snapshots=false)

[INFO] Unable to read jar manifest from C:\Users\hame\.m2\repository\org\activiti\designer\org.activiti.designer.integration\5.6\o
rg.activiti.designer.integration-5.6.jar
[INFO] File E:\CA\software\jbpm-installer\workspace\CustomPalette\.project already exists.
       Additional settings will be preserved, run mvn eclipse:clean if you want old settings to be removed.
[INFO] Wrote Eclipse project for "money-tasks" to E:\CA\software\jbpm-installer\workspace\CustomPalette.
[INFO]
[INFO] ————————————————————————
[INFO] BUILD SUCCESS
[INFO] ————————————————————————
[INFO] Total time: 7.377s
[INFO] Finished at: Tue Jun 14 09:44:21 EDT 2011
[INFO] Final Memory: 5M/15M

It seems the pom.xml present at projects\designer\trunk\examples\money-tasks is not updated according to the latest Activiti release version. Earlier the pom.xml was looking for 5.5 version and giving the same output, after changing t0 5.6 doesn't help me in removing the dependencies. I am not  able to remove the Path dependencies:
        1) org.acme:money-tasks:jar:1.0.0-SNAPSHOT
        2) org.activiti.designerSmiley Surprisedrg.activiti.designer.integration:jar:5.6
Can any one tell me how to remove these path dependencies and how to get these jar files?

Any kind of help is highly appreciated.  Smiley Happy


PS: when I run this command
mvn -ver
the following output is given by the maven.
E:\CA\software\jbpm-installer\workspace\CustomPalette>mvn -ver
Apache Maven 3.0.3 (r1075438; 2011-02-28 12:31:09-0500)
Maven home: E:\CA\softwareInstalledfiles\apache-maven-3.0.3\bin\..
Java version: 1.6.0_23, vendor: Sun Microsystems Inc.
Java home: C:\Java_program_files\jdk1.6.0_23\jre
Default locale: en_US, platform encoding: Cp1252
OS name: "windows 7", version: "6.1", arch: "x86", family: "windows"
23 REPLIES 23

trademak
Star Contributor
Star Contributor
Hi,

The 5.6 version of that JAR was not yet uploaded to the Maven repository.
I did this a few minutes ago, so now it should work.

Best regards,

hamepal
Champ in-the-making
Champ in-the-making
Thanks for replying ….
I syned my mvn repository.. but I am still getting the same dependencies problem. Can you please tell me where I am going wrong?

trademak
Star Contributor
Star Contributor
Hi,

Are you using this dependency?

<dependencies>
  <dependency>
    <groupId>org.activiti</groupId>
    <artifactId>activiti-designer-integration</artifactId>
    <version>5.6</version> <!– Current Activiti Designer Version –>
    <scope>compile</scope>
  </dependency>
</dependencies>

Best regards,

ronald_van_kuij
Champ on-the-rise
Champ on-the-rise
Can you please tell me where I am going wrong?

E:\CA\software\jbpm-installer

  :lol:

hamepal
Champ in-the-making
Champ in-the-making
I tried with



<properties>
  <activiti.designer.version>5.6</activiti.designer.version>
</properties>

<dependencies>
  <dependency>
   <groupId>org.activiti.designer</groupId>
   <artifactId>org.activiti.designer.integration</artifactId>
   <version>${activiti.designer.version}</version>
   <scope>compile</scope>
  </dependency>
</dependencies>

I also tried with 5.5 but in both cases the error is same Smiley Sad . I am using the same pom.xml which is present at location projects\designer\trunk\examples\money-tasks

trademak
Star Contributor
Star Contributor
Hi,

Please use my dependency example.
This is how it's available from the Maven repo.

Best regards,

hamepal
Champ in-the-making
Champ in-the-making
@Ronald

well I am using the same Eclipse workspace for creating Activiti project, which I had used for jbpm. In past all project had worked for me.

I tried also tried in projects\designer\trunk\examples\money-tasks provided by Activiti and in both cases results are same.

hamepal
Champ in-the-making
Champ in-the-making
@trademak
I used your's dependency example, but getting the same error.

Apache Maven 3.0.3 (r1075438; 2011-02-28 12:31:09-0500)
Maven home: E:\CA\softwareInstalledfiles\apache-maven-3.0.3\bin\..
Java version: 1.6.0_23, vendor: Sun Microsystems Inc.
Java home: C:\Java_program_files\jdk1.6.0_23\jre
Default locale: en_US, platform encoding: Cp1252
OS name: "windows 7", version: "6.1", arch: "x86", family: "windows"
[INFO] Error stacktraces are turned on.
[DEBUG] Reading global settings from E:\CA\softwareInstalledfiles\apache-maven-3.0.3\bin\..\conf\settings.xml
[DEBUG] Reading user settings from C:\Users\hame\.m2\settings.xml
[DEBUG] Using local repository at C:\Users\hame\.m2\repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10 for C:\Users\hame\.m2\repository
[INFO] Scanning for projects…
[DEBUG] Extension realms for project org.acme:money-tasks:jar:1.0.0-SNAPSHOT: (none)
[DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null]
[WARNING]
[WARNING] Some problems were encountered while building the effective model for org.acme:money-tasks:jar:1.0.0-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 39, column 12
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING]
[DEBUG] Resolving plugin prefix eclipse from [org.apache.maven.plugins, org.codehaus.mojo]
[DEBUG] Could not find metadata org.apache.maven.plugins/maven-metadata.xml in local (C:\Users\hame\.m2\repository)
[DEBUG] Skipped remote update check for org.apache.maven.plugins/maven-metadata.xml, locally cached metadata up-to-date.
[DEBUG] Could not find metadata org.codehaus.mojo/maven-metadata.xml in local (C:\Users\hame\.m2\repository)
[DEBUG] Skipped remote update check for org.codehaus.mojo/maven-metadata.xml, locally cached metadata up-to-date.
[DEBUG] Resolved plugin prefix eclipse to org.apache.maven.plugins:maven-eclipse-plugin from repository central
[DEBUG] Resolving plugin version for org.apache.maven.plugins:maven-eclipse-plugin
[DEBUG] Could not find metadata org.apache.maven.plugins:maven-eclipse-plugin/maven-metadata.xml in local (C:\Users\hame\.m2\repository)
[DEBUG] Skipped remote update check for org.apache.maven.plugins:maven-eclipse-plugin/maven-metadata.xml, locally cached metadata up-to-date.
[DEBUG] Resolved plugin version for org.apache.maven.plugins:maven-eclipse-plugin to 2.8 from repository central (http://repo1.maven.org/maven2, releases)
[DEBUG] === REACTOR BUILD PLAN ================================================
[DEBUG] Project: org.acme:money-tasks:jar:1.0.0-SNAPSHOT
[DEBUG] Tasks:   [eclipse:eclipse]
[DEBUG] Style:   Regular
[DEBUG] =======================================================================
[INFO]                                                                        
[INFO] ————————————————————————
[INFO] Building Acme Corporation Money Tasks 1.0.0-SNAPSHOT
[INFO] ————————————————————————
[DEBUG] Resolving plugin prefix eclipse from [org.apache.maven.plugins, org.codehaus.mojo]
[DEBUG] Could not find metadata org.apache.maven.plugins/maven-metadata.xml in local (C:\Users\hame\.m2\repository)
[DEBUG] Skipped remote update check for org.apache.maven.plugins/maven-metadata.xml, locally cached metadata up-to-date.
[DEBUG] Could not find metadata org.codehaus.mojo/maven-metadata.xml in local (C:\Users\hame\.m2\repository)
[DEBUG] Skipped remote update check for org.codehaus.mojo/maven-metadata.xml, locally cached metadata up-to-date.
[DEBUG] Resolved plugin prefix eclipse to org.apache.maven.plugins:maven-eclipse-plugin from repository central
[DEBUG] Resolving plugin version for org.apache.maven.plugins:maven-eclipse-plugin
[DEBUG] Could not find metadata org.apache.maven.plugins:maven-eclipse-plugin/maven-metadata.xml in local (C:\Users\hame\.m2\repository)
[DEBUG] Skipped remote update check for org.apache.maven.plugins:maven-eclipse-plugin/maven-metadata.xml, locally cached metadata up-to-date.
[DEBUG] Resolved plugin version for org.apache.maven.plugins:maven-eclipse-plugin to 2.8 from repository central (http://repo1.maven.org/maven2, releases)
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] === PROJECT BUILD PLAN ================================================
[DEBUG] Project:       org.acme:money-tasks:1.0.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): []
[DEBUG] Repositories (dependencies): [central (http://repo1.maven.org/maven2, releases)]
[DEBUG] Repositories (plugins)     : [central (http://repo1.maven.org/maven2, releases)]
[DEBUG] — init fork of org.acme:money-tasks:1.0.0-SNAPSHOT for org.apache.maven.plugins:maven-eclipse-plugin:2.8:eclipse (default-cli) —
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): []
[DEBUG] — exit fork of org.acme:money-tasks:1.0.0-SNAPSHOT for org.apache.maven.plugins:maven-eclipse-plugin:2.8:eclipse (default-cli) —
[DEBUG] ———————————————————————–
[DEBUG] Goal:          org.apache.maven.plugins:maven-eclipse-plugin:2.8:eclipse (default-cli)
[DEBUG] Style:         Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <addGroupIdToProjectName default-value="false">${eclipse.addGroupIdToProjectName}</addGroupIdToProjectName>
  <addVersionToProjectName default-value="false">${eclipse.addVersionToProjectName}</addVersionToProjectName>
  <ajdtVersion default-value="none">${eclipse.ajdtVersion}</ajdtVersion>
  <buildOutputDirectory default-value="${project.build.outputDirectory}">${outputDirectory}</buildOutputDirectory>
  <downloadJavadocs>${downloadJavadocs}</downloadJavadocs>
  <downloadSources>${downloadSources}</downloadSources>
  <eclipseDownloadSources>${eclipse.downloadSources}</eclipseDownloadSources>
  <eclipseProjectDir>${eclipse.projectDir}</eclipseProjectDir>
  <executedProject>${executedProject}</executedProject>
  <forceRecheck>${forceRecheck}</forceRecheck>
  <limitProjectReferencesToWorkspace default-value="false">${eclipse.limitProjectReferencesToWorkspace}</limitProjectReferencesToWorkspace>
  <localRepository>${localRepository}</localRepository>
  <manifest default-value="${basedir}/META-INF/MANIFEST.MF">${eclipse.manifest}</manifest>
  <packaging>${project.packaging}</packaging>
  <pde default-value="false">${eclipse.pde}</pde>
  <project>${project}</project>
  <projectNameTemplate>${eclipse.projectNameTemplate}</projectNameTemplate>
  <reactorProjects>${reactorProjects}</reactorProjects>
  <remoteArtifactRepositories>${project.remoteArtifactRepositories}</remoteArtifactRepositories>
  <skip default-value="false">${eclipse.skip}</skip>
  <useProjectReferences default-value="true">${eclipse.useProjectReferences}</useProjectReferences>
  <workspace>${eclipse.workspace}</workspace>
  <wtpContextName>${wtpContextName}</wtpContextName>
  <wtpapplicationxml default-value="false">${eclipse.wtpapplicationxml}</wtpapplicationxml>
  <wtpdefaultserver>${eclipse.wtpdefaultserver}</wtpdefaultserver>
  <wtpmanifest default-value="false">${eclipse.wtpmanifest}</wtpmanifest>
  <wtpversion default-value="none">${wtpversion}</wtpversion>
</configuration>
[DEBUG] =======================================================================
[INFO]
[INFO] >>> maven-eclipse-plugin:2.8:eclipse (default-cli) @ money-tasks >>>
[INFO]
[INFO] <<< maven-eclipse-plugin:2.8:eclipse (default-cli) @ money-tasks <<<
[INFO]
[INFO] — maven-eclipse-plugin:2.8:eclipse (default-cli) @ money-tasks —
[DEBUG] Created new class realm maven.api
[DEBUG] Importing foreign packages into class realm maven.api
[DEBUG]   Imported: org.apache.maven.wagon.events < plexus.core
[DEBUG]   Imported: org.sonatype.aether.transfer < plexus.core
[DEBUG]   Imported: org.apache.maven.exception < plexus.core
[DEBUG]   Imported: org.sonatype.aether.metadata < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
[DEBUG]   Imported: org.sonatype.aether.collection < plexus.core
[DEBUG]   Imported: org.sonatype.aether.version < plexus.core
[DEBUG]   Imported: org.apache.maven.monitor < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.repository < plexus.core
[DEBUG]   Imported: org.apache.maven.repository < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.resource < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.logging < plexus.core
[DEBUG]   Imported: org.apache.maven.profiles < plexus.core
[DEBUG]   Imported: org.sonatype.aether.repository < plexus.core
[DEBUG]   Imported: org.apache.maven.classrealm < plexus.core
[DEBUG]   Imported: org.apache.maven.execution < plexus.core
[DEBUG]   Imported: org.sonatype.aether.artifact < plexus.core
[DEBUG]   Imported: org.sonatype.aether.spi < plexus.core
[DEBUG]   Imported: org.apache.maven.reporting < plexus.core
[DEBUG]   Imported: org.apache.maven.usability < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.container < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.component < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.authentication < plexus.core
[DEBUG]   Imported: org.apache.maven.lifecycle < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.classworlds < plexus.core
[DEBUG]   Imported: org.sonatype.aether.graph < plexus.core
[DEBUG]   Imported: org.sonatype.aether.* < plexus.core
[DEBUG]   Imported: org.apache.maven.settings < plexus.core
[DEBUG]   Imported: org.codehaus.classworlds < plexus.core
[DEBUG]   Imported: org.sonatype.aether.impl < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.* < plexus.core
[DEBUG]   Imported: org.apache.maven.toolchain < plexus.core
[DEBUG]   Imported: org.sonatype.aether.deployment < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.observers < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core
[DEBUG]   Imported: org.apache.maven.configuration < plexus.core
[DEBUG]   Imported: org.apache.maven.cli < plexus.core
[DEBUG]   Imported: org.sonatype.aether.installation < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.context < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.authorization < plexus.core
[DEBUG]   Imported: org.apache.maven.project < plexus.core
[DEBUG]   Imported: org.apache.maven.rtinfo < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.lifecycle < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.configuration < plexus.core
[DEBUG]   Imported: org.apache.maven.artifact < plexus.core
[DEBUG]   Imported: org.apache.maven.model < plexus.core
[DEBUG]   Imported: org.apache.maven.* < plexus.core
[DEBUG]   Imported: org.apache.maven.wagon.proxy < plexus.core
[DEBUG]   Imported: org.sonatype.aether.resolution < plexus.core
[DEBUG]   Imported: org.apache.maven.plugin < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.* < plexus.core
[DEBUG]   Imported: org.codehaus.plexus.personality < plexus.core
[DEBUG] Populating class realm maven.api
[DEBUG] org.apache.maven.plugins:maven-eclipse-plugin:jar:2.8:
[DEBUG]    commons-io:commons-io:jar:1.4:compile
[DEBUG]    org.codehaus.plexusSmiley Tonguelexus-archiver:jar:1.0-alpha-7:compile
[DEBUG]       org.codehaus.plexusSmiley Tonguelexus-container-default:jar:1.0-alpha-8:compile
[DEBUG]          junit:junit:jar:3.8.1:compile
[DEBUG]    org.apache.maven:maven-project:jar:2.0.8:compile
[DEBUG]       org.apache.maven:maven-settings:jar:2.0.8:compile
[DEBUG]       org.apache.maven:maven-profile:jar:2.0.8:compile
[DEBUG]       org.apache.maven:maven-plugin-registry:jar:2.0.8:compile
[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.0.8:compile
[DEBUG]    org.apache.maven:maven-model:jar:2.0.8:compile
[DEBUG]    org.apache.maven:maven-artifact-manager:jar:2.0.8:compile
[DEBUG]       org.apache.maven:maven-repository-metadata:jar:2.0.8:compile
[DEBUG]    org.apache.maven:maven-artifact:jar:2.0.8:compile
[DEBUG]    org.apache.maven:maven-core:jar:2.0.8:compile
[DEBUG]       org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.8:compile
[DEBUG]       org.apache.maven.reporting:maven-reporting-api:jar:2.0.8:compile
[DEBUG]          org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-9:compile
[DEBUG]       org.apache.maven:maven-error-diagnostics:jar:2.0.8:compile
[DEBUG]       commons-cli:commons-cli:jar:1.0:compile
[DEBUG]       org.apache.maven:maven-plugin-descriptor:jar:2.0.8:compile
[DEBUG]       org.codehaus.plexusSmiley Tonguelexus-interactivity-api:jar:1.0-alpha-4:compile
[DEBUG]       org.apache.maven:maven-monitor:jar:2.0.8:compile
[DEBUG]       classworlds:classworlds:jar:1.1:compile
[DEBUG]    org.codehaus.plexusSmiley Tonguelexus-utils:jar:1.5.6:compile
[DEBUG]    org.codehaus.plexusSmiley Tonguelexus-interactivity-jline:jar:1.0-alpha-5:compile
[DEBUG]       jline:jline:jar:0.9.1:compile
[DEBUG]    org.apache.maven:maven-archiver:jar:2.2:compile
[DEBUG]    org.codehaus.plexusSmiley Tonguelexus-resources:jar:1.0-alpha-7:compile
[DEBUG]    biz.aQute:bndlib:jar:0.0.145:compile
[DEBUG]    org.apache.maven.shared:maven-osgi:jar:0.2.0:compile
[DEBUG]    org.eclipse.core:resources:jar:3.3.0-v20070604:compile
[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-eclipse-plugin:2.8
[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-eclipse-plugin:2.8
[DEBUG]   Imported:  < maven.api
[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-eclipse-plugin:2.8
[DEBUG]   Included: org.apache.maven.plugins:maven-eclipse-plugin:jar:2.8
[DEBUG]   Included: commons-io:commons-io:jar:1.4
[DEBUG]   Included: org.codehaus.plexusSmiley Tonguelexus-archiver:jar:1.0-alpha-7
[DEBUG]   Included: junit:junit:jar:3.8.1
[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.8
[DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-9
[DEBUG]   Included: commons-cli:commons-cli:jar:1.0
[DEBUG]   Included: org.codehaus.plexusSmiley Tonguelexus-interactivity-api:jar:1.0-alpha-4
[DEBUG]   Included: org.codehaus.plexusSmiley Tonguelexus-utils:jar:1.5.6
[DEBUG]   Included: org.codehaus.plexusSmiley Tonguelexus-interactivity-jline:jar:1.0-alpha-5
[DEBUG]   Included: jline:jline:jar:0.9.1
[DEBUG]   Included: org.apache.maven:maven-archiver:jar:2.2
[DEBUG]   Included: org.codehaus.plexusSmiley Tonguelexus-resources:jar:1.0-alpha-7
[DEBUG]   Included: biz.aQute:bndlib:jar:0.0.145
[DEBUG]   Included: org.apache.maven.shared:maven-osgi:jar:0.2.0
[DEBUG]   Included: org.eclipse.core:resources:jar:3.3.0-v20070604
[DEBUG]   Excluded: org.codehaus.plexusSmiley Tonguelexus-container-default:jar:1.0-alpha-8
[DEBUG]   Excluded: org.apache.maven:maven-project:jar:2.0.8
[DEBUG]   Excluded: org.apache.maven:maven-settings:jar:2.0.8
[DEBUG]   Excluded: org.apache.maven:maven-profile:jar:2.0.8
[DEBUG]   Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.8
[DEBUG]   Excluded: org.apache.maven:maven-plugin-api:jar:2.0.8
[DEBUG]   Excluded: org.apache.maven:maven-model:jar:2.0.8
[DEBUG]   Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.8
[DEBUG]   Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.8
[DEBUG]   Excluded: org.apache.maven:maven-artifact:jar:2.0.8
[DEBUG]   Excluded: org.apache.maven:maven-core:jar:2.0.8
[DEBUG]   Excluded: org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.8
[DEBUG]   Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.8
[DEBUG]   Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.8
[DEBUG]   Excluded: org.apache.maven:maven-monitor:jar:2.0.8
[DEBUG]   Excluded: classworlds:classworlds:jar:1.1
[DEBUG] Configuring mojo org.apache.maven.plugins:maven-eclipse-plugin:2.8:eclipse from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-eclipse-plugin:2.8, parent: sun.misc.Launcher$AppClassLoader@11b86e7]
[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-eclipse-plugin:2.8:eclipse' with basic configurator –>
[DEBUG]   (s) addGroupIdToProjectName = false
[DEBUG]   (s) addVersionToProjectName = false
[DEBUG]   (f) ajdtVersion = none
[DEBUG]   (s) buildOutputDirectory = E:\CA\activiti_src_code\projects\designer\trunk\examples\money-tasks\target\classes
[DEBUG]   (s) executedProject = MavenProject: org.acme:money-tasks:1.0.0-SNAPSHOT @ E:\CA\activiti_src_code\projects\designer\trunk\examples\money-tasks\pom.xml
[DEBUG]   (f) limitProjectReferencesToWorkspace = false
[DEBUG]   (s) localRepository =        id: local
      url: file:///C:/Users/hame/.m2/repository/
   layout: none

[DEBUG]   (f) manifest = E:\CA\activiti_src_code\projects\designer\trunk\examples\money-tasks\META-INF\MANIFEST.MF
[DEBUG]   (f) packaging = jar
[DEBUG]   (f) pde = false
[DEBUG]   (s) project = MavenProject: org.acme:money-tasks:1.0.0-SNAPSHOT @ E:\CA\activiti_src_code\projects\designer\trunk\examples\money-tasks\pom.xml
[DEBUG]   (s) reactorProjects = [MavenProject: org.acme:money-tasks:1.0.0-SNAPSHOT @ E:\CA\activiti_src_code\projects\designer\trunk\examples\money-tasks\pom.xml]
[DEBUG]   (s) remoteArtifactRepositories = [       id: central
      url: http://repo1.maven.org/maven2
   layout: default
snapshots: [enabled => false, update => daily]
releases: [enabled => true, update => daily]
]
[DEBUG]   (f) skip = false
[DEBUG]   (s) useProjectReferences = true
[DEBUG]   (f) wtpapplicationxml = false
[DEBUG]   (f) wtpmanifest = false
[DEBUG]   (s) wtpversion = none
[DEBUG] – end configuration –
[DEBUG] Checking for eclipse workspace at E:\CA\activiti_src_code\projects\designer\trunk\examples\money-tasks\.
[DEBUG] Checking for eclipse workspace at E:\CA\activiti_src_code\projects\designer\trunk\examples\money-tasks
[DEBUG] Checking for eclipse workspace at E:\CA\activiti_src_code\projects\designer\trunk\examples
[DEBUG] Checking for eclipse workspace at E:\CA\activiti_src_code\projects\designer\trunk
[DEBUG] Checking for eclipse workspace at E:\CA\activiti_src_code\projects\designer
[DEBUG] Checking for eclipse workspace at E:\CA\activiti_src_code\projects
[DEBUG] Checking for eclipse workspace at E:\CA\activiti_src_code
[DEBUG] Checking for eclipse workspace at E:\CA
[DEBUG] Checking for eclipse workspace at E:\
[INFO] Using Eclipse Workspace: null
[DEBUG] 0 from workspace null
[INFO] Adding default classpath container: org.eclipse.jdt.launching.JRE_CONTAINER
[DEBUG] org.acme:money-tasks:jar:1.0.0-SNAPSHOT (selected for null)
[WARNING] Missing POM for org.activiti:activiti-designer-integration:jar:5.6: Error resolving project artifact: Failure to find org.activiti:activiti-designer-integrationSmiley Tongueom:5.6 in http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced for project org.activiti:activiti-designer-integrationSmiley Tongueom:5.6
[DEBUG]   org.activiti:activiti-designer-integration:jar:5.6:compile (selected for compile)
[DEBUG] Failure to find org.activiti:activiti-designer-integration:jar:5.6 in http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced

Try downloading the file manually from the project website.

Then, install it using the command:
    mvn install:install-file -DgroupId=org.activiti -DartifactId=activiti-designer-integration -Dversion=5.6 -Dpackaging=jar -Dfile=/path/to/file

Alternatively, if you host your own repository you can deploy the file there:
    mvn deploy:deploy-file -DgroupId=org.activiti -DartifactId=activiti-designer-integration -Dversion=5.6 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

Path to dependency:
1) org.acme:money-tasks:jar:1.0.0-SNAPSHOT
2) org.activiti:activiti-designer-integration:jar:5.6


  org.activiti:activiti-designer-integration:jar:5.6

from the specified remote repositories:
  central (http://repo1.maven.org/maven2, releases=true, snapshots=false)

org.apache.maven.artifact.resolver.ArtifactNotFoundException: Failure to find org.activiti:activiti-designer-integration:jar:5.6 in http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced

Try downloading the file manually from the project website.

Then, install it using the command:
    mvn install:install-file -DgroupId=org.activiti -DartifactId=activiti-designer-integration -Dversion=5.6 -Dpackaging=jar -Dfile=/path/to/file

Alternatively, if you host your own repository you can deploy the file there:
    mvn deploy:deploy-file -DgroupId=org.activiti -DartifactId=activiti-designer-integration -Dversion=5.6 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

Path to dependency:
1) org.acme:money-tasks:jar:1.0.0-SNAPSHOT
2) org.activiti:activiti-designer-integration:jar:5.6


  org.activiti:activiti-designer-integration:jar:5.6

from the specified remote repositories:
  central (http://repo1.maven.org/maven2, releases=true, snapshots=false)

at org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:219)
at org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:157)
at org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:525)
at org.apache.maven.plugin.ide.AbstractIdeSupportMojo.doDependencyResolution(AbstractIdeSupportMojo.java:594)
at org.apache.maven.plugin.ide.AbstractIdeSupportMojo.execute(AbstractIdeSupportMojo.java:507)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)
at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:319)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
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)
Caused by: org.sonatype.aether.resolution.ArtifactResolutionException: Failure to find org.activiti:activiti-designer-integration:jar:5.6 in http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced
at org.sonatype.aether.impl.internal.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:541)
at org.sonatype.aether.impl.internal.DefaultArtifactResolver.resolveArtifacts(DefaultArtifactResolver.java:220)
at org.sonatype.aether.impl.internal.DefaultArtifactResolver.resolveArtifact(DefaultArtifactResolver.java:197)
at org.sonatype.aether.impl.internal.DefaultRepositorySystem.resolveArtifact(DefaultRepositorySystem.java:323)
at org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:213)
… 25 more
Caused by: org.sonatype.aether.transfer.ArtifactNotFoundException: Failure to find org.activiti:activiti-designer-integration:jar:5.6 in http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced
at org.sonatype.aether.impl.internal.DefaultUpdateCheckManager.checkArtifact(DefaultUpdateCheckManager.java:190)
at org.sonatype.aether.impl.internal.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:430)
… 29 more
[WARNING] An error occurred during dependency resolution.
    Failed to retrieve org.activiti:activiti-designer-integration-5.6
Caused by: Failure to find org.activiti:activiti-designer-integration:jar:5.6 in http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced

Try downloading the file manually from the project website.

Then, install it using the command:
    mvn install:install-file -DgroupId=org.activiti -DartifactId=activiti-designer-integration -Dversion=5.6 -Dpackaging=jar -Dfile=/path/to/file

Alternatively, if you host your own repository you can deploy the file there:
    mvn deploy:deploy-file -DgroupId=org.activiti -DartifactId=activiti-designer-integration -Dversion=5.6 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

Path to dependency:
1) org.acme:money-tasks:jar:1.0.0-SNAPSHOT
2) org.activiti:activiti-designer-integration:jar:5.6


  org.activiti:activiti-designer-integration:jar:5.6

from the specified remote repositories:
  central (http://repo1.maven.org/maven2, releases=true, snapshots=false)

[INFO] Unable to read jar manifest from C:\Users\hame\.m2\repository\org\activiti\activiti-designer-integration\5.6\activiti-designer-integration-5.6.jar
[DEBUG] Searching for sources for org.activiti:activiti-designer-integration:5.6:null at org.activiti:activiti-designer-integration:5.6:sources
[DEBUG] Searching for sources for org.activiti:activiti-designer-integration:5.6:null at org.activiti:activiti-designer-integration:5.6:javadoc
[DEBUG] testOutput toRelativeAndFixSeparator E:\CA\activiti_src_code\projects\designer\trunk\examples\money-tasks , E:\CA\activiti_src_code\projects\designer\trunk\examples\money-tasks\target\test-classes
[DEBUG] testOutput after toRelative : target/test-classes
[DEBUG] Processing resource dir: E:\CA\activiti_src_code\projects\designer\trunk\examples\money-tasks\src\main\resources
[DEBUG] Making relative and fixing separator: { E:\CA\activiti_src_code\projects\designer\trunk\examples\money-tasks, E:\CA\activiti_src_code\projects\designer\trunk\examples\money-tasks\target\classes, false }.
[DEBUG] Processing resource dir: E:\CA\activiti_src_code\projects\designer\trunk\examples\money-tasks\src\test\resources
[DEBUG] Resource dir: E:\CA\activiti_src_code\projects\designer\trunk\examples\money-tasks\src\test\resources either missing or not a directory.
[DEBUG] Processing classpath for: source src/main/java: output=null, include=[**/*.java], exclude=[], test=false, filtering=false; default output=target/classes
[DEBUG] Processing classpath for: resource src/main/resources: output=target/classes, include=[], exclude=[**/*.java], test=false, filtering=false; default output=target/classes
[INFO] File E:\CA\activiti_src_code\projects\designer\trunk\examples\money-tasks\.project already exists.
       Additional settings will be preserved, run mvn eclipse:clean if you want old settings to be removed.
[INFO] Wrote Eclipse project for "money-tasks" to E:\CA\activiti_src_code\projects\designer\trunk\examples\money-tasks.
[INFO]
[INFO] ————————————————————————
[INFO] BUILD SUCCESS
[INFO] ————————————————————————
[INFO] Total time: 0.989s
[INFO] Finished at: Tue Jun 14 11:47:13 EDT 2011
[INFO] Final Memory: 5M/15M
[INFO] ————————————————————————

ronald_van_kuij
Champ on-the-rise
Champ on-the-rise
I was just kidding…

But i see you do not have the alfresco activiti repository in your config do you? That needs to be added or you need to build te whole integration layer yourself.