Re: jaxb archetype (newbie)

2017-01-17 Thread Curtis Rueden
Hi Gary, > If I'm looking for an archetype of a particular type, how do I find it? Sorry, I do not know a good way. > Do all archetypes have "archetype" in the group or artifact name? I do not think it is a hard requirement, but the convention is to put "archetype" in the artifactId [1]. And fo

Re: jaxb archetype (newbie)

2017-01-16 Thread Gary Aitken
Thanks; still in need of a clarification... >> 1. Is com.sun.xml.bind:jaxb what I want for an archetype? > > I cannot comment on whether a good archetype for JAXB exists, since I > personally have not used it. But perhaps this plugin is all you need: > http://www.mojohaus.org/jaxb2-maven-plu

Re: jaxb archetype (newbie)

2017-01-16 Thread Curtis Rueden
Hi Gary, > 1. Is com.sun.xml.bind:jaxb what I want for an archetype? I cannot comment on whether a good archetype for JAXB exists, since I personally have not used it. But perhaps this plugin is all you need: http://www.mojohaus.org/jaxb2-maven-plugin/Documentation/v2.2/index.html I also fo

jaxb archetype (newbie)

2017-01-16 Thread Gary Aitken
Trying to convert an old project from using ant to maven; having issues getting off the ground. I've gone through the sonatype maven-by-example but am pretty confused. Starting with just a piece which will be its own project. I want to generate a project which uses jaxb during the compile/build

Re: Maven newbie: Marry maven classloaders and jars-in-jar artifact?

2016-02-24 Thread Wayne Fay
the "jars in a jar" thing and use bog-standard Maven tooling including dependency management etc to pull in the jars you are depending on for your application. Especially seeing as you are a "Maven newbie." We've seen plenty of people new to Maven come to this list with no

Maven newbie: Marry maven classloaders and jars-in-jar artifact?

2016-02-10 Thread Stefan Sobernig
Dear all, I use Eclipse Tycho [1] to obtain and to repackage a number of Eclipse plug-in jars into a Maven artifact [2]. This artifact is effectively a "jars-in-jar": superjar.jar `- plugin1.jar `- plugin2.jar `- *.jar `- org.eclipse.jdt.internal.jarinjarloader.* When using this superjar artifac

Re: newbie problem with deploy:deploy-file

2014-06-17 Thread Andrew Davidson
many many thanks Andy On Jun 17, 2014, at 11:28 AM, Robert Scholte wrote: > Hi Andy, > > First of all: welcome in the world of Apache Maven! > I won't go into detail too much right now, I'd suggest to do some > getting-started tutorials[2] to understand the basics. > > Let's start with: > Wit

Re: newbie problem with deploy:deploy-file

2014-06-17 Thread Robert Scholte
Hi Andy, First of all: welcome in the world of Apache Maven! I won't go into detail too much right now, I'd suggest to do some getting-started tutorials[2] to understand the basics. Let's start with: With Maven you can call 2 things: a phase of a lifecycle[1] or a goal from a specific plugi

newbie problem with deploy:deploy-file

2014-06-16 Thread Andrew Davidson
Hi I recently joined an existing project that uses the maven ant plug into to build artifacts that we need to distribute. I am trying to add support for deploy-file $ mvn deploy:deploy-file -DskipTests 2>&1 | tee mvn.deploy-file.out [ERROR] Failed to execute goal org.apache.maven.plugins:mav

Re: Newbie trying to understand how to use some plugins

2013-06-12 Thread rdiddly
tion. I think I've got it now. Now I'm dealing with other dependencies not being resolved at deployment. I'll undoubtedly post more specifics later. Thanks -- View this message in context: http://maven.40175.n5.nabble.com/Newbie-trying-to-understand-how-to-use-some-plugins-tp

Re: Newbie trying to understand how to use some plugins

2013-06-12 Thread Stephen Coy
Richard, When a Java EE server deploys an application EAR, its various components are categorised as modules: Each EJB jar is a separate module Each WAR is a separate module - including all of the jars in it's WEB-INF/lib directory All the jars in the EAR/lib directory are considered as a single

Re: Newbie trying to understand how to use some plugins

2013-06-11 Thread Greg Trasuk
Re: "Local" access crossing different EAR files: That isn't Maven related, but I happened to be discussing this with some folks in my company just this morning. Basically it's a classloading issue. An Enterprise Application (ear file) has its own classloader. So the client in ear file B, tryin

Re: Newbie trying to understand how to use some plugins

2013-06-11 Thread Wayne Fay
> I think that I'd like to deploy to JBoss AS 7 with an EAR containing the EJB > jar, and two > separate wars that use the services of the beans packaged in the EAR. I'm a > little > concerned though because I read that if I go this route, the web tier will be > forced to use > the remote interf

Re: Newbie trying to understand how to use some plugins

2013-06-11 Thread RICHARD DOUST
Wayne, Thanks for your response. I don't really need to make the EJB jar work standalone. I was trying to divide and conquer. In 4.2.2 I deployed the EJB jar as part of an EAR with 2 WARs. I think that I'd like to deploy to JBoss AS 7 with an EAR containing the EJB jar, and two separate wars t

Re: Newbie trying to understand how to use some plugins

2013-06-10 Thread Ron Wheeler
Is this a problem that an installer solves in a much more flexible way? Clearly assembly and shade can do a lot but sometimes it appears that linking to an existing installer with a Maven plug-in (izpack for example) might do it in a more simple and flexible way and allow a lot more pieces to

Re: Newbie trying to understand how to use some plugins

2013-06-10 Thread Wayne Fay
> Anyway, I'm running into issues at deployment time (just starting with the > EJB jar as a > standalone deployment) because the EJB jar depends on a 3rd party jar that is > not > available on the server. If you **really** need to make the EJB jar work in standalone deployment (which is not espe

Newbie trying to understand how to use some plugins

2013-06-10 Thread RICHARD DOUST
Hi, I'm new to Maven. I'm migrating an EAR that contains 2 war files and an EJB jar file from JBoss 4.2.2 to JBoss AS 7. In the process, I'm moving to Maven, as it seems to manage dependencies quite a lot better than Ant. So far, I've created a multi-module POM with 5 sub-modules. I've gotten

Re: Newbie problem getting basic functionality to work.

2012-12-21 Thread Wayne Fay
>OK, turns out the problem was that for whatever reason the first time Maven downloaded the archives > some of the jar files came in corrupted. ... > I see that about five of the jar files were corrupted. >I deleted the corrupted files and re-ran Maven, this time finding one corrupted file

Re: RE: Newbie problem getting basic functionality to work.

2012-12-21 Thread Wayne Fay
>Meanwhile, are there other interfaces to this mailing list? I would have > liked to hit a > reply button but seem to have only found the archive view. The primary interface is email (obviously). You simply subscribe to the list. Secondary interfaces include Nabble.com and Markmail.org and m

Re: Newbie problem getting basic functionality to work.

2012-12-21 Thread Ron Wheeler
I put my free advice in my blog with a link to the page that describes JNDI's use. http://blog.artifact-software.com/tech/?p=177 Ron On 21/12/2012 9:00 AM, Kammer, John wrote: SOLUTION: OK, turns out the problem was that for whatever reason the first time Maven downloaded the archives som

Re: Newbie problem getting basic functionality to work.

2012-12-21 Thread Ron Wheeler
Free advice: 1) Before you get too deep into Maven, set up your own Maven Repo. We use the community version of Nexus but there are others available. It makes maven much easier to use and much easier to understand. 2) Walk before you run. Try to get your builds running smoothly before optimizin

RE: Newbie problem getting basic functionality to work.

2012-12-21 Thread Kammer, John
SOLUTION: OK, turns out the problem was that for whatever reason the first time Maven downloaded the archives some of the jar files came in corrupted. The Apache Commons Collections was one of these and generally the first one encountered when trying to run any Maven build. The error messages

RE: Newbie problem getting basic functionality to work.

2012-12-20 Thread Kammer, John
em. Ron From: Kammer, John Sent: Thursday, December 20, 2012 6:46 PM To: users@maven.apache.org Subject: RE: Newbie problem getting basic functionality to work. Hi Ron, I can run "mvn clean" once I've gotten a sample pom file and that works fine.

Re: Newbie problem getting basic functionality to work.

2012-12-20 Thread Ron Wheeler
IDE to develop your code? (Eclipse/STS from Springsource comes ready to run maven). From: Kammer, John Sent: Thursday, December 20, 2012 4:58 PM To: users@maven.apache.org Subject: RE: RE: Newbie problem getting basic functionality to work. Thanks Wayne, Doubl

RE: Newbie problem getting basic functionality to work.

2012-12-20 Thread Kammer, John
aven). From: Kammer, John Sent: Thursday, December 20, 2012 4:58 PM To: users@maven.apache.org Subject: RE: RE: Newbie problem getting basic functionality to work. Thanks Wayne, Double checked with the network guys here and they assured me we are not behin

Re: Newbie problem getting basic functionality to work.

2012-12-20 Thread Ron Wheeler
2012 4:23 PM To: users@maven.apache.org Subject: Newbie problem getting basic functionality to work. Hello, and thanks in advance for any help. I am completely new to Maven and trying (without success) to get the most basic of Maven functionality to work. Have tried multiple versions of Maven and

RE: RE: Newbie problem getting basic functionality to work.

2012-12-20 Thread Kammer, John
27;t repeat the instructions here. Wayne From: Kammer, John Sent: Wednesday, December 19, 2012 4:23 PM To: users@maven.apache.org Subject: Newbie problem getting basic functionality to work. Hello, and thanks in advance for any help. I am completely new to Maven and trying (without

Re: Newbie problem getting basic functionality to work.

2012-12-19 Thread Wayne Fay
> I am completely new to Maven and trying (without success) to get the most > basic of Maven functionality to work. > Have tried multiple versions of Maven and Java all with the same results (see > below). > It seems the Apache Commons Collections jar is missing, and for some reason > not being

Re: newbie example for maven

2012-06-08 Thread Yaprak Ayazoglu
t.. > Martin > __ > > >> Date: Thu, 7 Jun 2012 11:16:47 +0200 >> Subject: Re: newbie example for maven >> From: mhm.s...@gmail.com >> To: users@maven.apache.org >> >> It seems a Maven configuration problem, if you are working with Windows,

RE: newbie example for maven

2012-06-07 Thread Martin Gainty
anders was right..setting M2_HOME to the maven deploy folder solved the problem cwd $M2_HOME/bootls *.jar plexus-classworlds-2.4.jar Cordialement.. Martin __ > Date: Thu, 7 Jun 2012 11:16:47 +0200 > Subject: Re: newbie example for maven

Re: newbie example for maven

2012-06-07 Thread Mohamed SIDI
It seems a Maven configuration problem, if you are working with Windows, can you make : c> maven -version pour ensure thant maven is well installed 2012/6/7 abhijith tn > Ensure you set the bin of Maven installation in classpath. Just google, > setting classpath of maven. > > I think this should

Re: newbie example for maven

2012-06-07 Thread abhijith tn
Ensure you set the bin of Maven installation in classpath. Just google, setting classpath of maven. I think this should resolve the problem. On Thu, Jun 7, 2012 at 10:27 AM, Anders Hammar wrote: > Have you defined the M2_HOME env variable? > > /Anders > > On Thu, Jun 7, 2012 at 9:56 AM, Yaprak

Re: newbie example for maven

2012-06-07 Thread Anders Hammar
Have you defined the M2_HOME env variable? /Anders On Thu, Jun 7, 2012 at 9:56 AM, Yaprak Ayazoglu wrote: > Hi, > > I'm trying to understand whether maven works or not. > > Depending on the lines below maven seems not working at all. How can I fix > this > problem? Can you help? > > ya@yaprak:~$

newbie example for maven

2012-06-07 Thread Yaprak Ayazoglu
Hi, I'm trying to understand whether maven works or not. Depending on the lines below maven seems not working at all. How can I fix this problem? Can you help? ya@yaprak:~$ mvn Error: Could not find or load main class org.codehaus.classworlds.Launcher -- Yaprak

Re: Newbie problem: Maven doesn't startup

2012-05-09 Thread David Pérez
> Hi, > > I have a very basic problem installing the latest version of Maven. > I'm using Ubuntu 12.04 and Sun Java 6. Solved the problem. I have used a buggy unpack tool. Sorry for the noise caused. - To unsubscribe, e-mail:

Newbie problem: Maven doesn't startup

2012-05-09 Thread David Pérez
Hi, I have a very basic problem installing the latest version of Maven. I'm using Ubuntu 12.04 and Sun Java 6. I have followed this steps: 1) Unpack the archive where you would like to store the binaries, eg: Unix-based Operating Systems (Linux, Solaris and Mac OS X) tar zxvf apache

Re: newbie issue in preparing release: svn tag dies with "Unable to open an ra_local session to URL"

2011-11-09 Thread Dennis Lundberg
rs/ignatiusjreilly/release/testproject/trunk > > > > >org.apache.maven.plugins > maven-release-plugin >2.0-beta-9 > > > file:Users/ignatiusjreilly/release/testproject/tags > >

newbie issue in preparing release: svn tag dies with "Unable to open an ra_local session to URL"

2011-11-09 Thread revengeofthepencil
Anyone who can spot what I'm doing wrong here will have my eternal gratitude. Thanks, Alex -- View this message in context: http://maven.40175.n5.nabble.com/newbie-issue-in-preparing-release-svn-tag-dies-with-Unable-to-open-an-ra-local-session-to-URL-tp4972156p4972156.htm

Re: Newbie writing a mojo

2011-08-29 Thread Eric Kolotyluk
Actually, I already had this in my settings.xml nexus * http://nexus:8081/nexus/content/groups/public so I must have been battling some other configuration problem. Fortunately things seem to be working right now, and my mojo is working. Cheers, Eric On 2011-08-29 12:45 PM, Ansgar Konerma

Re: Newbie writing a mojo

2011-08-29 Thread Eric Kolotyluk
Ahh... Well, things seem to be working now, maven is finding my mojo, and I have not changed the settings.xml file. Sometimes when you fiddle with enough settings things start working, but I'm not sure what the magic sauce was in this case. Cheers, Eric On 2011-08-29 12:16 PM, Ron Wheeler

Re: Newbie writing a mojo

2011-08-29 Thread Eric Kolotyluk
Yes, I can definitely see it in the local repository at those coordinates. Actually, it seems to be looking in the local repository now, so I can just use "mvn clean install" before testing it. Not sure what I did to get it working, but doing a "clean" seems to have helped. Thanks for all the

Re: Newbie writing a mojo

2011-08-29 Thread Ansgar Konermann
Am 29.08.2011 22:13 schrieb "Eric Kolotyluk" : > > OK, "mvn clean install" helps, but I actually need to use "mvn clean deploy" > > For some reason it does not seem to look in the local repository, it seems to be in love with Nexus. The reason is: maven cached "plugin not found" fact. See my previ

Re: Newbie writing a mojo

2011-08-29 Thread Eric Kolotyluk
OK, "mvn clean install" helps, but I actually need to use "mvn clean deploy" For some reason it does not seem to look in the local repository, it seems to be in love with Nexus. At any rate I can actually see my mojo running via the log - wha-hoo! Now if I can only figure out an easy way to u

Re: Newbie writing a mojo

2011-08-29 Thread Ansgar Konermann
Am 29.08.2011 17:45 schrieb "Eric Kolotyluk" : > > On the command line in in the project with the POM I showed I use > > P:\Intersystem\main\platform.Java\intersystem-jni4net>mvn validate > [INFO] Scanning for projects... > [INFO] > [INFO] ---

Re: Newbie writing a mojo

2011-08-29 Thread Ansgar Konermann
Am 29.08.2011 17:25 schrieb "Eric Kolotyluk" : > > OK, this is what I have in my settings.xml > > > nexus > > > > > central > http://central > true > true > > > > > central > http://central > true > true > > > > > Do I need to configure something else? Yes. The URL you configured for

Re: Newbie writing a mojo

2011-08-29 Thread Ron Wheeler
Read what you promised Maven... central http://central true true Plug-in are found at "central" Ron On 29/08/2011 11:24 AM, Eric Kolotyluk wrote: OK, this is what I have in my settings.xml nexus central http://central true true central http://central true true Do I need to con

Re: Newbie writing a mojo

2011-08-29 Thread Andy Glick
Let me ask you a very simple question. Has the plugin that you have created been successfully installed in your local repository at the proper coordinates? Forget about Nexus for a bit. Do the following 2 files exist? $[maven-repo}/com/kodak/jni4net/jni4net-maven-plugin/0.0.1-SNAPSHOT/jni4net-

Re: Newbie writing a mojo

2011-08-29 Thread Hilco Wijbenga
On 29 August 2011 10:22, Eric Kolotyluk wrote: > That's interesting because it was m2e that created the project from the > maven-plugin archetype. I'm just going by [1]. I guess it doesn't matter. > Anyway, I made the change to the POM, but I still get exactly the same error > messages - can't f

Re: Newbie writing a mojo

2011-08-29 Thread Eric Kolotyluk
That's interesting because it was m2e that created the project from the maven-plugin archetype. Anyway, I made the change to the POM, but I still get exactly the same error messages - can't find the POM for the plugin. Cheers, Eric On 2011-08-29 9:57 AM, Hilco Wijbenga wrote: On 29 August 2

Re: Newbie writing a mojo

2011-08-29 Thread Hilco Wijbenga
On 29 August 2011 09:41, Eric Kolotyluk wrote: > OK, here is the POM from my plugin project > > 4.0.0 > > com.kodak.jni4net > jni4net-maven-plugin > 0.0.1-SNAPSHOT > maven-plugin > > jni4net-maven-plugin Maven Plugin > http://maven.apache.org > > > UTF-8 > > > > http://nexus:8081/nexus/content/

Re: Newbie writing a mojo

2011-08-29 Thread Eric Kolotyluk
OK, here is the POM from my plugin project 4.0.0 com.kodak.jni4net jni4net-maven-plugin 0.0.1-SNAPSHOT maven-plugin jni4net-maven-plugin Maven Plugin http://maven.apache.org UTF-8 http://nexus:8081/nexus/content/groups/public false nexus Kodak Release Repository http://nexus:8081/nexus/co

Re: Newbie writing a mojo

2011-08-29 Thread Hilco Wijbenga
On 29 August 2011 08:45, Eric Kolotyluk wrote: > On the command line in in the project with the POM I showed I use > > P:\Intersystem\main\platform.Java\intersystem-jni4net>mvn validate > [INFO] Scanning for projects... > [INFO] > [INFO] > --

Re: Newbie writing a mojo

2011-08-29 Thread Eric Kolotyluk
On the command line in in the project with the POM I showed I use P:\Intersystem\main\platform.Java\intersystem-jni4net>mvn validate [INFO] Scanning for projects... [INFO] [INFO] [INFO] Building intersystem-jni4net 0.0.2-S

Re: Newbie writing a mojo

2011-08-29 Thread Jason van Zyl
If you want it to be open source put the plugin in Github and then we can see the whole project and try it. Trying to deduce what's wrong by looking at partial snippets is really hard. If I can built and run easily, it's a lot easier to help. Maven will always look locally first. Most likely is

Re: Newbie writing a mojo

2011-08-29 Thread Hilco Wijbenga
On 29 August 2011 07:32, Eric Kolotyluk wrote: > OK, I'm trying to get my first mojo working. > > I created a project with the maven-plugin archetype and used the default > mojo that is there, but I cannot seem to get it to run. > > The first time I tried to run it maven complained it could not fi

Re: Newbie writing a mojo

2011-08-29 Thread Eric Kolotyluk
OK, this is what I have in my settings.xml nexus central http://central true true central http://central true true Do I need to configure something else? Cheers, Eric On 2011-08-29 7:53 AM, Ron Wheeler wrote: I am not sure but I think that you are deploying to the SNAPSHOT repo bu

Re: Newbie writing a mojo

2011-08-29 Thread Ron Wheeler
I am not sure but I think that you are deploying to the SNAPSHOT repo but maven is looking for plugins in the repo that you have defined as your plug-in repo. Check your settings.xml to see where you tell Maven to find plugins. Ron On 29/08/2011 10:44 AM, Eric Kolotyluk wrote: This is what I

Re: Newbie writing a mojo

2011-08-29 Thread Eric Kolotyluk
This is what I have in my POM http://nexus:8081/nexus/content/groups/public false nexus Kodak Release Repository http://nexus:8081/nexus/content/repositories/releases default nexus Kodak Snapshot Repository http://nexus:8081/nexus/content/repositories/snapshots default Is there something e

Re: Newbie writing a mojo

2011-08-29 Thread Ron Wheeler
Just a wild guess until someone smarter comes along. Do you have your settings looking for plugins in your SNAPSHOT repo? I think that the plugin repo is defined separately from the artifact repos. Only a guess. Ron On 29/08/2011 10:32 AM, Eric Kolotyluk wrote: OK, I'm trying to get my first m

Newbie writing a mojo

2011-08-29 Thread Eric Kolotyluk
OK, I'm trying to get my first mojo working. I created a project with the maven-plugin archetype and used the default mojo that is there, but I cannot seem to get it to run. The first time I tried to run it maven complained it could not find the plugin. So then I ran a maven install, but it s

Re: Newbie needs help with ant plugin

2011-04-02 Thread panam
Hi all, after deleting all files from $JRE\lib\endorsed except for jaxb-api.jar jaxb-impl.jar the error is gone... So, not a maven or ant issue but again some stupid JAXB problem Thanks anyway for your help! panam -- View this message in context: http://maven.40175.n5.nabble.com/Newbie

Re: Newbie needs help with ant plugin

2011-03-31 Thread Benson Margulies
gt;                                                test-html >> >>                                                        My Test API for ${ >> project.name} ${project.version} >>                                                        My Test API for ${ >> project.na

Re: Newbie needs help with ant plugin

2011-03-31 Thread Rafael Vanderlei
com.atlassian.maven.plugins >maven-clover2-plugin >2.5.1 > > > ${user.home}/.clover/${groupId}-${artifactId}/clover.snapshot > > > > > **/de/micro

Newbie needs help with ant plugin

2011-03-31 Thread panam
log -- View this message in context: http://maven.40175.n5.nabble.com/Newbie-needs-help-with-ant-plugin-tp4274393p4274393.html Sen

Re: Newbie Questions

2010-12-03 Thread Ron Wheeler
On 03/12/2010 5:13 AM, Joyce wrote: Hello, I just started to use Maven in a new project. My IDE is Eclipse for Java EE, Helios SR1 (3.6.1) I am installing a none-free Java API, which ships all the physical dependency Java jars as well. I try to use dependencies tag in the pom.xml to automatical

Re: Newbie Questions

2010-12-03 Thread Dirk Olmes
> EE, Helios SR1 (3.6.1) I am installing a none-free Java API, which ships all > the physical dependency Java jars as well. I try to use dependencies tag in > the pom.xml to automatically fill in the dependencies. I have problems > finding them: I'd consider this a special case. Since the API come

Newbie Questions

2010-12-03 Thread Joyce
way to specify the dependency? Thanks! -- View this message in context: http://maven.40175.n5.nabble.com/Newbie-Questions-tp3290643p3290643.html Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe

Re: newbie - having difficulties with jar files

2010-11-03 Thread Wendy Smoak
On Wed, Nov 3, 2010 at 12:52 AM, blue skyz wrote: > I have some sample pom.xml file, that I am using to learn Maven.  I am > posting what I see in Maven console and snippets from pom.xml. What did you type at the command line to get this output? > I understand that I need to authenticate to the

Re: newbie - having difficulties with jar files

2010-11-03 Thread Anders Hammar
omatically? I think I simply do not know what to include in pom.xml to > get all dependent jar > files. I need your help. > > > > > > > > > -- > View this message in context: > http://maven.40175.n5.nabble.com/newbie-having-difficulties-with-jar-files-tp32479

newbie - having difficulties with jar files

2010-11-03 Thread blue skyz
.nabble.com/newbie-having-difficulties-with-jar-files-tp3247936p3247936.html Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e

Re: Newbie question: how to find a) latest version and b) repository given an artifactID

2010-10-21 Thread Tamás Cservenák
You can try RSO and do a search: https://repository.sonatype.org/index.html#nexus-search;gav~~gwt-servlet~~~ It indexes "most popular" Maven repositories, but not all of them ;) Also, it seems that 2.1.0-RC1 is not in central yet (because it is an "RC"?). Hope helps, ~t~ On Thu, Oct 21, 2010 a

Re: Newbie question: how to find a) latest version and b) repository given an artifactID

2010-10-21 Thread Nick Stolwijk
The repository URl is nothing more than just a root URL of the specified directory structure. You can use the url I gave as repository URL. It was not my decision to create a repository for each seperate version, and also in Subversion. ;) With regards, Nick Stolwijk ~Java Developer~ IPROFS BV.

Re: Newbie question: how to find a) latest version and b) repository given an artifactID

2010-10-21 Thread Stephen Boesch
This shows how to pick up the artifact. What is the repository url that I would use? 2010/10/21 Nick Stolwijk > It is hard to get the repository, because everyone can start their own > (and in their own way). > > I googled on filetype:jar gwt-servlet:2.1.0-RC1 and found the repository > here:

Re: Newbie question: how to find a) latest version and b) repository given an artifactID

2010-10-21 Thread Nick Stolwijk
It is hard to get the repository, because everyone can start their own (and in their own way). I googled on filetype:jar gwt-servlet:2.1.0-RC1 and found the repository here: http://code.google.com/p/google-web-toolkit/source/browse/#svn/2.1.0/gwt/maven for the latest version. With regards, Nick

Newbie question: how to find a) latest version and b) repository given an artifactID

2010-10-21 Thread Stephen Boesch
If I am looking for an artificat and have its artifactID and want to find the versions available in public maven repos' (maven central, etc). What might be recommended way to do that? Do I have to already know in advance which repo's to try? E.g. maven central, mvnrepository.com etc. Or is th

Newbie qn: ant-maven build failure: UnknownElement / NullPointerException

2010-10-15 Thread Anand Ganesh
Hi, I'm a newbie to Ant & Maven (and much of the LAMP stack), and I'm trying to understand this build failure. Most likely it's a setup-install issue, except I don't know what exactly, and how to fix it. Any pointers on making progress much appreciated. Please include

Re: newbie question

2010-05-26 Thread Meeusen, Christopher W.
her=mayo@maven.apache.org [mailto: users-return-111621-meeusen.christopher=mayo@maven.apache.org] On Behalf Of Wayne Fay Sent: Wednesday, May 26, 2010 12:50 PM To: Maven Users List Subject: Re: newbie question Getting a bunch of these. Do I have to configure the compiler plugin and explicitly t

Re: newbie question

2010-05-26 Thread Ron Wheeler
ency for that. -Original Message- From: users-return-111621-meeusen.christopher=mayo@maven.apache.org[mailto: users-return-111621-meeusen.christopher=mayo@maven.apache.org] On Behalf Of Wayne Fay Sent: Wednesday, May 26, 2010 12:50 PM To: Maven Users List Subject: Re: newbie quest

Re: newbie question

2010-05-26 Thread Shan Syed
> > -Original Message- > From: > users-return-111621-meeusen.christopher=mayo@maven.apache.org[mailto: > users-return-111621-meeusen.christopher=mayo@maven.apache.org] On > Behalf Of Wayne Fay > Sent: Wednesday, May 26, 2010 12:50 PM > To: Maven Users List >

Re: newbie question

2010-05-26 Thread Wayne Fay
> I guess I miss understood the concept of dependencies.  I thought that it > was used only for .jars that were in a repository say commons-lang-2.4, > but if you have some  api from a vendor, say vendor.jar, that you didn't have > to configure a decency for that. Yes, this is a misunderstandi

RE: newbie question

2010-05-26 Thread Meeusen, Christopher W.
From: users-return-111621-meeusen.christopher=mayo@maven.apache.org [mailto:users-return-111621-meeusen.christopher=mayo@maven.apache.org] On Behalf Of Wayne Fay Sent: Wednesday, May 26, 2010 12:50 PM To: Maven Users List Subject: Re: newbie question > Getting a bunch of these.  Do I

Re: newbie question

2010-05-26 Thread fradj zayen
i totally agree with Wayne, you are missing some dependencies in your pom.xml x.x hope it helps 2010/5/26 Wayne Fay > > Getting a bunch of these. Do I have to configure the compiler > > plugin and explicitly tell it to use the .jars referenced in my bu

Re: newbie question

2010-05-26 Thread Wayne Fay
> Getting a bunch of these.  Do I have to configure the compiler > plugin and explicitly tell it to use the .jars referenced in my build path? No configuration of the compiler plugin should be necessary. You simply need to properly configure your list. Most likely you are simply missing one or m

Re: newbie question

2010-05-26 Thread Shan Syed
s-return-111617-meeusen.christopher=mayo@maven.apache.org] On > Behalf Of fradj zayen > Sent: Wednesday, May 26, 2010 12:37 PM > To: Maven Users List > Subject: Re: newbie question > > hi Chris, > I think you didnt't properly configured the compiler plugin. > below an ex

Re: newbie question

2010-05-26 Thread Wayne Fay
> I get similar errors for annotations and generics.  Anyone know what > might be going on?  Please help a maven newb! This is documented in the Maven FAQ, directly linked from the Maven homepage on the left side under "About Maven". http://maven.apache.org/general.html#Compiling-J2SE-5 Wayne -

RE: newbie question

2010-05-26 Thread Meeusen, Christopher W.
@maven.apache.org] On Behalf Of fradj zayen Sent: Wednesday, May 26, 2010 12:37 PM To: Maven Users List Subject: Re: newbie question hi Chris, I think you didnt't properly configured the compiler plugin. below an extract pom.xml file ... .. maven-compiler-plugin

Re: newbie question

2010-05-26 Thread fradj zayen
hi Chris, I think you didnt't properly configured the compiler plugin. below an extract pom.xml file ... .. maven-compiler-plugin 1.5 1.5 Regards 2010/5/26 Meeusen, Christopher W. > Hi, > > > > I'm brand new to maven, read through a f

newbie question

2010-05-26 Thread Meeusen, Christopher W.
Hi, I'm brand new to maven, read through a few books, and built a simple maven project to produce a .jar. I've installed the m2ecplipse pugin and have got it to work properly on a few simple projects. Now I'm having an issue when I try to build a more complex project, which requires at least

Re: Embedding Maven. I'm a newbie, please point me in the right direction....

2010-04-30 Thread Anders Hammar
I believe that Jason has said that once the beta is out, the internal APIs would be fixed. So, now should be a good time to start looking at this I think. Maybe Jason or Benjamin can clarify? Also, please note that Maven 2.x and Maven 3 is very different when it comes to the embedder. What we're t

Re: Embedding Maven. I'm a newbie, please point me in the right direction....

2010-04-29 Thread Wayne Fay
> Google only shows MavenEmbedder, a class the was deleted as of > maven-embedder-3.0-alpha-3. > I can't find any howtos/guides for this. > JavaDoc is... well... not so informative when it comes to use cases. If you search this list for "embedder" and espcially look at Jason van Zyl's comments, yo

Embedding Maven. I'm a newbie, please point me in the right direction....

2010-04-29 Thread Lars Borg
What I'd like to do is to run the Maven process within my own process. Simply, embedding Maven. But how do I achieve it? Google only shows MavenEmbedder, a class the was deleted as of maven-embedder-3.0-alpha-3. I can't find any howtos/guides for this. JavaDoc is... well... not so informative when

Re: Newbie Maven layout question

2010-03-03 Thread Ron Wheeler
user09772 wrote: How can a module be independent? meaning standalone within eclipse. because as it is now, the parent pom is responsible to glue everything together at build time (not the webapp module for example within eclipse). The Eclipse project Module 4 will have a POM that creates a j

Re: Newbie Maven layout question

2010-03-03 Thread user09772
>>> right. >>> I'm probably thinking more on how to use Maven modules to provide >>> separation >>> between each of the components. >>> >>> The main thing i would like to accomplish is have the ability to switch >>> out >>> any

Re: Newbie Maven layout question

2010-03-03 Thread user09772
gt;> >> The main thing i would like to accomplish is have the ability to switch >> out >> any of the projects (modules?) with another one and build the system >> using >> those new modules. >> > > -- View this message in context: http://old.nabble.com/

Re: Newbie Maven layout question

2010-03-02 Thread Patrick Turcotte
Part of your problem could/(should?) be resolved with parent poms. A good read is the sonatype maven book ( http://www.sonatype.com/products/maven/documentation/book-defguide) Patrick On 10-03-02 02:18 PM, user09772 wrote: > > > dahoffer wrote: > >> Without knowing details all I can give are

Re: Newbie Maven layout question

2010-03-02 Thread user09772
the system using those new modules. -- View this message in context: http://old.nabble.com/Newbie-Maven-layout-question-tp27759332p27759991.html Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-

Re: Newbie Maven layout question

2010-03-02 Thread David Hoffer
jects acts like the parent which will include a mix of other projects as > necessary.  I'm curious how one would layout a project like this?  Any > tutorials will be helpful on this type of setup (preferably using m2eclipse) > .  Thanks. > -- > View this message in context: >

Newbie Maven layout question

2010-03-02 Thread user09772
ayout a project like this? Any tutorials will be helpful on this type of setup (preferably using m2eclipse) . Thanks. -- View this message in context: http://old.nabble.com/Newbie-Maven-layout-question-tp27759332p27759332.html Sent from the Maven - Users mailing list a

Re: Newbie Question

2010-02-23 Thread Jeremy Banks
Thanks for the help Baptiste. That didn't work but -Darguments=-Pversion did. Thanks for pointing me in the right direction. Cheers Jeremy Banks Development Team Lead BIS² Level 2 45 Tory Street PO Box 19204 Wellington New Zealand +64 21 686 986 On 23 February 2010 19:31, Baptiste MATHUS

Re: Newbie Question

2010-02-22 Thread Baptiste MATHUS
Hi Jeremy, The maven-release-plugin forks to do the release. So I think you have to use an additional -Dparameters="-Pversion" (See http://maven.apache.org/plugins/maven-release-plugin/prepare-mojo.html#arguments ). Be aware I'm not totally sure it will work for profiles since I never needed it,

  1   2   3   4   5   6   7   8   >