Maven for project you do not have sources for

2010-05-06 Thread Ilya Kazakevich
cannt use DEPENDENCY because projects does not have dependency on its self. And looks like I have to write my own plugin: http://stackoverflow.com/questions/1440224/how-can-i-download-maven-artifact s-within-a-plugin Is it true? Probably there are some plugins to help me? Thanks. Ilya Kazakevich

RE: Maven for project you do not have sources for

2010-05-06 Thread Ilya Kazakevich
does with compiled code. So, almost like compile but instead of compiling -- just download artifact from repository :) Thanks. Ilya Kazakevich, Developer JetBrains Inc http://www.jetbrains.com Develop with pleasure! -Original Message- From: Wayne Fay [mailto:wayne...@gmail.com] Sent

RE: Maven for project you do not have sources for

2010-05-06 Thread Ilya Kazakevich
help. Ilya Kazakevich, Developer JetBrains Inc http://www.jetbrains.com Develop with pleasure! -Original Message- From: Wayne Fay [mailto:wayne...@gmail.com] Sent: Thursday, May 06, 2010 10:31 PM To: Maven Users List Subject: Re: Maven for project you do not have sources for When I run

RE: Maven with Java and non-Java projects

2010-02-24 Thread Ilya Kazakevich
There are some non-java compilers: http://maven.apache.org/plugins/maven-compiler-plugin/non-javac-compilers.ht ml -Original Message- From: wds wds [mailto:work.dev.st...@gmail.com] Sent: Wednesday, February 24, 2010 5:45 PM To: users@maven.apache.org Subject: Maven with Java and

RE: What subversion (version) to use?

2010-02-18 Thread Ilya Kazakevich
You do not need SVN to work with maven although version control is very usefull tool and it should exist in any project. Tortoise is just a shell (explorer) plugin which helps communicate with svn server. You can use command line client as well (and its much butter IMHO). Here is a good book

Modules in phase order

2010-02-02 Thread Ilya Kazakevich
second module should do some cleanup after it, but after .jar file is created. I can bind to clean phase, but I want to do it in package phase, so I can simply run mvn package. That's probably against maven ideology. But I wish there is a way to accomplish that... Thanks. Ilya

RE: Modules in phase order

2010-02-02 Thread Ilya Kazakevich
during the build process? As it doesn't do any difference for the artifact it should go in the clean lifecycle. /Anders On Tue, Feb 2, 2010 at 11:47, Ilya Kazakevich kazakev...@devexperts.comwrote: Hello, Is it possible to configure order in wich modules are executed in special phase? I

RE: Automatic updates from repository

2010-02-01 Thread Ilya Kazakevich
Hello, Why do not you want to use SNAPSHOT? Fixed version should never be changed but snapshot can. You have SNAPSHOT while you develop your artifact, and when you're ready to release it -- you give it version number. Other artifacts may depend on your snapshot. If so -- maven knows that

RE: Automatic updates from repository

2010-02-01 Thread Ilya Kazakevich
Hello, Why do not you want to use SNAPSHOT? Fixed version should never be changed but snapshot can. You have SNAPSHOT while you develop your artifact, and when you're ready to release it -- you give it version number. Other artifacts may depend on your snapshot. If so -- maven knows that

Plugin for updating external XML file content

2010-02-01 Thread Ilya Kazakevich
that. Thanks. Ilya Kazakevich - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

RE: Plugin for updating external XML file content

2010-02-01 Thread Ilya Kazakevich
:42, Ilya Kazakevich ?: Hi all, I have a slightly weird situation: I need to update contents of some external XML file each time I do deploy. I wonder if there is a plugin that could be installed in deploy phase and do that for me? Plugin should be able to replace some token in text

RE: Plugin for updating external XML file content

2010-02-01 Thread Ilya Kazakevich
-replacer-plugin/ 01.02.2010 19:42, Ilya Kazakevich пишет: Hi all, I have a slightly weird situation: I need to update contents of some external XML file each time I do deploy. I wonder if there is a plugin that could be installed in deploy phase and do that for me? Plugin should be able

RE: Plugin for updating external XML file content

2010-02-01 Thread Ilya Kazakevich
eliminating ant use from your Maven project. I see ant as a tool that is supported and may be appropriate for some situations. To have a policy that rules out a useful tool seems counterproductive. !-- Frank Gorham-Engard → -Original Message- From: Ilya Kazakevich [mailto:kazakev

Dependencies in multi-module project

2010-01-26 Thread Ilya Kazakevich
, and if I did not do mvn deploy there would not be one! Of course I can add system dependency to module B and hardcode path to module A (like ../A/target/classes) but that's an ugly hack. What is the best way to do that? Thanks. WBR, Ilya Kazakevich

RE: tools.jar

2009-07-14 Thread Ilya Kazakevich
Hello, Afaik, JAVA HOME should be set to path to JDK, not JRE. There is no tools.jar in JRE, only in JDK. Download and install JDK -Original Message- From: sariram [mailto:seetharaman...@gmail.com] Sent: Tuesday, July 14, 2009 2:29 PM To: users@maven.apache.org Subject: Re: tools.jar

version separator: dash instead of dot

2009-07-13 Thread Ilya Kazakevich
Hello all, Is it possible to configure Maven to use dash instead of dot in version numbering? For the historical reasons our software versions look like this: 1-199-25. But maven needs 1.199.25. I wonder if there is some config in Maven, or we have to change our versioning policy? thanks