Re: ws.zones.apache.org down

2011-04-08 Thread Ben Short
of Nexus and we are able to build again now. Ben On 7 April 2011 17:37, Benson Margulies bimargul...@gmail.com wrote: I'm part of ws.apache.org and I've never ever heard of this. What were you getting from there? On Thu, Apr 7, 2011 at 6:14 AM, Ben Short b...@benshort.co.uk wrote: Hi, Over

ws.zones.apache.org down

2011-04-07 Thread Ben Short
Hi, Over the last couple of days my builds have been failing because the repository hosted at ws.zones.apache.org is down. Does anyone know whats going on with this server? Regards Ben

Re: Multiple CPUs

2008-04-09 Thread ben short
I'd think that the build process is single threaded, with exception to the surefire plugin which can be forked. On Wed, Apr 9, 2008 at 12:21 PM, Benedikt Thelen [EMAIL PROTECTED] wrote: Hi there, i am sort of a maven newbee, At our workplce we have a quite big Coccon project in developenet and

Re: Multiple CPUs

2008-04-09 Thread ben short
pass on to the jvm?: -XX:+UseParallelGC -XX:+ParallelGCThreads=2 http://www.md.pp.ru/~eu/jdk6options.html Benedikt Thelen wrote: if possible is there a wat to split up the source to make diffrent jobs who could be run separately? On Wed, Apr 9, 2008 at 1:24 PM, ben short

M2 Classpath issue

2008-03-13 Thread ben short
i see that the projects dependencies are listed correctly. Can anyone help me out with this? I'm using maven 2.0.8. Regards Ben Short - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: M2 Classpath issue

2008-03-13 Thread ben short
Wayne, Thanks for pointing this out. Regards Ben Short On Thu, Mar 13, 2008 at 2:39 PM, Wayne Fay [EMAIL PROTECTED] wrote: This has come up several times on this list, as recently as a week ago, and people have discussed strategies for dealing with it etc. One thread in particular you

Re: java.class.path and the surefire-plugin

2008-03-13 Thread ben short
\OpenVPN\bin java.specification.name : Java Platform API Specification java.class.version : 50.0 sun.management.compiler : HotSpot Client Compiler os.version : 5.1 user.home : C:\Documents and Settings\Ben Short user.timezone : java.awt.printerjob : sun.awt.windows.WPrinterJob file.encoding : Cp1252

Re: java.class.path and the surefire-plugin

2008-03-13 Thread ben short
Using surefire 2.4.2 corrects my problem. Sorry. On Thu, Mar 13, 2008 at 3:49 PM, ben short [EMAIL PROTECTED] wrote: When I run the following test with maven 2.0.8 and surefire plugin 2.3 i dont see a surefire.test.class.path system property. @Test public void testIt

Re: Using Junit4 with Maven

2008-03-11 Thread ben short
I use JUnit 4.4 with Maven 2.0.8 and havent had any problems. Just change the JUnit version in your pom. Regards Ben On Tue, Mar 11, 2008 at 2:47 AM, Nitin Agrawal [EMAIL PROTECTED] wrote: Dear Sir/Madam, We would like to use JUnit4 in our projects, and we were already using Maven 2.0.9.

Re: Nexus repository manager

2008-02-18 Thread ben short
So how did the demo go on friday? Any news when we can get our hands on Nexus? On Feb 13, 2008 8:26 PM, Yoav Landman [EMAIL PROTECTED] wrote: You might also want to try out Artifactory. It has auto snapshots cleanup + a range of other advanced features. See:

Re: Archiva 1.0.1

2008-02-11 Thread ben short
Thanks Brett that worked. On Feb 11, 2008 10:21 PM, Brett Porter [EMAIL PROTECTED] wrote: You need to modify the default whitelist on the java.net repository - as it only downloads javax/** by default. On 12/02/2008, ben short [EMAIL PROTECTED] wrote: Hi, Im trying to setup Archiva

Archiva 1.0.1

2008-02-11 Thread ben short
Hi, Im trying to setup Archiva at work. I havent change any of the default configuration but when I run mvn clean on my project it fails to find the following plugin. groupIdorg.jvnet.jaxb1.maven2/groupId artifactIdmaven-jaxb1-plugin/artifactId version1.0-rc11/version And its available at the

Re: How to deploy WAR to Tomcat with MAVEN2?

2008-01-11 Thread ben short
Or this one.. http://mojo.codehaus.org/tomcat-maven-plugin/introduction.html 2008/1/11 Jeff MAURY [EMAIL PROTECTED]: You can use the cargo Maven plugin (http://cargo.codehaus.org). Jeff On Jan 11, 2008 9:49 AM, Thomas Chang [EMAIL PROTECTED] wrote: Hi all, I use maven2. I wonder

Re: Existance of ZIP Archetype? | How to distribute DB code to different mvn modules?

2008-01-04 Thread ben short
Hi, Take a look at the maven assembly plugin [1] [1] http://maven.apache.org/plugins/maven-assembly-plugin/ On Jan 4, 2008 12:04 PM, Matthew Tordoff [EMAIL PROTECTED] wrote: But how do I create the initial project structure? mvn archetype:create -DgroupId= -DartifactId=

Re: obfuscation

2007-11-29 Thread ben short
Have a look at the antrun plugin [1] [1] http://maven.apache.org/plugins/maven-antrun-plugin/ On Nov 29, 2007 10:29 AM, Richard Chamberlain [EMAIL PROTECTED] wrote: Hi all, I've got a requirement to obfuscate the java code we produce. Currently we use yguard with ant, there doesn't seem

Re: [ANNOUNCE] Archiva 1.0 Released

2007-11-27 Thread ben short
Hi, None of the mirrors have the war for download http://www.apache.org/dyn/closer.cgi/maven/binaries/apache-archiva-1.0.war Ben On Nov 27, 2007 9:49 AM, Maria Odea Ching [EMAIL PROTECTED] wrote: Hi Everyone, The Maven Archiva team is pleased to announce the release of Archiva 1.0final.

Re: FW: Favorate ways to browse the Repositories

2007-09-22 Thread ben short
I use this URL http://repo1.maven.org/maven2/ to look for artifacts. I think that its the master repository but am not entirely sure. On 9/22/07, siegfried [EMAIL PROTECTED] wrote: Apparently the site was down when I tried to post to the list the first time so I'm trying again. I apologize if

Re: How to get Maven to include persistence.xml into a web app??

2007-08-28 Thread ben short
persistence.xml needs to be on the class path doesn't it? Create a directory src/main/java/resources and put it in there. When maven packages up your war it will put all files in the resources directory into your war file under the WEB-INF/classes directory. Hope this helps. Ben On 8/28/07,

Re: How to get Maven to include persistence.xml into a web app??

2007-08-28 Thread ben short
I think you can just create /src/main/webapp/META-INF and put it in there. On 8/28/07, Julien Martin [EMAIL PROTECTED] wrote: Thanks Ben, Is there not a way to put it (persistence.xml) into meta-inf instead? Julien. 2007/8/28, ben short [EMAIL PROTECTED]: persistence.xml needs

Re: Buildnumber plugin and svn

2007-08-16 Thread ben short
Right so it dosent support that flag. Time for an upgrade :) On 8/16/07, DCVer [EMAIL PROTECTED] wrote: I've made a mistake, sorry. On the Continuum server there is version 1.1.4 of the svn, not 1.4.4.. ben short-2 wrote: I would ofr started by typing svn --version on you continuum

Re: Buildnumber plugin and svn

2007-08-15 Thread ben short
I would ofr started by typing svn --version on you continuum server, to get the version. If your using a redhat box then chances are its svn version 1 or something. But it seem that somewhere between svn version 1.2 [1] and current [2] the --non-interactive flag of the info command was

Re: Retrieving subversion revision number

2007-08-06 Thread ben short
http://commons.ucalgary.ca/projects/maven-buildnumber-plugin/howto.html On 8/6/07, DCVer [EMAIL PROTECTED] wrote: Hi all, I would like to get the revision number of my project on svn repository using maven2 (or some other tool) and put this number e.g. in some property file. How could this

Re: Does maven work with Cygwin? Please help!

2007-08-02 Thread ben short
http://www.nabble.com/Maven---Users-f178.html On 8/2/07, Alex Worden [EMAIL PROTECTED] wrote: Hi, I've just installed the latest Cygwin and maven 2.0.6 When I open a cygwin window and attempt to execute maven --version I get the following: bash-3.2$ mvn --version bash:

Re: tomcat-maven-plugin

2007-08-01 Thread ben short
Hi, I don't think this will work to be honest You might be better off running an instance of tomcat on your machine and using the mvn tomcat:deploy goal to deploy the wars to it. But you'll have to do them one by one. There is a tomcat:exploded goal also that you could use. I think this one

Re: Running a single JUnit test

2007-07-30 Thread ben short
Your missing test from the end of your class name, see [1] mvn -Dtest=com.xxx..InternalDAOtest test [1] http://maven.apache.org/plugins/maven-surefire-plugin/examples/single-test.html On 7/30/07, Scott Purcell [EMAIL PROTECTED] wrote: Hello, Maven 2.0.7 I have a project that

Re: Running a single JUnit test

2007-07-30 Thread ben short
*mvn -Dtest=com.xxx..InternalDAOTest test On 7/30/07, ben short [EMAIL PROTECTED] wrote: Your missing test from the end of your class name, see [1] mvn -Dtest=com.xxx..InternalDAOtest test [1] http://maven.apache.org/plugins/maven-surefire-plugin/examples/single-test.html On 7

Setting project.version in web.xml

2007-07-02 Thread ben short
Hi, It is possible to get maven to insert the project name and version from my pom to my web.xml display-name element? Regards Ben Short - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [Tomcat Embedded Plugin] Problem in development

2007-05-30 Thread ben short
Hi, Have you seen this plugin? http://mojo.codehaus.org/tomcat-maven-plugin/introduction.html On 5/30/07, CasMeiron [EMAIL PROTECTED] wrote: All tomcat dependencies declared in my plugin pom: !-- Tomcat Dependencies -- dependency groupIdtomcat/groupId

Re: [m2] Assembly Plugin

2007-05-11 Thread ben short
Thanks for the replies, I'll give it ago first thing Monday. On 5/11/07, Matt Brozowski [EMAIL PROTECTED] wrote: On May 11, 2007, at 12:54 PM, John Casey wrote: Sorry it took me so long to respond, the email got buried... :( 1. I added a finalName configuration, which should result in the

[m2] Final Name

2007-05-09 Thread ben short
Hi, How do i get the final name propery like i would the project version, eg ${project.version}. Regards Ben Short - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Compiler settings in Maven

2007-05-02 Thread ben short
Add this to the bottom of your pom. build plugins plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-compiler-plugin/artifactId configuration source1.5/source target1.5/target

Re: Cannot create the build number ?!

2007-04-27 Thread ben short
The plugins home page [1] explains all of this and how you can stop it from checking for modified files. [1] http://commons.ucalgary.ca/projects/maven-buildnumber-plugin/howto.html On 4/27/07, Wayne Fay [EMAIL PROTECTED] wrote: Not only that, it tells you which files you need to do something

[m2] Assembly Plugin

2007-04-26 Thread ben short
Hi, I'm trying to use the assembly plugin to create a directory in my target Dir called debug. In this I'm going to put everything i need in order to run the project in debug mode via my ide. Currently I have this assembly descriptor assembly iddebug/id formats formatdir/format /formats

Re: [m2] Assembly Plugin

2007-04-26 Thread ben short
dependencySet outputDirectorylibs/outputDirectory /dependencySet /dependencySets HTH, john On 4/26/07, ben short [EMAIL PROTECTED] wrote: Hi, I'm trying to use the assembly plugin to create a directory in my target Dir called debug. In this I'm going to put everything i need in order

Re: Coping w/ 3rd party libs ... jar plus dependencies.

2007-04-26 Thread ben short
downloads it it will pull in all the other deps as specified in the pom. I dont know if this can be done with your local repository via the install:install-file goal. Regards Ben Short [1] http://proximity.abstracthorizon.org/ [2] http://maven.apache.org/guides/mini/guide-3rd-party-jars

Re: Coping w/ 3rd party libs ... jar plus dependencies.

2007-04-26 Thread ben short
There is a pomFile parm for the install:install-file goal[1] so you can install the pom in your local repo. [1] http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html On 4/26/07, ben short [EMAIL PROTECTED] wrote: Hi Danny, Im not sure this is exactly what you want

[M2 SCM] Excluding files

2007-04-24 Thread ben short
Hi, How do i tell the scm plugin to exclude files in my pom. I want to tell it to ignore my idea project files, as i don't want these checked in to my svn repository. Ben - To unsubscribe, e-mail: [EMAIL PROTECTED] For

[M2 SCM] Excluding files

2007-04-24 Thread ben short
Hi, How do i tell the scm plugin to exclude files in my pom. I want to tell it to ignore my idea project files, as i don't want these checked in to my svn repository. Ben - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: [M2 SCM] Excluding files

2007-04-24 Thread ben short
are independant of of Maven-SCM but dependent of your scm. So with subversion you use svn:ignore subversion property, with CVS, you put files in .cvsignore file... Maybe we'll add an option in a future release of Maven-SCM, but we don't now. Emmanuel ben short a écrit : Hi, How do i tell the scm plugin

[m2] Build number plugin

2006-12-05 Thread ben short
\trunk\target\build_no_test-1.0.9.jar [INFO] [install:install] [INFO] Installing D:\Source Code - Maven\build_no_test\trunk\target\build_no_test-1.0.9.jar to C:\Documents and Settings\Ben Short\.m2\repository\com\nexusalpha\build_no_test\build_no_test\1.0\build_no_test-1.0.jar [INFO

[m2] Setting Archiva as mirror of central

2006-11-25 Thread ben short
Hi, I have Maestro project server setup but im not sure what I need to set in my settings.xml to get maven to use the Archiva part of the project server as my mirror of central. mirror idmyProximity/id mirrorOfcentral/mirrorOf nameProximity mirrored central repos./name

Re: [m2] Setting Archiva as mirror of central

2006-11-25 Thread ben short
://192.168.100.32:8080/archiva/proxy/url /mirror Ben On 11/26/06, Wendy Smoak [EMAIL PROTECTED] wrote: On 11/25/06, ben short [EMAIL PROTECTED] wrote: I have Maestro project server setup but im not sure what I need to set in my settings.xml to get maven to use the Archiva part of the project

[m2] Maven 2 Intergration for Intellij IDEA

2006-11-17 Thread ben short
Hi, I was looking for a plugin today and stumbled across this plugin. http://plugins.intellij.net/plugin/?id=1166 I thought I would share it in case anyone was interested. Regards Ben - To unsubscribe, e-mail: [EMAIL

Re: scp a war to remote location

2006-10-26 Thread ben short
Hi Chris, Take a look at the tomcat plugin http://mojo.codehaus.org/tomcat-maven-plugin/ The documentation is pretty good. Ben On 10/26/06, Christofer Jennings [EMAIL PROTECTED] wrote: Thanks Wendy!, Do you deploy to a remote Tomcat? Could you post the part of your pom that does it?

Re: Spring Taglib Dependency

2006-10-19 Thread ben short
Hi Stephen, The spring.tld is in the spring.jar so you dont need to do any more than grab the spring as a dependancy, like this.. dependency groupIdorg.springframework/groupId artifactIdspring/artifactId version1.2.8/version scopecompile/scope

http://maven.sateh.com/repository/ Down?

2006-10-18 Thread ben short
Hi, Anyone know when http://maven.sateh.com/repository/ will be back up? Anyone know of a good alternative repo in Europe? Ben - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Where is the superpom?

2006-10-09 Thread ben short
http://maven.apache.org/guides/introduction/introduction-to-the-pom.html On 10/9/06, Christofer Jennings [EMAIL PROTECTED] wrote: Sorry if this is a dumb question, but I've looked and looked and can't seem to find the real superpom. ??? ,chris

Triggering build on each commit.

2006-10-03 Thread ben short
Hi, It it possible to setup Continuum to build a project on every commit to subversion. The XML-RPC API document shows the buildProject method that can be used by the subversion hook scripts but it seems to just trigger a build of what is at the svn head. I would like to set it up so that each

Re: Deploy as WAR

2006-10-03 Thread ben short
Any ideas when this will be released? On 9/24/06, Emmanuel Venisse [EMAIL PROTECTED] wrote: With 1.0.3, it isn't possible. 1.1 will be a war. Emmanuel ben short a écrit : Hi, Is it possible to get continuum as a WAr rather than a standalone application? Ben

Re: Maven2 - Setting Internal Maven Repository as Mirror of ibiblio

2006-09-29 Thread ben short
Search for '[M2] Mirror' at nabble http://www.nabble.com/Maven---Users-f178.html Ben On 9/29/06, Vikas Gupta(SCM) [EMAIL PROTECTED] wrote: Hi All, I would like to setup an internal Maven Repository which will mirror the global Maven Repository at ibiblio. Now instead of downloading

Re: Setting up mirror of ibiblio?

2006-09-29 Thread ben short
Search for '[M2] Mirror' at nabble http://www.nabble.com/Maven---Users-f178.html Ben On 9/29/06, Kapil Gupta [EMAIL PROTECTED] wrote: I would like to setup a common internal Maven Repository for different projects running in my company which will mirror the global Maven Repository at ibiblio.

[m2] install4j plugin

2006-09-27 Thread ben short
Hi, Anyone know if there is such a beast as an install4j plugin for maven? Regards Ben - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Deploy as WAR

2006-09-22 Thread ben short
Hi, Is it possible to get continuum as a WAr rather than a standalone application? Ben

Re: exporting Database

2006-09-18 Thread ben short
Mybe this would help? http://mojo.codehaus.org/sql-maven-plugin/overview.html On 9/18/06, Marco Mistroni [EMAIL PROTECTED] wrote: mmm, my 2 cents you can do this with dbunit. i heard (repeat, heard) that there was somewhere a maven plugin for dbunit... if that's true, maybe you can

Re: include jar(s) when packaging

2006-09-07 Thread ben short
Dependancies only get added to wars. You need to use the maven assembly plugin http://maven.apache.org/plugins/maven-assembly-plugin/ On 9/7/06, Richard Fagot [EMAIL PROTECTED] wrote: Hi all, I tried to package my project including a jar that is a dependency for the project. To do this I

Re: javax.resource connector, unable to download dependency

2006-09-01 Thread ben short
http://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html On 9/1/06, Marco Mistroni [EMAIL PROTECTED] wrote: hi all, i m runnig maven2 for building my app, which uses spring. i tried to set as dependency spring dependency groupIdorg.springframework/groupId

[m2] jspc-maven-plugin - Problems

2006-09-01 Thread ben short
repository central (http://repo1.maven.org/maven2) [INFO] [jspc:compile {execution: jspc}] [INFO] Built File: \index.jsp [INFO] Built File: \WEB-INF\jsp\admin.jsp [INFO] Built File: \WEB-INF\jsp\category.jsp [INFO] Compiling new java files... [ERROR] C:\Documents and Settings\Ben Short\Desktop\catalog

Re: [m2] jspc-maven-plugin - Problems

2006-09-01 Thread ben short
Ok, I set the version to 1.4.2 and it works ok. Heres the output for mvn -X compile... + Error stacktraces are turned on. Maven version: 2.0.4 [DEBUG] Building Maven user-level plugin registry from: 'C:\Documents and Settings\Ben Short\.m2\plugin-registry.xml' [DEBUG] Building Maven global

Re: [m2] jspc-maven-plugin - Problems

2006-09-01 Thread ben short
I'll log it right away. Thank for your help. Ben On 9/1/06, Jacek Laskowski [EMAIL PROTECTED] wrote: On 9/1/06, ben short [EMAIL PROTECTED] wrote: Ok, I set the version to 1.4.2 and it works ok. Heres the output for mvn -X compile... I wonder whether it pertains to the window long path

Re: [m2] jspc-maven-plugin - Problems

2006-09-01 Thread ben short
/ Méditerranée Technical Leader Tel: + 33 4 93 72 43 74 / www.capgemini.com Fax: + 33 4 93 21 02 95 Porte de l'Arénas - Entrée B / 455 Promenade des Anglais / 06200 Nice Join the Collaborative Business Experience ben short a écrit

Re: newbie question

2006-08-29 Thread ben short
Here it is... https://maven2-repository.dev.java.net/ On 8/29/06, patrick [EMAIL PROTECTED] wrote: i think i read somewhere that there is a repository at sun providing these, but 1) i cant remember the URL 2) i do not know how to put this in you settings.xml (how to spezify which is your

Re: newbie question

2006-08-29 Thread ben short
Scratch that im wrong. On 8/29/06, ben short [EMAIL PROTECTED] wrote: Here it is... https://maven2-repository.dev.java.net/ On 8/29/06, patrick [EMAIL PROTECTED] wrote: i think i read somewhere that there is a repository at sun providing these, but 1) i cant remember the URL 2) i do

Re: newbie question

2006-08-29 Thread ben short
https://maven-repository.dev.java.net/nonav/ On 8/29/06, ben short [EMAIL PROTECTED] wrote: Scratch that im wrong. On 8/29/06, ben short [EMAIL PROTECTED] wrote: Here it is... https://maven2-repository.dev.java.net/ On 8/29/06, patrick [EMAIL PROTECTED] wrote: i think i read

Re: Help building and deploying a war with JSTL in it

2006-08-15 Thread ben short
Hi Ken, I have the following dependency im my pom... dependency groupIdtaglibs/groupId artifactIdc/artifactId version1.1.2/version scopecompile/scope typetld/type /dependency And i add the following to my jsp pages... %@ taglib

Re: Codehaus

2006-08-12 Thread ben short
http://mojo.codehaus.org/ On 8/11/06, Douglas Ferguson [EMAIL PROTECTED] wrote: Where can I find documentation on the codehaus plugins? I stumbled upon the codehaus dependency plugin when the apache one didn't seem to work. __ Douglas W. Ferguson

Re: The mvn script errors out when JAVA_HOME is not defined

2006-08-07 Thread ben short
Thats not the standard location for linux or osx. On 8/7/06, Weiqi Gao [EMAIL PROTECTED] wrote: On 8/7/06, Vincent Siveton [EMAIL PROTECTED] wrote: JAVA_HOME is a requirement http://maven.apache.org/download.html#installation That piece of documentation seems to be wrong. By reading the

[m2] spring.tld

2006-08-03 Thread ben short
Hi, Anyone know where the spring.tld taglib is on the maven repository? Ben - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [m2] spring.tld

2006-08-03 Thread ben short
Thanks Denis, Its also in the META-INF directory of the spring.jar. Ben On 8/3/06, Denis Cabasson [EMAIL PROTECTED] wrote: http://www.ibiblio.org/maven2/org/springframework/spring-webmvc/1.2.8/spring-webmvc-1.2.8.jar\META-INF\spring.tld Denis ben short-2 wrote: Hi, Anyone know where

Re: [m2] Assemby plugin Question

2006-07-20 Thread ben short
on the war1 project. So I guess that should be your solution (as far as I understand). And no need for zips there... Denis. ben short-2 wrote: So what im thinking is. If i create a webapp project that pulls the dependent jars into it and instead of the webapp project creating a war file can

[m2] Assemby plugin Question

2006-07-19 Thread ben short
Hi, We have several projects that produces a ear files. The ear files contains a war and several jar files. The war file is common to all the projects and uses a import statement in the spring config file to load another spring config file bundled with the ear file. Management has asked us if

Re: Deployment to SCP server (Maven2)

2006-07-17 Thread ben short
Are you sure thats the correct url scp:myserver.microtec.fr/deploy? If you use putty to login to the server and you type /depoly at the prompt do you go to a directory? On my server the url is scp:X.X.X.X/var/mvn/deployed Ben On 7/17/06, Raphael Neve [EMAIL PROTECTED] wrote: Here's some more

Re: Handling Maven and SCM

2006-07-17 Thread ben short
Before for import yor project you should do a mcn clean to remove the target directory. You dont want this in subversion. Also the convention with subversion is that you have the follwoing three directories in the root of your repo. tags branches trunk You need to put your project into the

Re: Deployment to SCP server (Maven2)

2006-07-13 Thread ben short
Hi, Are you sure your url is correct? Here is what i use in my pom distributionManagement repository idinternal-released/id urlscp://192.168.6.194/var/mvn/internal-released/url /repository snapshotRepository idinternal-snapshot/id

Re: include jar dependencies in jar package

2006-07-13 Thread ben short
That works if you are building a war. But i think you need to use the assembly plugin to do what you are asking. Ben On 7/13/06, Wojciech Biela [EMAIL PROTECTED] wrote: A google search for this message's subject didn't reveal any useful tips on what I'm looking for. I want to have the mvn

Re: mvn deploy

2006-07-12 Thread ben short
, Matthias On 7/11/06, ben short [EMAIL PROTECTED] wrote: Matthias, You dont need to use the sshExecuteable element. I use the that setup on windows xp and it works. Maven uses wagon [1] to do the ssh. Although you will need to manually download it ad put it into the lib dir under your maven home

Re: mvn deploy

2006-07-11 Thread ben short
command, operable program or batch file. [INFO] [INFO] For more information, run Maven with the -e switch /snip -Matt On 7/10/06, ben short [EMAIL PROTECTED] wrote: I use the follwoing in my pom.xml distributionManagement

Re: Parse error reading POM. Reason: parser must be on START_TAG or TEXT

2006-07-10 Thread ben short
mvn validate On 7/9/06, Eric Redmond [EMAIL PROTECTED] wrote: There is an XML validator incubating in Mojo: http://svn.codehaus.org/mojo/trunk/mojo/mojo-sandbox/xml-maven-plugin/ I have no idea how active it is, however. Thanks; Eric On 7/9/06, Dennis Lundberg [EMAIL PROTECTED] wrote:

Re: Super POM

2006-07-10 Thread ben short
Viz Heres one I have setup... ?xml version=1.0 encoding=UTF-8? project xmlns=http://maven.apache.org/POM/4.0.0; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd;

Re: m2-proxy released

2006-07-08 Thread ben short
How does it compare to http://proximity.abstracthorizon.org/ On 7/8/06, Alex Shneyderman [EMAIL PROTECTED] wrote: How does it compare to maven-proxy from codehaus? Do you know by any chance? Alex. On 7/8/06, Lukas Krecan [EMAIL PROTECTED] wrote: I am pleased to announce first release of

Re: Hibernate 3 failure

2006-07-07 Thread ben short
Have you seen this page? http://mojo.codehaus.org/hibernate3-maven-plugin/howto.html Ben On 7/7/06, James Richards [EMAIL PROTECTED] wrote: Hello, I've tried searching for this problem on Google but so far have not had any luck locating this exact error so I wanted to see if anyone on the

Re: Disecting a webapp?

2006-07-06 Thread ben short
Create a project for each of the core module and the children. then the webapp can pull them in as dependancies. On 7/6/06, Alex Shneyderman [EMAIL PROTECTED] wrote: How does one disect a web app into many modules but deploy it as one web app? This is what I mean: We have a web application

Re: Disecting a webapp?

2006-07-06 Thread ben short
Also have a look at the better builds with maven book, there is an example in there. On 7/6/06, ben short [EMAIL PROTECTED] wrote: Create a project for each of the core module and the children. then the webapp can pull them in as dependancies. On 7/6/06, Alex Shneyderman [EMAIL PROTECTED

Re: [m2] Frustration getting Maven 2 and Hibernate working together

2006-07-05 Thread ben short
Johann , Im trying to use the hibernate3 plugin but get the following error. The plugin 'org.codehaus.mojo.hibernate3:hibernate3-maven' does not exist or no valid version could be found Below is my pom file project xmlns=http://maven.apache.org/POM/4.0.0;

Re: [m2] Frustration getting Maven 2 and Hibernate working together

2006-07-05 Thread ben short
Sorry the error is actually... The plugin 'org.codehaus.mojo:hibernate3-maven-plugin' does not exist or no valid version could be found On 7/5/06, ben short [EMAIL PROTECTED] wrote: Johann , Im trying to use the hibernate3 plugin but get the following error. The plugin

Re: [m2] Frustration getting Maven 2 and Hibernate working together

2006-07-05 Thread ben short
/pluginRepository /pluginRepositories And then run maven with the -U parameter, something like mvn -U hibernate3:schema-export Regards Johann Reyes -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of ben short Sent: Wednesday, July 05, 2006 12:15 PM To: Maven Users

Re: [m2] Frustration getting Maven 2 and Hibernate working together

2006-07-05 Thread ben short
/plugin /plugins /build On 7/5/06, ben short [EMAIL PROTECTED] wrote: Dont i need the Repository and pluginRepository elements to tell maven to get the plugin from the codehaus snapshot repo? Ben On 7/5/06, Johann Reyes [EMAIL PROTECTED] wrote: Hello Ben I would remove

Re: How to implement an organisational super pom ?

2006-06-23 Thread ben short
Here is a god example of a organisational super pom http://maven.sateh.com/repository/org/apache/apache/2/ I have created one for my compnay that contains the following... distributionManagement repository idinternal-released/id

Re: Deploy and SCP

2006-06-22 Thread ben short
Christian, As far as im aware the deploy goal deploys a snapshot, so you need a snapshotRepository defined in your pom.. Eg: snapshotRepository idscp-repository/id urlscp://192.168.100.20/var/mvn/proximity/inhouse/url /snapshotRepository Ben On

Re: Deploy and SCP

2006-06-22 Thread ben short
Christian, Actually scrap that im talking rubbish, back to the documents for me. Ben On 6/22/06, ben short [EMAIL PROTECTED] wrote: Christian, As far as im aware the deploy goal deploys a snapshot, so you need a snapshotRepository defined in your pom.. Eg: snapshotRepository

Re: Maven best practices - company-wide local repository?

2006-06-21 Thread ben short
https://is-micro.myip.hu/projects/ismicro-commons/proximity/ http://maven-proxy.codehaus.org/ Ben On 6/21/06, Nidhi Goyal, Noida [EMAIL PROTECTED] wrote: Thanks for replying but please tell me the link from where to download Maven Proxy or proximity. I've tried to create a project using the

Re: Maven best practices - company-wide local repository?

2006-06-21 Thread ben short
http://maven.apache.org/guides/mini/guide-3rd-party-jars-remote.html On 6/21/06, Aleksei Valikov [EMAIL PROTECTED] wrote: Hi. BTW be careful about the words you use : internal repository is not the same as a local repository. A local repository should be only local to a developer desktop

Re: Maven best practices - company-wide local repository?

2006-06-21 Thread ben short
, Nidhi -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of ben short Sent: Wednesday, June 21, 2006 5:10 PM To: Maven Users List Subject: Re: Maven best practices - company-wide local repository? https://is-micro.myip.hu/projects/ismicro-commons/proximity/ http

Re: Maven best practices - company-wide local repository?

2006-06-21 Thread ben short
/getting-started/index.html Thanks, Nidhi -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of ben short Sent: Wednesday, June 21, 2006 5:10 PM To: Maven Users List Subject: Re: Maven best practices - company-wide local repository? https

Re: Maven best practices - company-wide local repository?

2006-06-21 Thread ben short
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of ben short Sent: Wednesday, June 21, 2006 5:10 PM To: Maven Users List Subject: Re: Maven best practices - company-wide local repository? https://is-micro.myip.hu/projects/ismicro-commons/proximity/ http://maven

Re: Maven best practices - company-wide local repository?

2006-06-21 Thread ben short
] [mailto:[EMAIL PROTECTED] On Behalf Of ben short Sent: Wednesday, June 21, 2006 6:06 PM To: Maven Users List Subject: Re: Maven best practices - company-wide local repository? Do you have a proxy server to access the internet? Ben On 6/21/06, Nidhi Goyal, Noida [EMAIL PROTECTED] wrote: hey thanks

Re: Maven best practices - company-wide local repository?

2006-06-21 Thread ben short
] [mailto:[EMAIL PROTECTED] On Behalf Of ben short Sent: Wednesday, June 21, 2006 6:11 PM To: Maven Users List Subject: Re: Maven best practices - company-wide local repository? Nidhi, You will need to configure that in your settings.xml http://maven.apache.org/guides/mini/guide-proxies.html Ben

Re: Maven best practices - company-wide local repository?

2006-06-21 Thread ben short
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of ben short Sent: Wednesday, June 21, 2006 6:26 PM To: Maven Users List Subject: Re: Maven best practices - company-wide local repository? You have to run mvn compile in the directory that just got created [INFO

Re: external jar dependency

2006-06-20 Thread ben short
Should be as follows mvn install:install-file -DgroupId=JTKSortSuite -DartifactId=JTKSortSuite -Dversion=4.0 -Dfile=C:\branches\testApp\lib\JTKSortSuite_400.jar -Dpackaging=jar -DgeneratePom=true Ben On 6/20/06, Vinay Kumar [EMAIL PROTECTED] wrote: Hi Jo, when I am trying to install our jar

Re: Probs with maven-proxy

2006-06-19 Thread ben short
Have a look at this link https://is-micro.myip.hu/projects/ismicro-commons/proximity/ Its an alternative for maven-proxy Ben On 6/19/06, EJ Ciramella [EMAIL PROTECTED] wrote: Additionally - running maven with out a repository configured, this works fine. It's something to do with the maven

Re: Probs with maven-proxy

2006-06-19 Thread ben short
:[EMAIL PROTECTED] On Behalf Of ben short Sent: Monday, June 19, 2006 2:25 PM To: Maven Users List Subject: Re: Probs with maven-proxy Have a look at this link https://is-micro.myip.hu/projects/ismicro-commons/proximity/ Its an alternative for maven-proxy Ben On 6/19/06, EJ Ciramella [EMAIL

  1   2   >