06-14-2011 10:01 AM
mvn eclipse:eclipse
it gives me the following outputE:\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
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"
06-14-2011 01:19 PM
06-14-2011 02:47 PM
06-14-2011 03:16 PM
Some problems were encountered while building the effective model for org.acme:money-tasks:jar:1.0.0-SNAPSHOT
'build.plugins.plugin.version' for org.apache.maven.plugins:maven-compiler-plugin is missing. @ line 42, column 12
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<optimize>true</optimize>
</configuration>
</plugin>
then I got this output
E:\CA\software\jbpm-installer\workspace\CustomPalette>mvn eclipse:eclipse
[INFO] Scanning for projects…
[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
[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: 1.007s
[INFO] Finished at: Tue Jun 14 15:11:15 EDT 2011
[INFO] Final Memory: 5M/15M
[INFO] ————————————————————————
06-15-2011 02:12 AM
06-15-2011 10:21 AM
06-16-2011 04:21 PM
06-16-2011 05:15 PM
06-17-2011 01:40 AM
06-17-2011 03:20 AM
06-17-2011 11:02 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.