You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by miro <mi...@yahoo.com> on 2008/10/23 19:14:28 UTC

creating a maven project in eclipse very new bee

I am very very new to maven need help in creating   a project . 
Eclipse 3.4.1  and installed maven eclipse project.
Please help me create a new java project to be built by  maven using
eclipse.
I did not find any article   doing this.
for my  trails I created a   new Maven project   which created project.xml 
next I tried create pom.xml it did nothing ,I am assuming maven gets all the
jars need for my project from its default  repository ,I  cannot edit my
environment variables to follow instruction in maven installation, I just
have eclipse and eclipse maven plugin. 
I assuming I tell in some config file I need common-logging, hibernate  etc
jars for my project and maven will bring them from default server repository
and   place it in my local repository.
Please help me  create maven based java project.

-- 
View this message in context: http://www.nabble.com/creating-a-maven-project-in-eclipse---very--new-bee-tp20135531p20135531.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: creating a maven project in eclipse very new bee

Posted by Rusty Wright <ru...@gmail.com>.
Some excellent documentation for Maven and the m2eclipse plugin:

  http://www.sonatype.com/book/reference/public-book.html

  http://www.exist.com/better-build-maven


miro wrote:
> I am very very new to maven need help in creating   a project . 
> Eclipse 3.4.1  and installed maven eclipse project.
> Please help me create a new java project to be built by  maven using
> eclipse.
> I did not find any article   doing this.
> for my  trails I created a   new Maven project   which created project.xml 
> next I tried create pom.xml it did nothing ,I am assuming maven gets all the
> jars need for my project from its default  repository ,I  cannot edit my
> environment variables to follow instruction in maven installation, I just
> have eclipse and eclipse maven plugin. 
> I assuming I tell in some config file I need common-logging, hibernate  etc
> jars for my project and maven will bring them from default server repository
> and   place it in my local repository.
> Please help me  create maven based java project.
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: creating a maven project in eclipse very new bee

Posted by "David C. Hicks" <dh...@i-hicks.org>.
Thanks, Eugene.  I was actually aware of that, but in the interest of 
education I was trying to make it clear that Maven and Eclipse are two 
distinct things.  Sometimes, as useful as they may be, plugins blur the 
lines.  I generally think it's better to learn the one tool, then figure 
out how it gets integrated with something else.

I do like M2Eclipse, by the way.
Dave


Eugene Kuleshov wrote:
> dchicks,
>
>   With m2eclipse, steps you described can be folded nearly into one step.
> You may want to check it out. See, for example, how Maven Archetypes are
> integrated into the new project wizard.
> http://docs.codehaus.org/display/M2ECLIPSE/Creating+Maven+projects
>
>   You can say that Eclipse is not necessary, but it is certainly making
> working with Maven in the IDE easier.
>
>   regards,
>   Eugene
>
>
> dchicks wrote:
>   
>> After reading your first email, I think you have some ideas backwards.  
>> Eclipse does not necessarily "control" what Maven does.  Maven's 
>> activities are all governed by the pom.xml file.  To help simplify 
>> things, why not take it one step at a time.
>>
>> First, create your Maven project.  Use an archetype to generate the 
>> starting point for yourself:  
>> http://docs.codehaus.org/display/MAVENUSER/Archetypes+List
>> Next, build the project using Maven:  mvn install  (this will get all 
>> your dependencies pulled into your local repository)
>> Next, create the necessary Eclipse project files from the Maven 
>> pom.xml:  mvn eclipse:eclipse
>> Now, when you open Eclipse, you can import the project and it will be 
>> all happy with itself.
>>
>> Any time you need to add a dependency, it should be done through the 
>> pom.xml.  M2Eclipse (the Eclipse plugin) can help with this, but isn't 
>> strictly necessary.
>>
>>     

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: creating a maven project in eclipse very new bee

Posted by Eugene Kuleshov <eu...@md.pp.ru>.
dchicks,

  With m2eclipse, steps you described can be folded nearly into one step.
You may want to check it out. See, for example, how Maven Archetypes are
integrated into the new project wizard.
http://docs.codehaus.org/display/M2ECLIPSE/Creating+Maven+projects

  You can say that Eclipse is not necessary, but it is certainly making
working with Maven in the IDE easier.

  regards,
  Eugene


dchicks wrote:
> 
> After reading your first email, I think you have some ideas backwards.  
> Eclipse does not necessarily "control" what Maven does.  Maven's 
> activities are all governed by the pom.xml file.  To help simplify 
> things, why not take it one step at a time.
> 
> First, create your Maven project.  Use an archetype to generate the 
> starting point for yourself:  
> http://docs.codehaus.org/display/MAVENUSER/Archetypes+List
> Next, build the project using Maven:  mvn install  (this will get all 
> your dependencies pulled into your local repository)
> Next, create the necessary Eclipse project files from the Maven 
> pom.xml:  mvn eclipse:eclipse
> Now, when you open Eclipse, you can import the project and it will be 
> all happy with itself.
> 
> Any time you need to add a dependency, it should be done through the 
> pom.xml.  M2Eclipse (the Eclipse plugin) can help with this, but isn't 
> strictly necessary.
> 
-- 
View this message in context: http://www.nabble.com/creating-a-maven-project-in-eclipse---very--new-bee-tp20135531p20140178.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: creating a maven project in eclipse very new bee

Posted by "David C. Hicks" <dh...@i-hicks.org>.
After reading your first email, I think you have some ideas backwards.  
Eclipse does not necessarily "control" what Maven does.  Maven's 
activities are all governed by the pom.xml file.  To help simplify 
things, why not take it one step at a time.

First, create your Maven project.  Use an archetype to generate the 
starting point for yourself:  
http://docs.codehaus.org/display/MAVENUSER/Archetypes+List
Next, build the project using Maven:  mvn install  (this will get all 
your dependencies pulled into your local repository)
Next, create the necessary Eclipse project files from the Maven 
pom.xml:  mvn eclipse:eclipse
Now, when you open Eclipse, you can import the project and it will be 
all happy with itself.

Any time you need to add a dependency, it should be done through the 
pom.xml.  M2Eclipse (the Eclipse plugin) can help with this, but isn't 
strictly necessary.

Good luck!


miro wrote:
> I tried this plugin before , unfortunately I am unable to install this plugin
> . 
> here my eclipse  version
>
> Eclipse Platform
>
> Version: 3.4.1
> Build id: M20080911-1700
>
> (c) Copyright Eclipse contributors and others 2000, 2008.  All rights
> reserved.
> Visit http://www.eclipse.org/platform
>
> This product includes software developed by the
> Apache Software Foundation http://www.apache.org/
>
> I got this eclipse from wtp.
>
> here  the error messages  . please help me get going with maven in eclipse 
>
>
>
> Cannot complete the request.  See the details.
> Unsatisfied dependency:
> [org.maven.ide.eclipse.subclipse.feature.feature.group 0.9.7.200810211352]
> requiredCapability:
> org.eclipse.equinox.p2.iu/org.tigris.subversion.subclipse.ui/0.0.0
> Unsatisfied dependency:
> [org.maven.ide.eclipse.subclipse.feature.feature.group 0.9.7.200810211352]
> requiredCapability:
> org.eclipse.equinox.p2.iu/org.tigris.subversion.subclipse.core/0.0.0
> Unsatisfied dependency: [org.maven.ide.eclipse.ajdt.feature.feature.group
> 0.9.7.200810211352] requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ajdt.feature.group/1.5.0
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ui.workbench/[3.4.0.I20080606-1300,3.4.0.I20080606-1300]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ui.workbench/[3.4.1.M20080827-0800a,3.4.1.M20080827-0800a]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.swt/[3.4.0.v3448f,3.4.0.v3448f]] and
> Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.swt/[3.4.1.v3449c,3.4.1.v3449c]] can
> be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.0.v3448f,3.4.0.v3448f]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.1.v3449c,3.4.1.v3449c]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.0.v20080605-1900,3.4.0.v20080605-1900]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.2.R34x_v20080826-1230,3.4.2.R34x_v20080826-1230]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB,3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.100.r341_v20080814-989JESIEdAciFYfkZZsBfSwQ2341,3.4.100.r341_v20080814-989JESIEdAciFYfkZZsBfSwQ2341]]
> can be satisfied.
> Unsatisfied dependency: [org.maven.ide.eclipse.ajdt 0.9.7.200810211349]
> requiredCapability: osgi.bundle/org.eclipse.ajdt.core/1.5.0
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ui/[3.4.0.I20080610-1200,3.4.0.I20080610-1200]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ui/[3.4.1.M20080910-0800,3.4.1.M20080910-0800]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.200.v20080421-2006,3.2.200.v20080421-2006]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.201.R34x_v20080709,3.2.201.R34x_v20080709]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.200.v20080417,3.2.200.v20080417]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.201.R34x_v20080819,3.2.201.R34x_v20080819]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.help/[3.3.100.v20080610,3.3.100.v20080610]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.help/[3.3.101.v20080702_34x,3.3.101.v20080702_34x]]
> can be satisfied.
> Unsatisfied dependency: [org.maven.ide.eclipse.subclipse 0.9.7.200810211342]
> requiredCapability: osgi.bundle/org.tigris.subversion.subclipse.ui/0.0.0
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.100.v20080509-1800,1.0.100.v20080509-1800]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.101.R34x_v20080731,1.0.101.R34x_v20080731]]
> can be satisfied.
> Unsatisfied dependency: [org.maven.ide.eclipse.subclipse 0.9.7.200810211342]
> requiredCapability: osgi.bundle/org.tigris.subversion.subclipse.core/0.0.0
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.swt/[3.4.0.v3448f,3.4.0.v3448f]] and
> Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.swt/[3.4.1.v3449c,3.4.1.v3449c]] can
> be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.0.v3448f,3.4.0.v3448f]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.1.v3449c,3.4.1.v3449c]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB,3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.100.r341_v20080814-989JESIEdAciFYfkZZsBfSwQ2341,3.4.100.r341_v20080814-989JESIEdAciFYfkZZsBfSwQ2341]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ui.workbench/[3.4.0.I20080606-1300,3.4.0.I20080606-1300]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ui.workbench/[3.4.1.M20080827-0800a,3.4.1.M20080827-0800a]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.0.v20080605-1900,3.4.0.v20080605-1900]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.2.R34x_v20080826-1230,3.4.2.R34x_v20080826-1230]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ui/[3.4.0.I20080610-1200,3.4.0.I20080610-1200]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ui/[3.4.1.M20080910-0800,3.4.1.M20080910-0800]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.200.v20080421-2006,3.2.200.v20080421-2006]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.201.R34x_v20080709,3.2.201.R34x_v20080709]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.200.v20080417,3.2.200.v20080417]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.201.R34x_v20080819,3.2.201.R34x_v20080819]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.help/[3.3.100.v20080610,3.3.100.v20080610]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.help/[3.3.101.v20080702_34x,3.3.101.v20080702_34x]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.100.v20080509-1800,1.0.100.v20080509-1800]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.101.R34x_v20080731,1.0.101.R34x_v20080731]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.swt/[3.4.0.v3448f,3.4.0.v3448f]] and
> Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.swt/[3.4.1.v3449c,3.4.1.v3449c]] can
> be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.0.v3448f,3.4.0.v3448f]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.1.v3449c,3.4.1.v3449c]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB,3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.100.r341_v20080814-989JESIEdAciFYfkZZsBfSwQ2341,3.4.100.r341_v20080814-989JESIEdAciFYfkZZsBfSwQ2341]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ui.workbench/[3.4.0.I20080606-1300,3.4.0.I20080606-1300]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ui.workbench/[3.4.1.M20080827-0800a,3.4.1.M20080827-0800a]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.0.v20080605-1900,3.4.0.v20080605-1900]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.2.R34x_v20080826-1230,3.4.2.R34x_v20080826-1230]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ui/[3.4.0.I20080610-1200,3.4.0.I20080610-1200]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ui/[3.4.1.M20080910-0800,3.4.1.M20080910-0800]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.200.v20080421-2006,3.2.200.v20080421-2006]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.201.R34x_v20080709,3.2.201.R34x_v20080709]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.200.v20080417,3.2.200.v20080417]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.201.R34x_v20080819,3.2.201.R34x_v20080819]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.help/[3.3.100.v20080610,3.3.100.v20080610]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.help/[3.3.101.v20080702_34x,3.3.101.v20080702_34x]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.100.v20080509-1800,1.0.100.v20080509-1800]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.101.R34x_v20080731,1.0.101.R34x_v20080731]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.swt/[3.4.0.v3448f,3.4.0.v3448f]] and
> Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.swt/[3.4.1.v3449c,3.4.1.v3449c]] can
> be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.0.v3448f,3.4.0.v3448f]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.1.v3449c,3.4.1.v3449c]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB,3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.100.r341_v20080814-989JESIEdAciFYfkZZsBfSwQ2341,3.4.100.r341_v20080814-989JESIEdAciFYfkZZsBfSwQ2341]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ui.workbench/[3.4.0.I20080606-1300,3.4.0.I20080606-1300]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ui.workbench/[3.4.1.M20080827-0800a,3.4.1.M20080827-0800a]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.0.v20080605-1900,3.4.0.v20080605-1900]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.2.R34x_v20080826-1230,3.4.2.R34x_v20080826-1230]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ui/[3.4.0.I20080610-1200,3.4.0.I20080610-1200]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ui/[3.4.1.M20080910-0800,3.4.1.M20080910-0800]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.200.v20080421-2006,3.2.200.v20080421-2006]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.201.R34x_v20080709,3.2.201.R34x_v20080709]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.200.v20080417,3.2.200.v20080417]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.201.R34x_v20080819,3.2.201.R34x_v20080819]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.help/[3.3.100.v20080610,3.3.100.v20080610]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.help/[3.3.101.v20080702_34x,3.3.101.v20080702_34x]]
> can be satisfied.
> Cannot find a solution where both Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.100.v20080509-1800,1.0.100.v20080509-1800]]
> and Match[requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.101.R34x_v20080731,1.0.101.R34x_v20080731]]
> can be satisfied.
> Unsatisfied dependency: [org.maven.ide.eclipse.ajdt.feature.feature.group
> 0.9.7.200810211352] requiredCapability:
> org.eclipse.equinox.p2.iu/org.maven.ide.eclipse.ajdt/[0.9.7.200810211349,0.9.7.200810211349]
> Unsatisfied dependency: [org.maven.ide.eclipse.ajdt.feature.feature.group
> 0.9.7.200810211352] requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.ajdt.feature.group/1.5.0
> Unsatisfied dependency: [org.maven.ide.eclipse.ajdt.feature.feature.group
> 0.9.7.200810211352] requiredCapability:
> org.eclipse.equinox.p2.iu/org.maven.ide.eclipse.feature.feature.group/0.0.0
> Unsatisfied dependency:
> [org.maven.ide.eclipse.subclipse.feature.feature.group 0.9.7.200810211352]
> requiredCapability:
> org.eclipse.equinox.p2.iu/org.tigris.subversion.subclipse.ui/0.0.0
> Unsatisfied dependency:
> [org.maven.ide.eclipse.subclipse.feature.feature.group 0.9.7.200810211352]
> requiredCapability:
> org.eclipse.equinox.p2.iu/org.tigris.subversion.subclipse.core/0.0.0
> Unsatisfied dependency:
> [org.maven.ide.eclipse.subclipse.feature.feature.group 0.9.7.200810211352]
> requiredCapability:
> org.eclipse.equinox.p2.iu/org.maven.ide.eclipse.subclipse/[0.9.7.200810211342,0.9.7.200810211342]
> Unsatisfied dependency: [org.maven.ide.eclipse.subclipse 0.9.7.200810211342]
> requiredCapability: osgi.bundle/org.tigris.subversion.subclipse.core/0.0.0
> Unsatisfied dependency: [org.maven.ide.eclipse.subclipse 0.9.7.200810211342]
> requiredCapability: osgi.bundle/org.tigris.subversion.subclipse.ui/0.0.0
> Unsatisfied dependency: [org.eclipse.rcp.feature.group
> 3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB] requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.100.v20080509-1800,1.0.100.v20080509-1800]
> Unsatisfied dependency: [org.eclipse.rcp.feature.group
> 3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB] requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.0.v20080605-1900,3.4.0.v20080605-1900]
> Unsatisfied dependency: [org.eclipse.rcp.feature.group
> 3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB] requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.200.v20080421-2006,3.2.200.v20080421-2006]
> Unsatisfied dependency: [org.eclipse.rcp.feature.group
> 3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB] requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.200.v20080417,3.2.200.v20080417]
> Unsatisfied dependency: [org.eclipse.rcp.feature.group
> 3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB] requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.0.v3448f,3.4.0.v3448f]
> Unsatisfied dependency: [org.eclipse.rcp.feature.group
> 3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB] requiredCapability:
> org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB,3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB]
> Unsatisfied dependency: [org.maven.ide.eclipse.feature.feature.group
> 0.9.7.200810211352] requiredCapability:
> org.eclipse.equinox.p2.iu/org.maven.ide.components.maven_model_edit/[1.0.0.200810211342,1.0.0.200810211342]
> Unsatisfied dependency: [org.maven.ide.eclipse.ajdt 0.9.7.200810211349]
> requiredCapability: osgi.bundle/org.eclipse.ajdt.core/1.5.0
> Unsatisfied dependency: [org.maven.ide.eclipse.wtp.feature.feature.group
> 0.9.7.200810211352] requiredCapability:
> org.eclipse.equinox.p2.iu/org.maven.ide.eclipse.feature.feature.group/0.0.0
>
>
> hgomez wrote:
>   
>> May i suggest you to install m2eclipse ?
>>
>> Le 23 oct. 08 à 19:14, miro <mi...@yahoo.com> a écrit :
>>
>>     
>>> I am very very new to maven need help in creating   a project .
>>> Eclipse 3.4.1  and installed maven eclipse project.
>>> Please help me create a new java project to be built by  maven using
>>> eclipse.
>>> I did not find any article   doing this.
>>> for my  trails I created a   new Maven project   which created  
>>> project.xml
>>> next I tried create pom.xml it did nothing ,I am assuming maven gets  
>>> all the
>>> jars need for my project from its default  repository ,I  cannot  
>>> edit my
>>> environment variables to follow instruction in maven installation, I  
>>> just
>>> have eclipse and eclipse maven plugin.
>>> I assuming I tell in some config file I need common-logging,  
>>> hibernate  etc
>>> jars for my project and maven will bring them from default server  
>>> repository
>>> and   place it in my local repository.
>>> Please help me  create maven based java project.
>>>
>>> -- 
>>> View this message in context:
>>> http://www.nabble.com/creating-a-maven-project-in-eclipse---very--new-bee-tp20135531p20135531.html
>>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>> For additional commands, e-mail: users-help@maven.apache.org
>>>
>>>       
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>>
>>
>>     
>
>   

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: creating a maven project in eclipse very new bee

Posted by Eugene Kuleshov <eu...@md.pp.ru>.
Miro,

  It is better to report issues with m2eclipse to its own mailing list at 
  In this particular case you need to un-select optional m2eclipse features
not appropriate for your environment (probably AJDT and Subclipse). Also see
the following wiki page for the installation requirements
http://docs.codehaus.org/display/M2ECLIPSE/Installation+Requirements

  regards,
  Eugene



miro wrote:
> 
> I tried this plugin before , unfortunately I am unable to install this
> plugin . 
> ...
> here  the error messages  . please help me get going with maven in eclipse 
> ...
> 

-- 
View this message in context: http://www.nabble.com/creating-a-maven-project-in-eclipse---very--new-bee-tp20135531p20140112.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: creating a maven project in eclipse very new bee

Posted by miro <mi...@yahoo.com>.
I tried this plugin before , unfortunately I am unable to install this plugin
. 
here my eclipse  version

Eclipse Platform

Version: 3.4.1
Build id: M20080911-1700

(c) Copyright Eclipse contributors and others 2000, 2008.  All rights
reserved.
Visit http://www.eclipse.org/platform

This product includes software developed by the
Apache Software Foundation http://www.apache.org/

I got this eclipse from wtp.

here  the error messages  . please help me get going with maven in eclipse 



Cannot complete the request.  See the details.
Unsatisfied dependency:
[org.maven.ide.eclipse.subclipse.feature.feature.group 0.9.7.200810211352]
requiredCapability:
org.eclipse.equinox.p2.iu/org.tigris.subversion.subclipse.ui/0.0.0
Unsatisfied dependency:
[org.maven.ide.eclipse.subclipse.feature.feature.group 0.9.7.200810211352]
requiredCapability:
org.eclipse.equinox.p2.iu/org.tigris.subversion.subclipse.core/0.0.0
Unsatisfied dependency: [org.maven.ide.eclipse.ajdt.feature.feature.group
0.9.7.200810211352] requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ajdt.feature.group/1.5.0
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ui.workbench/[3.4.0.I20080606-1300,3.4.0.I20080606-1300]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ui.workbench/[3.4.1.M20080827-0800a,3.4.1.M20080827-0800a]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.swt/[3.4.0.v3448f,3.4.0.v3448f]] and
Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.swt/[3.4.1.v3449c,3.4.1.v3449c]] can
be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.0.v3448f,3.4.0.v3448f]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.1.v3449c,3.4.1.v3449c]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.0.v20080605-1900,3.4.0.v20080605-1900]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.2.R34x_v20080826-1230,3.4.2.R34x_v20080826-1230]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB,3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.100.r341_v20080814-989JESIEdAciFYfkZZsBfSwQ2341,3.4.100.r341_v20080814-989JESIEdAciFYfkZZsBfSwQ2341]]
can be satisfied.
Unsatisfied dependency: [org.maven.ide.eclipse.ajdt 0.9.7.200810211349]
requiredCapability: osgi.bundle/org.eclipse.ajdt.core/1.5.0
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ui/[3.4.0.I20080610-1200,3.4.0.I20080610-1200]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ui/[3.4.1.M20080910-0800,3.4.1.M20080910-0800]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.200.v20080421-2006,3.2.200.v20080421-2006]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.201.R34x_v20080709,3.2.201.R34x_v20080709]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.200.v20080417,3.2.200.v20080417]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.201.R34x_v20080819,3.2.201.R34x_v20080819]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.help/[3.3.100.v20080610,3.3.100.v20080610]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.help/[3.3.101.v20080702_34x,3.3.101.v20080702_34x]]
can be satisfied.
Unsatisfied dependency: [org.maven.ide.eclipse.subclipse 0.9.7.200810211342]
requiredCapability: osgi.bundle/org.tigris.subversion.subclipse.ui/0.0.0
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.100.v20080509-1800,1.0.100.v20080509-1800]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.101.R34x_v20080731,1.0.101.R34x_v20080731]]
can be satisfied.
Unsatisfied dependency: [org.maven.ide.eclipse.subclipse 0.9.7.200810211342]
requiredCapability: osgi.bundle/org.tigris.subversion.subclipse.core/0.0.0
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.swt/[3.4.0.v3448f,3.4.0.v3448f]] and
Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.swt/[3.4.1.v3449c,3.4.1.v3449c]] can
be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.0.v3448f,3.4.0.v3448f]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.1.v3449c,3.4.1.v3449c]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB,3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.100.r341_v20080814-989JESIEdAciFYfkZZsBfSwQ2341,3.4.100.r341_v20080814-989JESIEdAciFYfkZZsBfSwQ2341]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ui.workbench/[3.4.0.I20080606-1300,3.4.0.I20080606-1300]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ui.workbench/[3.4.1.M20080827-0800a,3.4.1.M20080827-0800a]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.0.v20080605-1900,3.4.0.v20080605-1900]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.2.R34x_v20080826-1230,3.4.2.R34x_v20080826-1230]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ui/[3.4.0.I20080610-1200,3.4.0.I20080610-1200]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ui/[3.4.1.M20080910-0800,3.4.1.M20080910-0800]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.200.v20080421-2006,3.2.200.v20080421-2006]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.201.R34x_v20080709,3.2.201.R34x_v20080709]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.200.v20080417,3.2.200.v20080417]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.201.R34x_v20080819,3.2.201.R34x_v20080819]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.help/[3.3.100.v20080610,3.3.100.v20080610]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.help/[3.3.101.v20080702_34x,3.3.101.v20080702_34x]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.100.v20080509-1800,1.0.100.v20080509-1800]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.101.R34x_v20080731,1.0.101.R34x_v20080731]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.swt/[3.4.0.v3448f,3.4.0.v3448f]] and
Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.swt/[3.4.1.v3449c,3.4.1.v3449c]] can
be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.0.v3448f,3.4.0.v3448f]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.1.v3449c,3.4.1.v3449c]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB,3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.100.r341_v20080814-989JESIEdAciFYfkZZsBfSwQ2341,3.4.100.r341_v20080814-989JESIEdAciFYfkZZsBfSwQ2341]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ui.workbench/[3.4.0.I20080606-1300,3.4.0.I20080606-1300]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ui.workbench/[3.4.1.M20080827-0800a,3.4.1.M20080827-0800a]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.0.v20080605-1900,3.4.0.v20080605-1900]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.2.R34x_v20080826-1230,3.4.2.R34x_v20080826-1230]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ui/[3.4.0.I20080610-1200,3.4.0.I20080610-1200]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ui/[3.4.1.M20080910-0800,3.4.1.M20080910-0800]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.200.v20080421-2006,3.2.200.v20080421-2006]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.201.R34x_v20080709,3.2.201.R34x_v20080709]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.200.v20080417,3.2.200.v20080417]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.201.R34x_v20080819,3.2.201.R34x_v20080819]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.help/[3.3.100.v20080610,3.3.100.v20080610]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.help/[3.3.101.v20080702_34x,3.3.101.v20080702_34x]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.100.v20080509-1800,1.0.100.v20080509-1800]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.101.R34x_v20080731,1.0.101.R34x_v20080731]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.swt/[3.4.0.v3448f,3.4.0.v3448f]] and
Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.swt/[3.4.1.v3449c,3.4.1.v3449c]] can
be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.0.v3448f,3.4.0.v3448f]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.1.v3449c,3.4.1.v3449c]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB,3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.100.r341_v20080814-989JESIEdAciFYfkZZsBfSwQ2341,3.4.100.r341_v20080814-989JESIEdAciFYfkZZsBfSwQ2341]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ui.workbench/[3.4.0.I20080606-1300,3.4.0.I20080606-1300]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ui.workbench/[3.4.1.M20080827-0800a,3.4.1.M20080827-0800a]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.0.v20080605-1900,3.4.0.v20080605-1900]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.2.R34x_v20080826-1230,3.4.2.R34x_v20080826-1230]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ui/[3.4.0.I20080610-1200,3.4.0.I20080610-1200]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ui/[3.4.1.M20080910-0800,3.4.1.M20080910-0800]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.200.v20080421-2006,3.2.200.v20080421-2006]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.201.R34x_v20080709,3.2.201.R34x_v20080709]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.200.v20080417,3.2.200.v20080417]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.201.R34x_v20080819,3.2.201.R34x_v20080819]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.help/[3.3.100.v20080610,3.3.100.v20080610]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.help/[3.3.101.v20080702_34x,3.3.101.v20080702_34x]]
can be satisfied.
Cannot find a solution where both Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.100.v20080509-1800,1.0.100.v20080509-1800]]
and Match[requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.101.R34x_v20080731,1.0.101.R34x_v20080731]]
can be satisfied.
Unsatisfied dependency: [org.maven.ide.eclipse.ajdt.feature.feature.group
0.9.7.200810211352] requiredCapability:
org.eclipse.equinox.p2.iu/org.maven.ide.eclipse.ajdt/[0.9.7.200810211349,0.9.7.200810211349]
Unsatisfied dependency: [org.maven.ide.eclipse.ajdt.feature.feature.group
0.9.7.200810211352] requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.ajdt.feature.group/1.5.0
Unsatisfied dependency: [org.maven.ide.eclipse.ajdt.feature.feature.group
0.9.7.200810211352] requiredCapability:
org.eclipse.equinox.p2.iu/org.maven.ide.eclipse.feature.feature.group/0.0.0
Unsatisfied dependency:
[org.maven.ide.eclipse.subclipse.feature.feature.group 0.9.7.200810211352]
requiredCapability:
org.eclipse.equinox.p2.iu/org.tigris.subversion.subclipse.ui/0.0.0
Unsatisfied dependency:
[org.maven.ide.eclipse.subclipse.feature.feature.group 0.9.7.200810211352]
requiredCapability:
org.eclipse.equinox.p2.iu/org.tigris.subversion.subclipse.core/0.0.0
Unsatisfied dependency:
[org.maven.ide.eclipse.subclipse.feature.feature.group 0.9.7.200810211352]
requiredCapability:
org.eclipse.equinox.p2.iu/org.maven.ide.eclipse.subclipse/[0.9.7.200810211342,0.9.7.200810211342]
Unsatisfied dependency: [org.maven.ide.eclipse.subclipse 0.9.7.200810211342]
requiredCapability: osgi.bundle/org.tigris.subversion.subclipse.core/0.0.0
Unsatisfied dependency: [org.maven.ide.eclipse.subclipse 0.9.7.200810211342]
requiredCapability: osgi.bundle/org.tigris.subversion.subclipse.ui/0.0.0
Unsatisfied dependency: [org.eclipse.rcp.feature.group
3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB] requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.launcher.win32.win32.x86/[1.0.100.v20080509-1800,1.0.100.v20080509-1800]
Unsatisfied dependency: [org.eclipse.rcp.feature.group
3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB] requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.osgi/[3.4.0.v20080605-1900,3.4.0.v20080605-1900]
Unsatisfied dependency: [org.eclipse.rcp.feature.group
3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB] requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.equinox.preferences/[3.2.200.v20080421-2006,3.2.200.v20080421-2006]
Unsatisfied dependency: [org.eclipse.rcp.feature.group
3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB] requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.update.configurator/[3.2.200.v20080417,3.2.200.v20080417]
Unsatisfied dependency: [org.eclipse.rcp.feature.group
3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB] requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.swt.win32.win32.x86/[3.4.0.v3448f,3.4.0.v3448f]
Unsatisfied dependency: [org.eclipse.rcp.feature.group
3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB] requiredCapability:
org.eclipse.equinox.p2.iu/org.eclipse.rcp.feature.jar/[3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB,3.4.0.v20080324a-989JERhEk-jWnd5IY8K5tjxB]
Unsatisfied dependency: [org.maven.ide.eclipse.feature.feature.group
0.9.7.200810211352] requiredCapability:
org.eclipse.equinox.p2.iu/org.maven.ide.components.maven_model_edit/[1.0.0.200810211342,1.0.0.200810211342]
Unsatisfied dependency: [org.maven.ide.eclipse.ajdt 0.9.7.200810211349]
requiredCapability: osgi.bundle/org.eclipse.ajdt.core/1.5.0
Unsatisfied dependency: [org.maven.ide.eclipse.wtp.feature.feature.group
0.9.7.200810211352] requiredCapability:
org.eclipse.equinox.p2.iu/org.maven.ide.eclipse.feature.feature.group/0.0.0


hgomez wrote:
> 
> May i suggest you to install m2eclipse ?
> 
> Le 23 oct. 08 à 19:14, miro <mi...@yahoo.com> a écrit :
> 
>>
>> I am very very new to maven need help in creating   a project .
>> Eclipse 3.4.1  and installed maven eclipse project.
>> Please help me create a new java project to be built by  maven using
>> eclipse.
>> I did not find any article   doing this.
>> for my  trails I created a   new Maven project   which created  
>> project.xml
>> next I tried create pom.xml it did nothing ,I am assuming maven gets  
>> all the
>> jars need for my project from its default  repository ,I  cannot  
>> edit my
>> environment variables to follow instruction in maven installation, I  
>> just
>> have eclipse and eclipse maven plugin.
>> I assuming I tell in some config file I need common-logging,  
>> hibernate  etc
>> jars for my project and maven will bring them from default server  
>> repository
>> and   place it in my local repository.
>> Please help me  create maven based java project.
>>
>> -- 
>> View this message in context:
>> http://www.nabble.com/creating-a-maven-project-in-eclipse---very--new-bee-tp20135531p20135531.html
>> Sent from the Maven - Users mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/creating-a-maven-project-in-eclipse---very--new-bee-tp20135531p20138347.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: creating a maven project in eclipse very new bee

Posted by Henri Gomez <he...@gmail.com>.
May i suggest you to install m2eclipse ?

Le 23 oct. 08 à 19:14, miro <mi...@yahoo.com> a écrit :

>
> I am very very new to maven need help in creating   a project .
> Eclipse 3.4.1  and installed maven eclipse project.
> Please help me create a new java project to be built by  maven using
> eclipse.
> I did not find any article   doing this.
> for my  trails I created a   new Maven project   which created  
> project.xml
> next I tried create pom.xml it did nothing ,I am assuming maven gets  
> all the
> jars need for my project from its default  repository ,I  cannot  
> edit my
> environment variables to follow instruction in maven installation, I  
> just
> have eclipse and eclipse maven plugin.
> I assuming I tell in some config file I need common-logging,  
> hibernate  etc
> jars for my project and maven will bring them from default server  
> repository
> and   place it in my local repository.
> Please help me  create maven based java project.
>
> -- 
> View this message in context: http://www.nabble.com/creating-a-maven-project-in-eclipse---very--new-bee-tp20135531p20135531.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org