Re: how to get maven-scm-provider-svn-1.0-alpha-2 in place. [was] Re: No such provider: 'svn+ssh'

2005-08-10 Thread dan tran
Berndq, Like I mentioned yesterday in the other thread, you just need to fetch maven-scm-plugin 1.5.1 snapshot in svn and build it your self. All dependency settings are in place. -D On 8/10/05, Brett Porter [EMAIL PROTECTED] wrote: The repository URL will not, but the jars there will if you

Re: maven:plugins-build gives compiler errors [was]Re: how to get maven-scm-provider-svn-1.0-alpha-2 in place

2005-08-10 Thread dan tran
I am able build with jdk 1.4.2 You should change directory to scm directory and run maven plugin:install -D On 8/10/05, berndq [EMAIL PROTECTED] wrote: dan tran wrote: Like I mentioned yesterday in the other thread, you just need to fetch maven-scm-plugin 1.5.1 snapshot in svn

Re: maven2: creatin jar files

2005-08-10 Thread dan tran
Try to walk thru http://maven.apache.org/maven2/getting-started.html to create a jar file .. then you can taylor your own by adding your own source. There should be option to allow you to include/eclude file to compille -D On 8/10/05, Rizwan Merchant [EMAIL PROTECTED] wrote: Hi, How I

Re: [Fwd: [M1] How to output java:compile log to file]

2005-08-10 Thread dan tran
quick suggestion, put maven around a () block ( maven x set error code or call exit(erorr code) here ) 21 | tee $logfile check for error On 8/10/05, Keisuke Matsubara [EMAIL PROTECTED] wrote: Thank you Edwin. Now I use redirection with tee command like you. Because I want to

Re: Multiproject site navigation question

2005-08-10 Thread dan tran
how about set artifactId=flow and have maven.final.name=struts-flow-${pom.}-${pom.currentVersion} sounds like a hack to me;-) but may work, checkout maven-jar-plugin properties -D On 8/10/05, Wendy Smoak [EMAIL PROTECTED] wrote: From: Jay H. Hartley [EMAIL PROTECTED] You mention that

Re: [Fwd: [M1] How to output java:compile log to file]

2005-08-11 Thread dan tran
${returncode} } callmaven 21 | tee -a ${LOG} echo callmaven code check point 1: ${returncode} exit ${returncode} - Thanks. dan tran wrote: quick suggestion, put maven around a () block ( maven x set error code or call exit(erorr code) here ) 21

Re: Maven2: Managing entire build process

2005-08-12 Thread dan tran
You can write a script to : 1. backup build dir 2. call maven to checkout 3. call a script to setup env 4,5,6,7 call maven to build to do those step, you will need to write your own plugin to plugin into maven build lifecyle. you can use the standard life cycle or

Re: [m1.1] ant-optional classes not found

2005-08-12 Thread dan tran
in 1.1 you need to load the optional jars yourself http://maven.apache.org/reference/backwards-compatibility.html -D On 8/12/05, Lukas Theussl [EMAIL PROTECTED] wrote: I just noticed that in 1.1-beta-1 running 'maven -X' with any goal produces a bunch of debug warnings: [DEBUG] Adding

Dependency Management - Need advice

2005-08-13 Thread dan tran
Hello all, I am going to have a m2 build system that contains lots of sub projects. my daily build uses the same version of all sub projects. and the version is incremented for each daily build. In M1, I use one global version property in project.properties of the master project root. For each

Re: [m2] status of SCM plugin

2005-08-16 Thread dan tran
Jason, What kind of problem do you see on starteam test? can you send me the build log and sure-file logs? What platform are you on? BTW, you can disable the starteam provider build by by remote starteam's module in maven-scm-providers' pom.xml -Dan On 8/15/05, Jason Grant [EMAIL PROTECTED]

Re: Missing /maven2/javax/transaction/jta/1.0.1B/jta-1.0.1B.jar

2005-08-16 Thread dan tran
you need to download jta 1.0.1b from sun and place it under your local repo. .m2/repository/javax/transaction/jta/1.0.1B/jta-1.0.1B.jar -D On 8/16/05, flyisland [EMAIL PROTECTED] wrote: Hi All, I'm using Maven 2.0-alpha-3 now, I try to add hibernate 3.0.5 into my maven2 pom file today,

Re: Problem acessing subversion svn from MAVEN

2005-08-16 Thread dan tran
your url should be scm:svn:svn://localhost/repo_net_01/p2oi You can also try to build the latest maven-scm-plugin-1.5.1-SNAPSHOT in svn It may give you a beter error message description. If you see the the same problem using the bad URL. please file a JIRA -D On 8/16/05, Marcelo Alcantara

Re: Problem acessing subversion svn from MAVEN

2005-08-17 Thread dan tran
svn co http://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk On 8/17/05, Marcelo Alcantara [EMAIL PROTECTED] wrote: Or if it is easier please send me to my email: [EMAIL PROTECTED] Thanks in advance!!! On 8/17/05, Marcelo Alcantara [EMAIL PROTECTED] wrote: Somebody know how I can

Re: [Maven_1.1-beta-1]

2005-08-18 Thread dan tran
what you want is to override maven.repo.local to somewhere else. Where to put this property? http://maven.apache.org/reference/properties.html -D On 8/18/05, Andy Glick [EMAIL PROTECTED] wrote: At 08:57 AM 8/18/2005, you wrote: Hello! Is it possible to change the local repository of Maven?

Re: Maven and Big Projects. Help and ideas.

2005-08-18 Thread dan tran
of session ejb. You can setup some continuous integration like continuum , cruisecontrol luntbuild, etc to build, deploy the ear and run integration from there. Thanks in advance! Marcelo On 8/17/05, dan tran [EMAIL PROTECTED] wrote: Marcelo, Maven promotes cohesive build, one

Re: Maven unattended build process ---?

2005-08-18 Thread dan tran
Sanjay, beside from CI as Thomas suggested. If your have a night build fail. You should increment the build number and tag it again for the next build. However even with simple cron job to do scm:update and build every hour would reduce your chance of failed nightly build big time. It works

Re: Maven unattended build process ---?

2005-08-18 Thread dan tran
, dan tran [EMAIL PROTECTED] wrote: Sanjay, beside from CI as Thomas suggested. If your have a night build fail. You should increment the build number and tag it again for the next build. However even with simple cron job to do scm:update and build every hour would reduce your chance

Re: Maven unattended build process ---?

2005-08-19 Thread dan tran
steps you said tag the entire source source. How do you tag it? Do you use ant rtag or someother mechanism? Thanks, Sanjay On 8/18/05, dan tran [EMAIL PROTECTED] wrote: Sanjay, you and I have the same build requirements ( tag daily build) but I dont use multiproejct:prepare-release

Re: [Maven_1.1-beta-1]

2005-08-19 Thread dan tran
and settings). Aurélie -Message d'origine- De : dan tran [mailto:[EMAIL PROTECTED] Envoyé : jeudi 18 août 2005 18:09 À : Maven Users List Objet : Re: [Maven_1.1-beta-1] what you want is to override maven.repo.local to somewhere else. Where to put this property? http

Re: How check that project should be rebuilded (source code management)?

2005-08-23 Thread dan tran
if you are using maven-scm-plugin, then scm:status can tell you if any file have been changed base on some criteria, other wise you can take a look the actual implementation http://svn.apache.org/repos/asf/maven/scm/trunk/maven-scm-providers look for change-log command or status command -D

Re: Why is the version not appended to target/blah.war?

2005-08-23 Thread dan tran
Jamie, according maven-war-plugin doco, maven.war.final.name is default to ${pom.artifactId}.war that is why maven war:war would produce, however when install on repos, it must comform to maven filename convention. Overide maven.war.final.name if you like -D On 8/23/05, Jamie Bisotti [EMAIL

Re: [m2] @parameter, etc

2005-08-23 Thread dan tran
http://maven.apache.org/maven2/developers/mojo-api-specification.html ? ;-) -D On 8/23/05, Chris Berry [EMAIL PROTECTED] wrote: Is there any documentation for the Javadoc annotations for m2 Java-based Mojos?? In particular I am interested in @parameter (and it's follow on syntax like;

Re: [M2] Cyclical Dependencies

2005-08-23 Thread dan tran
Eric, You need another project and move the common source of both project1 and project2 to this new common project. That will solve your cyclic dependency problem. -D On 8/23/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I am very new to maven and have decided to start off with Maven 2.

Re: j2ee sdk in repositories?

2005-08-25 Thread dan tran
you need to install that on your own remote repo. Sun License does not allow to install their j2ee files (jta, jdbc, jca,etc ) on ibiliio -D On 8/25/05, Rick Mann [EMAIL PROTECTED] wrote: Hi. I experimented with Maven 1.0 a while back, and kind of gave up. But today I came across Maven2's

Re: maven repositories

2005-08-25 Thread dan tran
ant:wget? -D On 8/25/05, Tim Dyck [EMAIL PROTECTED] wrote: Is there a way to easier download jars from the repository without having to list it as a dependency in a project? In my case, I want to modify the maven.xml file and override the javadoc goal to also build a PDF of the javadocs

Re: [m1] overriding a bunch of artifacts

2005-08-25 Thread dan tran
First you must still need to define dependencies for each project. Then you tell maven not to get those files from remote repository but to a specific place by setting up maven.jar.override=on for example maven.jar.override = on maven.jar.log4j= ${somewhere}/log4j.jar maven.jar.dom4j=

Re: j2ee sdk in repositories?

2005-08-25 Thread dan tran
Sun releases GlassFish appserver to opensource, so how it works out remains to be seen. interm of searching for repos, maven uses the repos list and pickup what ever it sees first. -D On 8/25/05, Rick Mann [EMAIL PROTECTED] wrote: On Aug 25, 2005, at 4:33 PM, dan tran wrote: you need

Re: common dependency in maven 1

2005-08-26 Thread dan tran
how about restructure your source tree as root core subproject common-settings -- make sub 1 sub 2 have all subx to inherit from common-setting project which has core as dependency In your root set

Re: How check that project should be rebuilded (source code management)?

2005-08-26 Thread dan tran
://svn.apache.org/repos/asf/maven/scm/trunk Vov@ Sadovyy wrote: Unfortunately I didn't find snapshot at http://cvs.apache.org/repository/maven/plugins/. Is somewhere another source to get maven-scm-plugin snapshot? tnx. From: dan tran [EMAIL PROTECTED] To: Vov@ Sadovyy [EMAIL PROTECTED

Re: I can not connect to internaet in one project

2005-08-28 Thread dan tran
It is best that you create your own internal repository http://maven.apache.org/reference/internal-repositories.html or Using jar override http://maven.apache.org/using/managing-dependencies.html -D On 8/28/05, Matthew Yeh \( 葉荊東 \) [EMAIL PROTECTED] wrote: Hi, Could I pre-install

[M2] Proposal to add Inheritent property in pom.xml

2005-08-28 Thread dan tran
Hello all, I would like to add properties key1value1/key1 keyXvalueX/keyX properties I can see the following benefits: - Using single version property at the root pom to handle all sub project parent and dependencies versions For example: parent

Re: [M2] Proposal to add Inheritent property in pom.xml

2005-08-29 Thread dan tran
On 8/28/05, Brett Porter [EMAIL PROTECTED] wrote: On 8/29/05, dan tran [EMAIL PROTECTED] wrote: For example: parent groupIdparentgroupidgroupId artifactIdparentid/artifactId version${my.version}/version /parent This won't

Re: [m1] environment override project.properties ?

2005-08-30 Thread dan tran
dont think it is supported!!! use ~/build.property, or your project's project.property, or -Dkey=value http://maven.apache.org/reference/properties.html -D On 8/30/05, Ittay Dror [EMAIL PROTECTED] wrote: Hi, How can I have environment variables that will override the values in the

Re: overwrite template.* property

2005-08-30 Thread dan tran
http://maven.apache.org/reference/properties.html On 8/30/05, Vov@ Sadovyy [EMAIL PROTECTED] wrote: Hi, Another one newbie question... Is there possibility to overwrite properties like template.maven_reports.section.title and so on? Originally I need to add some custom headers to

Re: [m2] fileset

2005-09-01 Thread dan tran
in Maven 1, you use sourceModifications in Maven 2, you use compiler plugin filter set -D On 9/1/05, Ashley Williams [EMAIL PROTECTED] wrote: I have my source code on a single tree but wish to build two artifacts out of it with two different poms. Is there some concept such as a file set

Re: [m2] fileset

2005-09-01 Thread dan tran
btw, this feature is not in alpha 3 thou, but the latest trunk -D On 9/1/05, dan tran [EMAIL PROTECTED] wrote: in Maven 1, you use sourceModifications in Maven 2, you use compiler plugin filter set -D On 9/1/05, Ashley Williams [EMAIL PROTECTED] wrote: I have my source code

Re: [m2] fileset, how to work on large projects

2005-09-01 Thread dan tran
up its adoption. I doubt eclipse is doing that. Just a few thoughts anyway. - AW On 1 Sep 2005, at 22:06, dan tran wrote: btw, this feature is not in alpha 3 thou, but the latest trunk -D On 9/1/05, dan tran [EMAIL PROTECTED] wrote: in Maven 1, you use sourceModifications

Re: [m2] maven, how to work on large projects

2005-09-01 Thread dan tran
. In fact with VisualAge we never ever used to export the source code to the filing system, we would just generate the customer release jars direct onto CD ready for customer updates every couple of months. Cheers - AW On 1 Sep 2005, at 22:57, dan tran wrote: On 9/1/05, Ashley Williams

Re: exclude example

2005-09-01 Thread dan tran
Hey brando, this is Dan from the old Struts channel ;-) For your case, add classNamefakeClass/className !-- see maven doc -- -D On 9/1/05, Goodin, Brandon [EMAIL PROTECTED] wrote: Is there an exclude example that someone can share with me. I have a couple packages that I do not want

Re: scm Checkin goal!!

2005-09-02 Thread dan tran
scm:checkin goal is not in the current 1.5 maven-plugin-scm yet. You can checkout the trunk in SVN and build it. (1.5.1-SNAPSHOT) Hope it helps -D On 9/1/05, NIRMALA Manivasagam [EMAIL PROTECTED] wrote: Hi All, If i want to write maven scm checkin goal...what are all the properties

Re: How to change the copyright info for a site build?

2005-09-02 Thread dan tran
I have not tried m2 site yet, but in m1, it is from your project.xml 's organization. Should not be diffrent for m2. -D On 9/2/05, Wendell Beckwith [EMAIL PROTECTED] wrote: When using the site:site goal how do I configure the copyright message that's added to all the pages (we're using

Re: How to set a plugin's prefix?

2005-09-02 Thread dan tran
I am not well versed in settings.xml yet.. but if you really post you settings.xml, it would help ;-) -D On 9/2/05, Wendell Beckwith [EMAIL PROTECTED] wrote: I really hate to be dense, but I have created a settings.cml file with the following content and placed it in my .m2 directory, and

Re: Use case question: in a multiproject context build a single jar aggregating all classes from subprojects

2005-09-03 Thread dan tran
Andy, maven-assemply-plugin seems to do what you want. And I also found this http://jira.codehaus.org/browse/MNG-319 -D On 9/3/05, Doug Douglass [EMAIL PROTECTED] wrote: Andy Glick wrote: The Ant builds of the Spring and the SpringModules projects are fairly easy to convert to M1 or

Re: [m2] Test execution environment

2005-09-06 Thread dan tran
Avvind, I think we should refactoring maven-assemply-plugin into a api so that you can create your own custom mojo/archiver where an archiver can be a directory structure which can be customized for your env. Some details are at http://jira.codehaus.org/browse/MNG-735 Feel free to continue

Re: [m2] How to invoke Ant's Java task without an ant file?

2005-09-07 Thread dan tran
Hi Wendell, You have 3 options: - invoke ant task directly within your mojo by setting up the neccesary dependencies then call the ant task class' execute method. - Invoke the maven-executor-plugin, a generic mojo to invoke any java's main method. It is still in the sanbox of at

Re: [m2] Building Eclipse plugins using Maven 2

2005-09-07 Thread dan tran
What about from a pom.xml, maven can generate manifest.fmhttp://manifest.fmfile. There is already some work done at http://svn.apache.org/repos/asf/incubator/felix/trunk/tools/maven2/maven-osgi-plugin/ -D On 9/7/05, Andrew Niefer [EMAIL PROTECTED] wrote: Jason van Zyl [EMAIL

Re: [m2] properties

2005-09-12 Thread dan tran
HI John, what can we do with these properties. Can I use it in as expression to replace some common configurations: buiild some plugin configuration field1${my.property}somethingelse/field1 field2${my.property}somethingelse2/field2 /configuration some plugin ... /build -Dan On

Re: maven scm libraries

2005-09-16 Thread dan tran
maven1 maven-scm-plugin has some doc on how to setup your url in your project.xml. Should apply for pom.xml as well. the code is at http://svn.apache.org/repos/asf/maven/scm/trunk -Dan On 9/16/05, Ashley Williams [EMAIL PROTECTED] wrote: (Not sure if this is the correct mailing list)

Re: Versioning

2005-09-30 Thread dan tran
Ken, Could you elaborate more in one place? like in one pom, and have all sub poms to inherite it? If so, you are not alone. Currently, you have to declare at least the parent's pom version for each sub pom. I doubt you can get away not tagging the SCM. without the tag, you can't retreive the

Re: Versioning

2005-09-30 Thread dan tran
project.xml files so that the version numbering is driven by Subversion rather than me trying to keep the Subversion version number in sync with my Maven version number? Thanks, Ken -Original Message- From: dan tran [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 12:53 PM

Re: Plugin for Eclipse plugins

2005-10-04 Thread dan tran
There is some working going on at http://svn.apache.org/repos/asf/incubator/felix/trunk/tools/maven2/maven-osgi-plugin/ -Dan On 10/4/05, jan_bar [EMAIL PROTECTED] wrote: Hi, is there maven plugin that helps developing Eclipse plugins and RCP? For instance META-INF/MANIFEST.MF contains

Re: [m2] java execution plugin

2005-10-11 Thread dan tran
http://mojo.codehaus.org execute-maven-plugin still in sandbox -Dan On 10/11/05, Ashley Williams [EMAIL PROTECTED] wrote: I would like to execute my artifact that has a main method in it and I remember that there was a java -jar plugin that automatically takes into account your

Re: Continuum and ClearCase

2005-10-12 Thread dan tran
First I am not going to promise maven-scm-provider for clearcase will be avaiable soon ( too many options) What kink of clearcase configuration do you use? - Base SCM ? - UCM ? - Mix? - Snapshot? -Dan On 10/11/05, Wim Deblauwe [EMAIL PROTECTED] wrote: Hi, any idea when Continuum

Re: Continuum and ClearCase

2005-10-12 Thread dan tran
multiple vobs? -D On 10/12/05, Wim Deblauwe [EMAIL PROTECTED] wrote: We use Base SCM with dynamic views 2005/10/12, dan tran [EMAIL PROTECTED]: First I am not going to promise maven-scm-provider for clearcase will be avaiable soon ( too many options) What kink of clearcase

Re: Plugin for Eclipse plugins

2005-10-13 Thread dan tran
seem to create them. How I should keep those two files to be same? Jan dan tran [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] There is some working going on at http://svn.apache.org/repos/asf/incubator/felix/trunk/tools/maven2/maven-osgi-plugin/ -Dan On 10/4/05, jan_bar

Re: Continuum and ClearCase

2005-10-13 Thread dan tran
it that is an easier approch? If so, I would already be happy with having that. regards, Wim 2005/10/12, dan tran [EMAIL PROTECTED]: multiple vobs? -D On 10/12/05, Wim Deblauwe [EMAIL PROTECTED] wrote: We use Base SCM with dynamic views 2005/10/12, dan tran [EMAIL PROTECTED

Re: Wanted: Help with documentation on M2

2005-10-16 Thread dan tran
Siegfried, The development team is actively working on m2 documentation, and I beleive you will see lots doco will be available soon. Voting is going on dev list to load up new doco site layout However, I have seen lot traffic discussion about having a mojo to do exactly what your try to do by

Re: scm:clearcase Help

2005-10-18 Thread dan tran
Clearcase support for maven is almost none. What are you trying to do? http://svn.apache.org/repos/asf/maven/scm/trunk contains 2 clearcase command. -D On 10/18/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Can anyone please provide me some how to connect to UCM clearcase using M2 scm tag

Re: MAVEN in non-java project!

2005-10-18 Thread dan tran
Mark, I there is a native plugin porting in alpha state at mojo https://svn.codehaus.org/mojo/trunk/mojo/maven-native/ I use it at work, perhaps we can join rather than doing it separately. -Dan On 10/18/05, Donszelmann, Mark [EMAIL PROTECTED] wrote: Hi we wrote a Native Archive Plugin

Re: scm:clearcase Help

2005-10-18 Thread dan tran
Raghurajan I am interesting in how you use clearcase UCM to for SCM. Do you have any non SCM vobs involved? -D On 10/18/05, dan tran [EMAIL PROTECTED] wrote: Clearcase support for maven is almost none. What are you trying to do? http://svn.apache.org/repos/asf/maven/scm/trunk contains 2

Re: scm:clearcase Help

2005-10-19 Thread dan tran
With UCM dynamic view, on integration stream the update happens automatically. Are you using SNAPSHOT? view on development stream? -Dan On 10/19/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, Thanks for reply What i'm interested is can i use maven to update my source codes in my

Re: Multiple source folders in M2

2005-10-19 Thread dan tran
I can send you the mojo. -Dan On 10/19/05, Jason van Zyl [EMAIL PROTECTED] wrote: On Wed, 2005-10-19 at 14:56 -0700, Brett Porter wrote: Write a plugin that adds a compile source root. See one of the plugins that generate sources for an example.

Re: [M2] Too heavy load for ibiblio?

2005-10-29 Thread dan tran
Is there any recommsndation from maven dev team to fix this problem? Maven proxy is must have for corporate environment. -D On 10/28/05, Allison, Bob [EMAIL PROTECTED] wrote: One problem I have been having with maven-proxy is that I find that once a jar's metadata is downloaded, it never

Re: Continuum and ClearCase

2005-10-30 Thread dan tran
Wim you can install svn, it also uses http to go out -D On 10/30/05, Wim Deblauwe [EMAIL PROTECTED] wrote: I'm sorry, but I don't have svn installed or any of that... 2005/10/28, Emmanuel Venisse [EMAIL PROTECTED]: do you want to create a little patch ;-) Wim Deblauwe a écrit :

Modify all pom.xml files for entired project tree

2005-10-31 Thread dan tran
Hello, I have a need to do daily release of my m2 project tree by - Walking the entire tree and increament the build number (ie x.y.z.buildnumber) in every pom.xml files. (note all pom.xml have the same version number) - Check in all pom.xml files - Tag the entire source tree - build

Re: Maven2 - Where is JMX.jar??

2005-11-01 Thread dan tran
http://www.ibiblio.org/maven2/mx4j/ On 11/1/05, Alexandre Poitras [EMAIL PROTECTED] wrote: If you want to use the Sun reference implementation, please refer to this page : http://maven.apache.org/maven2/guides/mini/guide-coping-with-sun-jars.html Sun JMX RI :

Re: Building C++ projects with Maven (2)

2005-11-01 Thread dan tran
Hi David, There is a work in progress for native-maven-plugin http://svn.mojo.codehaus.org/trunk/mojo/maven-native/ You can build it and take a look at some doc. -Dan On 11/1/05, David Jackman [EMAIL PROTECTED] wrote: I've just found out that I'm going to need to expand our Maven build

Re: Building C++ projects with Maven (2)

2005-11-01 Thread dan tran
, -- Chris On 11/1/05, dan tran [EMAIL PROTECTED] wrote: Hi David, There is a work in progress for native-maven-plugin http://svn.mojo.codehaus.org/trunk/mojo/maven-native/ You can build it and take a look at some doc. -Dan On 11/1/05, David Jackman [EMAIL PROTECTED] wrote: I've

Re: make - maven

2005-11-03 Thread dan tran
I am all for single package. -D On 11/3/05, Wim Deblauwe [EMAIL PROTECTED] wrote: What I did with maven 1 is write a custom goal that uses ant to call a bat file that calls make. That way, we only needed to export a make file from Visual Studio and all parameters are correct. Otherwise, you

Re: [m2] set working directory

2005-11-04 Thread dan tran
mvn -f path-to-your-project-dir/pom.xml then the working directory will be path-to-your-project-dir -D On 11/4/05, Nitko2 [EMAIL PROTECTED] wrote: Does Maven 2 has a switch for setting working directory? Something like -d in Maven 1. I listed options with mvn -? but couldn't find it.

Re: Building C++ projects with Maven (2)

2005-11-04 Thread dan tran
it would be nice to write generic poms that depend on just the logical package (apr 1.2.2 instead of apr 1.2.2 x86_64) and have maven sense the machine architecture (and OS) and fetch the correct native artifact. Roger On 11/1/05, dan tran [EMAIL PROTECTED] wrote

Re: [m2] parent's relativePath

2005-11-05 Thread dan tran
Normally, maven looks for parent pom with this order immeditate parent directory local repo remote repo So the parent pom.xml in parent dir, must have the groupID and artifacID found in child pom But there is a bug that may be your problem too http://jira.codehaus.org/browse/MNG-740 -D

Re: [m2] plugins vs dependencies

2005-11-05 Thread dan tran
Jeff, Invoking junit is part of maven-core, but the user have to declare junit as dependency with test scope with their own version. ie junit is not a plugin. you dont specify plugin as dependency but as plugin declaration in build However, you can use pluginManagement at root pom to ensure all

Re: Multiple source directories (again)

2005-11-10 Thread dan tran
looks like we need to checking add source plugin into mojo so every one can reuse. -D On 11/10/05, Jason van Zyl [EMAIL PROTECTED] wrote: On Thu, 2005-11-10 at 15:19 +, Pilgrim, Peter wrote: +1 I'd be interested in this too! Does this help?

Re: [M2] - Automatically create checksum when putting files in repository

2005-11-13 Thread dan tran
there is some talk of extracting code from maven-deploy-plugin to create new plugin for this purpose. -D On 11/13/05, Jerarckill - ANS [EMAIL PROTECTED] wrote: Hello, When putting archives in my enterprise's central repository, I want checksum files to be created, in order not to have

Re: [M2] Using variable expressions

2005-11-17 Thread dan tran
See inline On 11/16/05, Dietrich Schulten [EMAIL PROTECTED] wrote: Hi, Every now and then I see references to variables in the format ${some.expression}. However, I do not fully understand them: which variables are there? 1. User variables You can define your own variables and use them

about native-maven-plugin and javahOS configuration

2005-11-17 Thread dan tran
There was a user directly query me about this plugin, please resend the question. Your email disappears out of thin air after I read it. ;(, So i will answer in maven list instead In your case, to add jni include path to you plugin's configuration, your can do this as well source

Generate DB Schema using annotated JPA classes ??

2007-07-20 Thread Dan Tran
Do we have an example howto configure hibernate2-maven-plugin to generate DB schema using the annotated JPA classes? Any suggestion is greatly appreciated. Thanks -Dan

Re: Generate DB Schema using annotated JPA classes ??

2007-07-20 Thread Dan Tran
/execution /executions /plugin thanks -D On 7/20/07, Jim Crossley [EMAIL PROTECTED] wrote: Hi Dan... Dan Tran [EMAIL PROTECTED] writes: Do we have an example howto configure hibernate2-maven-plugin to generate DB schema using the annotated JPA classes? I set up a profile in my pom to build

Re: Maven plugin eclipse question

2007-07-22 Thread Dan Tran
no. And you may as well manually create the project files using eclipse itself. Just curious, why dont you want the dependencies? On 7/22/07, Dmitry [EMAIL PROTECTED] wrote: Maven plugin eclipse question When we execute mvn eclipse :eclipse , it generate .classpath that contain a variable

Re: Maven plugin eclipse question

2007-07-22 Thread Dan Tran
, www.ejinz.com Search tool web - Original Message - From: Dan Tran [EMAIL PROTECTED] To: Maven Users List users@maven.apache.org Sent: Sunday, July 22, 2007 3:44 PM Subject: Re: Maven plugin eclipse question no. And you may as well manually create the project files using eclipse itself

What is Use SCM Credentials Cache, if available?

2007-07-26 Thread Dan Tran
Could not figure out what it means in continuum 1.1? any hint? :-) Thanks -D

Re: Re: Continuum don't show the author and messages commit in the changes section

2007-07-26 Thread Dan Tran
it intermittenly happens on 1.1-beta-1 as well -D On 7/26/07, Martin Alejandro Villalobos [EMAIL PROTECTED] wrote: Emmanuel, thanks for your answer. I'm using Continuum 1.0.3 and SVN, but this behaviour is only with some projects, not with all. Can be related with the way in that the svn

Re: What is Use SCM Credentials Cache, if available?

2007-07-27 Thread Dan Tran
in the Add Project page :) HTH, Deng Dan Tran wrote: Could not figure out what it means in continuum 1.1? any hint? :-) Thanks -D

Re: Continuum don't show the author and messages commit in the changes section

2007-07-27 Thread Dan Tran
Emmanuel, Do you have instructions on how to enable debug on maven-scm classes? Thanks -Dan On 7/26/07, Emmanuel Venisse [EMAIL PROTECTED] wrote: To know what's happen, I'd need logs of maven-scm classes in debug level. Emmanuel Dan Tran a écrit : it intermittenly happens on 1.1-beta

Re: How to add an extra process step prior to war target Q

2007-08-01 Thread Dan Tran
http://mojo.codehaus.org/retrotranslator-maven-plugin/ On 8/1/07, fmuhlenberg [EMAIL PROTECTED] wrote: I have a process question My project develops and compiles using Java 1.5. However, we deploy to an application server (Oracle) that accepts only Java 1.4 classes. I use a tool,

Re: Setting home in continuum windows service

2007-08-02 Thread Dan Tran
see if you can use this link to reconfigure your NT startup command/params http://wrapper.tanukisoftware.org/doc/english/props-envvars.html -D On 8/2/07, Oscar Picasso [EMAIL PROTECTED] wrote: Hi, I want the builds launched by continuum to use jdk1.5 while the default in my windows

Re: problem setting windows path for surefire tests

2007-08-03 Thread Dan Tran
The overwrite system path problem is plexus-utils. Perhaps you can build the surefire with latest plexus-utils ( 1.4.5) and verify? -D On 8/3/07, Nathan Coast [EMAIL PROTECTED] wrote: Hi Dave, Thanks for your reply. Unfortunately, we seem to be hitting some other problem. The mere

Re: Eclipse libraries

2007-08-09 Thread Dan Tran
http://repo1.maven.org/eclipse/ experimental only!! I think On 8/9/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi all! Does anybody know if there is a repository that holds all eclipse libraries? I'm trying to get some eclipse projects to work in headless-mode, but need several libs

Re: Trying to run ant task wsgen from maven but it's failing

2007-08-15 Thread Dan Tran
The main problem is http://jira.codehaus.org/browse/MEV-498 Also you should try to use jaxws-maven-plugin at java.net 'ws-common -D On 8/15/07, Charles Smith [EMAIL PROTECTED] wrote: I'm trying to use maven to call an ant script which contains the target wsgen by jaxws. I have the

Strange Behaviors in Continuum 1.1-betas as windows service

2007-08-16 Thread Dan Tran
Hello, I am seeing some strange behaviors in alpha, beta-1, and beta-2 ( still instaging area), that I hope someone can explain and/or confirm. - Unable to sync the project source when Continuum runs under NT service with a known admin user id. the build log shows Provider message: The

Re: parameterised way (like maven.test.skip=true) to bypass a phase/goal

2007-08-22 Thread Dan Tran
You can not skip a phase, but executions within a phase can be skipped if the configured plugins support this option ( like sql-maven-plugin) . -D On 8/22/07, Farhan Sarwar [EMAIL PROTECTED] wrote: Hello All, Just wanted to know if there is a way to bypass a phase or a goal (defined in a

Re: parameterised way (like maven.test.skip=true) to bypass a phase/goal

2007-08-22 Thread Dan Tran
in advance and Regards, Farhan. On 8/22/07, Dan Tran [EMAIL PROTECTED] wrote: You can not skip a phase, but executions within a phase can be skipped if the configured plugins support this option ( like sql-maven-plugin) . -D On 8/22/07, Farhan Sarwar [EMAIL PROTECTED] wrote: Hello

Re: mvn.bat and error_code (Maven 2.0.7 and Windows XP)

2007-08-23 Thread Dan Tran
http://jira.codehaus.org/browse/MNG-3084 On 8/23/07, Andreas Guther [EMAIL PROTECTED] wrote: Maven 2.0.7 mvn.bat errorlevel return code problem. Hi I am failing to capture the mvn.bat return code. Basically I have a batch file that calls mvn several times. In case of an error I would

Re: How to Prevent Redeployment of an Artifact?

2007-08-27 Thread Dan Tran
you should use maven-release-plugin to do the deployment. This plugin always increment the release version after it releases the artitfacts -D On 8/27/07, Hilco Wijbenga [EMAIL PROTECTED] wrote: Hi all, I'm in the process of setting up a Maven environment. Things are working nicely but I

Re: How to Prevent Redeployment of an Artifact?

2007-08-27 Thread Dan Tran
in a control manner. also take a look at maven itself which has multiple project groups ( ie , plexus core, plexus-utils, plexus archiver, doxia, scm, maven etc) hope it helps. -D On 8/27/07, Hilco Wijbenga [EMAIL PROTECTED] wrote: On 8/27/07, Dan Tran [EMAIL PROTECTED] wrote: you should use

Re: Community review of the next commons-logging pom

2007-08-27 Thread Dan Tran
agree with Michael here. -D On 8/27/07, Michael McCallum [EMAIL PROTECTED] wrote: IMO the log4j, logkit, avalon dependencies all need to go... I as I imagine most people do only use one logging implementation in the deployed systems why introduce a dependency on several implementations at the

Re: Skiping module during mvn eclipse:eclipse

2007-08-28 Thread Dan Tran
can you reproduce in a smaller set of projects? On 8/28/07, Marcin Waldowski [EMAIL PROTECTED] wrote: Hello. I've returned to this subject :) Now I use version 2.4 of maven-eclipse-plugin which gives me a posibility to use 'skip' parameter. After making 'mvn help:effective-pom' I can see

Re: classifier for maven deploy plugin

2007-08-28 Thread Dan Tran
I am going to assume that you want to deploy artifacts that are not built by maven. You can create a pom and configure build-helper-maven-plugin to attach all your artifacts to maven, and finally call 'maven deploy' -D On 8/28/07, John Coleman [EMAIL PROTECTED] wrote: Hi, Is there a way

Re: SCM plugin and non-verbose mode

2007-08-28 Thread Dan Tran
dont think there is a solution for case, please file a request against maven scm. Best if you directly enhance maven-scm's starteam provider to get you going, and then submit a patch -D On 8/28/07, Eric Roberts [EMAIL PROTECTED] wrote: Is there any way to tell an SCM configuration to use

  1   2   3   4   5   6   7   8   9   10   >