Eclipse Plugin Central

Maven Workshop - Maven2 With eclipse

Anonymous - Nov 06, 2005 - 07:10 AM
Post subject: Maven2 With eclipse
hi
i want to know if there's a maven 2 plugins to use it with eclipse
Thanx Exclamation Sad
Anonymous - Nov 10, 2005 - 07:24 PM
Post subject: RE: Maven2 With eclipse
there is one in the works but I'm not sure if its been released yet.
query the maven list, at one point someone was offering a "sneak peek" at the work done so far.
Anonymous - Dec 01, 2005 - 10:53 AM
Post subject: RE: Maven2 With eclipse
Can anybody probably point me to the sneak peek of a plugin that integrates maven 2 into eclipse? I searched for several hours now and am kind of unlucky...
Anonymous - Dec 08, 2005 - 12:05 PM
Post subject: RE: Maven2 With eclipse
i have created on.. which
- enable you to use dependencies declared in pom.xml as java library
- or you can copy dependencies declared in pom.xml into java project
- Add M2_REPRO VARIABLE to eclipse Env for using with "mvn eclipse:eclipse"

if you need to try this, leave me your e-mail here...
crgardner - Dec 10, 2005 - 03:30 PM
Post subject: RE: Maven2 With eclipse
Anonymous wrote:
i have created on.. which
- enable you to use dependencies declared in pom.xml as java library
- or you can copy dependencies declared in pom.xml into java project
- Add M2_REPRO VARIABLE to eclipse Env for using with "mvn eclipse:eclipse"

if you need to try this, leave me your e-mail here...



I'd be interested in this, too. Please send to my address:

chris_gardner76 at yahoo.com
Anonymous - Dec 12, 2005 - 10:06 AM
Post subject: RE: Maven2 With eclipse
I'd be interested in this, too. Please send to my address:

giulio02 at romandie.com
Anonymous - Dec 12, 2005 - 01:34 PM
Post subject: RE: Maven2 With eclipse
I'd be interested in this, too. Please send to my address:

milbot 010 gmx.net - replace 010 with at

Thanks!!!
Anonymous - Dec 14, 2005 - 08:21 PM
Post subject: RE: Maven2 With eclipse
I had trouble with this plugin. I'm using only the antlib maven 2.0 tasks, not full-blown maven 2.0. The tasks work well. They download everything I need including hibernate. When I use the plugin for eclipse and point to my pom.xml, it seems to choke on loading up hibernate. As long as hibernate 3.0.5 is referenced in my pom.xml, the plugin breaks. If I remove the hibernate reference, it works fine (and gets the other 2 dependencies along with their dependencies). When I add hibernate back to my pom.xml, everything for my other 2 dependencies disappears, leaving an empty "dependencies" classpath variable. Has anyone else tried this yet? If not, try it with org.hibernate v. 3.0.5 and let me know.

chris_gardner76 at yahoo.com

Thanks
Anonymous - Dec 15, 2005 - 03:37 AM
Post subject: RE: Maven2 With eclipse
It's seem you use difference local repo for antlib..

this plugin will check for C:\Documents and Settings\<user>\.m2settings.xml for local repo
if not found it will use default one which is <user home>/.m2/repository

you may need to create setting file for this plugins

here is my cuurent setting file

<settings>
<!-- localRepository
| The path to the local repository maven will use to store artifacts.
|
| Default: ~/.m2/repository
-->
<localRepository>D:/Workspaces/java-repository</localRepository>
</settings>

thank for trying my plugins

thawee
Anonymous - Dec 15, 2005 - 03:47 AM
Post subject: Re: RE: Maven2 With eclipse
[quote="Anonymous"]i have created on.. which
- enable you to use dependencies declared in pom.xml as java library
- or you can copy dependencies declared in pom.xml into java project
- Add M2_REPRO VARIABLE to eclipse Env for using with "mvn eclipse:eclipse"

I would like also
ahmadyounis_ay2@yahoo.com
Anonymous - Dec 15, 2005 - 06:01 PM
Post subject: RE: Re: RE: Maven2 With eclipse
Today at JavaPolis Vincent Massol had a good talk about Maven 2 (<http://www.javapolis.com/confluence/display/JP05/Maven+2.0>). He also demonstrated a new plug-in that was freshly announced yesterday (something of a 0.0.3 release). He forgot to mention the name or the URL. Is this the same plugin?

Anyway, I would like to test it too: jos.potargent ad gmail dod com
Anonymous - Dec 15, 2005 - 08:53 PM
Post subject: Re: RE: Maven2 With eclipse
I've added this m2settings.xml file:

C:\Documents and Settings\Chris\.m2\m2settings.xml

with these contents

<settings>
<localRepository>c:/Documents and Settings/Chris/maven-repository</localRepository>
</settings>

The maven antlib tasks 2.0.1 work fine and drop the dependencies in the repository. The plugin still deletes everything when I include hibernate 3.0.5 in my pom.xml.

When I remove hibernate from the pom, it adds the other dependencies. I noticed, however, that those dependencies are still coming out of the default repository in .m2 in my home directory. In any event all the possible m2 repositories on my machine have the hibernate 3.0.5 jars and poms.

Anonymous wrote:
It's seem you use difference local repo for antlib..

this plugin will check for C:\Documents and Settings\<user>\.m2settings.xml for local repo
if not found it will use default one which is <user home>/.m2/repository

you may need to create setting file for this plugins

here is my cuurent setting file

<settings>
<!-- localRepository
| The path to the local repository maven will use to store artifacts.
|
| Default: ~/.m2/repository
-->
<localRepository>D:/Workspaces/java-repository</localRepository>
</settings>

thank for trying my plugins

thawee

Anonymous - Dec 16, 2005 - 05:26 AM
Post subject: RE: Re: RE: Maven2 With eclipse
oop! sorry my misstake the file sjhould be
C:\Documents and Settings\Chris\.m2\settings.xml
Anonymous - Dec 16, 2005 - 05:34 AM
Post subject: RE: Re: RE: Maven2 With eclipse
finally my temporary space is up....
you can try my plugin from
http://www.myjavaserver.com/~thawee/eclipse/

thawee
Anonymous - Dec 16, 2005 - 07:54 AM
Post subject: RE: Re: RE: Maven2 With eclipse
Anonymous wrote:
oop! sorry my misstake the file sjhould be
C:\Documents and Settings\Chris\.m2\settings.xml
Followed the instructions. Same problem. Maybe the problem is a combination of a strange hibernate 3.0.5 pom and my not having full-blown maven on my machine. Would someone setup a pom that uses org.hibernate, hibernate, 3.0.5 to see if you have the same problem? If so, please try it against a new repository. Also, if you have a machine that doesn't have maven 2.0 on it that would be good, too.

Thanks
dirtbikejunkie - Dec 19, 2005 - 02:29 AM
Post subject: Re: RE: Re: RE: Maven2 With eclipse
Anonymous wrote:
Anonymous wrote:
oop! sorry my misstake the file sjhould be
C:\Documents and Settings\Chris\.m2\settings.xml
Followed the instructions. Same problem. Maybe the problem is a combination of a strange hibernate 3.0.5 pom and my not having full-blown maven on my machine. Would someone setup a pom that uses org.hibernate, hibernate, 3.0.5 to see if you have the same problem? If so, please try it against a new repository. Also, if you have a machine that doesn't have maven 2.0 on it that would be good, too.

Thanks


I am using Hibernate 3.1, MySQL, Maven 2, and Xdoclet2 and seems to work. Took a while to get a working setup, mostly due to little to no documentation on Xdoclet2 hibernate plugin.

The maven plugin seems to be working with exception I am not able to to run Maven as an external tool and receive the error "Ignoring available plugin update: 1.0-alpha-2 as it requires Maven version 2.0-beta". This would be more or less a nice to have as it looks like the run command allows you to easily specify goals and such for quick maven builds from eclipse. if anyone has info on this I'd appreciate it.

Here is what I have for my POM:

<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.myorg</groupId>
<artifactId>myorg</artifactId>
<packaging>war</packaging>
<name>myorg Web Application</name>
<version>1.0-SNAPSHOT</version>
<url>http://myorg.kicks-ass.org</url>
<inceptionYear>2005</inceptionYear>
<organization>
<name>myorg</name>
<url>http://myorg.org</url>
</organization>
<build>
<finalName>myorg</finalName>
<plugins>
<plugin>
<artifactId>xdoclet-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>xdoclet</goal>
</goals>
<configuration>
<tasks>
<echo message="Generating HBM files from java source to ${basedir}/src/main/resources/hibernate"/>
<hibernatedoclet destdir="${basedir}/src/main/resources/hibernate" excludedtags="@version,@author,@todo,@see,@desc" verbose="true">
<fileset dir="${basedir}/src/main/java" includes="**/hibernate/*.java"/>
<hibernate version="3.0" />
</hibernatedoclet>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate</artifactId>
<version>3.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>3.0.10</version>
</dependency>
</dependencies>
</project>
Anonymous - Dec 19, 2005 - 06:49 PM
Post subject: RE: Re: RE: Maven2 With eclipse
maven 2 eclipse plugin:
http://maven.apache.org/eclipse-plugin.html
Anonymous - Dec 20, 2005 - 09:11 AM
Post subject: RE: Re: RE: Maven2 With eclipse
Anonymous wrote:
maven 2 eclipse plugin:
http://maven.apache.org/eclipse-plugin.html
This one works much better. I'm able to get my dependencies. Now I'm just having problems with what appear to be bad pom files for either hibernate or spring at ibiblio (certain javax dependencies aren't in their expected locations). I'm beginning to wonder if even using a subset of maven is worth it.
Anonymous - Dec 21, 2005 - 06:22 PM
Post subject: Re: RE: Maven2 With eclipse
please email me at ohm.anandam@gmail.com

thanks
Ohm
Anonymous - Dec 22, 2005 - 01:45 AM
Post subject: RE: Re: RE: Maven2 With eclipse
K. Ohm
maven 2 eclipse plugin @ http://maven.apache.org/eclipse-plugin.html is working superor than mine. only one problem is that it use the old maven embbeder library (beta version), but hopfully it's will update and be part of eclipse platform...Smile

but if you want to try my plugin you may get it @ http://www.myjavaserver.com/~thawee/eclipse/

thawee
Anonymous - Jul 28, 2006 - 04:33 AM
Post subject: hello
phentermine pill xenical can buy phentermine home phentermine phentermine mg phentermine and guarantee buy a substitute for weight free prescription important phentermine diet and buy pill generic phentermine online online what are the online cheap phentermine without gt online prices cheap now 149 online shipping 112 cod online indexbuy no
<a href="http://phenik.info">Buy Phentermine</a>, http://phenik.info,Buy Phentermine
xanax diet pill
<a href="http://sys.forumup.org/"><b>buy xanax</b></a>,http://sys.forumup.org/,buy xanax
All times are GMT - 6 Hours
Powered by PNphpBB2 © 2003-2004 The PNphpBB Group
Credits