Re: CD, version numbers, IDE integration

2014-08-31 Thread Milos Kleint
netbeans is also embedding 3.0.5 (which is used for project loading exclusively, for building any version can be used) Milos On Mon, Sep 1, 2014 at 8:22 AM, Mark Derricutt m...@talios.com wrote: Currently IntelliJ embeds 3.0.5 and gets perplexed over anything 3.2.x specific ( it really

Re: Maven Custom Parent property from Module

2013-11-25 Thread Milos Kleint
does your child project reference the parent using the parent element? in the correct version? Milos On Mon, Nov 25, 2013 at 9:57 AM, Panciz dav.pole...@gmail.com wrote: I cant access, from a Maven module, to a property defined in the properties section of the parent. As a matter of fact When

Re: Maven Custom Parent property from Module

2013-11-25 Thread Milos Kleint
while your module../PMS-WEB/module section in parent pom references the child in the same directory, your parent/relativePath is undefined, therefore expecting the parent to be one level up, not on the same level. Please check documentation for maven model + see the effective pom to see if the

Re: Maven bootstrap/surefire:test performance

2013-09-14 Thread Milos Kleint
after 1800ms. Regards Mirko [0] https://github.com/mfriedenhagen/pastebin/tree/surefire-speed-test -- Sent from my mobile On Sep 13, 2013 9:49 PM, Mark Eggers its_toas...@yahoo.com wrote: On 9/13/2013 12:38 PM, Milos Kleint wrote: with Compile on Save enabled, the test-compile phase should

Re: Maven bootstrap/surefire:test performance

2013-09-13 Thread Milos Kleint
with Compile on Save enabled, the test-compile phase should be skipped and only surefire:test should be executed. However even with that, there's overhead of jvm startup + maven startup before the mojo gets executed. Obviously the overhead is biggest when you run just a single test. Unfortunately

Re: Maven bootstrap/surefire:test performance

2013-09-13 Thread Milos Kleint
On Fri, Sep 13, 2013 at 9:47 PM, Mark Eggers its_toas...@yahoo.com wrote: On 9/13/2013 12:38 PM, Milos Kleint wrote: with Compile on Save enabled, the test-compile phase should be skipped and only surefire:test should be executed. However even with that, there's overhead of jvm startup

Re: [ANN] Maven Indexer 5.1.1 Released

2013-03-08 Thread Milos Kleint
are there any steps to be taken by 3rd party integrators when upgrading? Milos Kleint On Fri, Mar 8, 2013 at 3:10 PM, Tamás Cservenák ta...@cservenak.net wrote: The Apache Maven team is pleased to announce the release of the Maven Indexer, version 5.1.1. Apache Maven Indexer (former Sonatype

Re: Assembly plugin - Java 7 classes are missing in the final JAR file

2013-02-13 Thread Milos Kleint
plugins. So the reason is probably someplace else. Milos Kleint On Wed, Feb 13, 2013 at 10:49 AM, j.tosov...@email.cz wrote: Dear All, I want to inlude one small dependency library together with my JAR file. There is an assembly plugin for this and it works fine. But now my primary project

Re: MissingProjectException

2012-11-27 Thread Milos Kleint
I suggest you move the project from root E:\ to something like E:\projectA (thus the pom.xml file will be at E:\projectA\pom.xml Milos On Tue, Nov 27, 2012 at 12:17 PM, Froggerbin frogger...@gmail.com wrote: Hello, When I try to either Build, Clean and Build or Run (play button) my '

Re: MissingProjectException

2012-11-27 Thread Milos Kleint
- From: Milos Kleint [mailto:mkle...@gmail.com] Sent: dinsdag 27 november 2012 14:11 To: Maven Users List Subject: Re: MissingProjectException I suggest you move the project from root E:\ to something like E:\projectA (thus the pom.xml file will be at E:\projectA\pom.xml Milos On Tue, Nov

Re: MissingProjectException

2012-11-27 Thread Milos Kleint
of factors. Milos On Tue, Nov 27, 2012 at 5:54 PM, Froggerbin frogger...@gmail.com wrote: How would the JDK be at fault in this and what does it have to do with the path? -Original Message- From: Milos Kleint [mailto:mkle...@gmail.com] Sent: dinsdag 27 november 2012 17:48 To: Maven Users

Re: MissingProjectException

2012-11-27 Thread Milos Kleint
window? Ron On 27/11/2012 11:54 AM, Froggerbin wrote: How would the JDK be at fault in this and what does it have to do with the path? -Original Message- From: Milos Kleint [mailto:mkle...@gmail.com] Sent: dinsdag 27 november 2012 17:48 To: Maven Users List Subject: Re

Re: Can not get a jar from maven central

2012-11-05 Thread Milos Kleint
wget is blacklisted. Milos On Mon, Nov 5, 2012 at 2:52 PM, Ron Wheeler rwhee...@artifact-software.com wrote: You might be blacklisted. I got a pretty quick response to the http link. Have you done anything that might have made Maven Central think that you should be blacklisted? If so, you

Re: No versions available but actually local repository contains it!

2012-07-25 Thread Milos Kleint
there's some code in latest maven that not only checks the presence of the jar/pom in local repository but also some additional metadata which describes where it was downloaded from. where is defined by repository id. if the repository id in your project is missing in the current metadata, a new

Re: list of phases defined by the lifecycle of a packaging type

2012-06-10 Thread Milos Kleint
public ListString getLifecyclePhases() { LifecycleMapping lifecycleMapping = lookupComponent(LifecycleMapping.class); if (lifecycleMapping != null) { SetString phases = new TreeSetString(); MapString, Lifecycle lifecycles = lifecycleMapping.getLifecycles();

Re: Accessing .properties file

2012-04-02 Thread Milos Kleint
common, just entering it into google gives you the right page at the top.. no, you don't need to configure anything, if you just add your properties file into the src/main/resources (sub)directory, it will be included into the resulting jar file. Milos On Mon, Apr 2, 2012 at 7:31 AM,

Re: Accessing .properties file

2012-04-01 Thread Milos Kleint
src/main/resources by default. See the maven-resources-pluign for more details and configuration options. Milos On Mon, Apr 2, 2012 at 7:13 AM, SudeepShakya shakyasud...@live.com wrote: I am new to Maven and using Wicket Framework in Netbeans IDE. Previously i used Ant(set default by IDE). I

Re: Avoid constant manual artifact installation in Netbeans

2012-03-16 Thread Milos Kleint
On Fri, Mar 16, 2012 at 5:33 PM, Wayne Fay wayne...@gmail.com wrote: Whenever a new jar-file is built, I usually go to the jar-dependency in the Maven project and click on 'Manually install artifact'. I was wondering if there is a mechanism to automate it. So, whenever a new jar file is built

Re: Avoid constant manual artifact installation in Netbeans

2012-03-16 Thread Milos Kleint
manually instal artifact is mvn install:install-file, either create a shell script to automate the process or make the install part of the build that produces the jar. Milos On Fri, Mar 16, 2012 at 6:14 AM, new2maven ralf.but...@web.de wrote: Hi there, I work on a Maven project which makes

Re: Execution of plugin in child poms and not in current pom

2011-08-04 Thread Milos Kleint
you could place the enforcer plugin definition in pluginManagement section of the parent pom and then in each of the child poms you want to execute the plugin, you would include it in the plugins section Milos On Thu, Aug 4, 2011 at 3:47 PM, Kreyßel, Conny conny.kreys...@inter-forum.de wrote:

Re: m2eclipse: missing Navigate menu items

2011-07-25 Thread Milos Kleint
the book is most probably not uptodate. M2E had to follow Eclipse guidelines on main menu content when being accepted into indigo release train and all/most of the menu items are gone now. Milos On Mon, Jul 25, 2011 at 9:14 PM, kanesee kane...@gmail.com wrote: This is more a m2eclipse plugin

Re: Compiling test classes and using ${project.name}

2010-12-07 Thread Milos Kleint
project name can be anything (or nothing).. it's for sure not intended to be used in filesystem paths.. don't use it. Milos On Tue, Dec 7, 2010 at 12:36 PM, Anders Hammar and...@hammar.net wrote: Maven best-practice is to stick to Maven conventions. You're not doing that and therefore you're

Re: mavenicing bpel module

2010-10-14 Thread Milos Kleint
I don't know what the actual problem you are facing is, but you might want to consider starting with maven from scratch and only add tasks (or better convert tasks to plugins) as the need arises. Milos On Thu, Oct 14, 2010 at 5:08 PM, José Vicente jvia...@gmail.com wrote: Hi: I’m mavenicing

Re: Maven Ban!

2010-09-22 Thread Milos Kleint
have you attempted to download the *whole* repository? http://maven.apache.org/guides/introduction/introduction-to-repositories.html mentions that you can get banned for doing so. It's a truckload of bandwidth you are not paying for. I don't know how to get you unbanned, sorry reading this thread

Re: [ANN] Maven Compiler Plugin 2.3 Released

2010-04-23 Thread Milos Kleint
The checksums on central shall be fixed now. My apologies to everyone. Milos On Wed, Apr 21, 2010 at 10:22 PM, Brett Porter br...@apache.org wrote: On 21/04/2010, at 11:13 PM, John Singleton wrote: Thanks, Brett. FWIW, I also noticed this problem with the 2.2 version of Compiler

[ANN] Maven Compiler Plugin 2.2 Released

2010-04-06 Thread Milos Kleint
The Maven team is pleased to announce the release of the Maven Compiler Plugin, version 2.2 This plugin provides the capability to compile the java sources and newly also to process annotations in jdk 1.6. See the plugin's site for ore details:

Re: Problems with Dependencies and Classpath

2010-03-08 Thread Milos Kleint
On Mon, Mar 8, 2010 at 3:03 PM, Matthias Hofmann matthias.hofm...@tu-dortmund.de wrote: Hi, currently i am trying to get my Java program running outside of the Netbeans IDE. Within Netbeans, it works well, all dependencies are correctly loaded and executed. But if i try to run the program

Re: Clean up of pom files

2010-02-24 Thread Milos Kleint
not for netbeans. AFAIK the maven pom schema doesn't enforce ordering. you could write such enforcer rule yourself I guess. Milos On Wed, Feb 24, 2010 at 10:30 AM, Nick Stolwijk nick.stolw...@gmail.comwrote: Hi all, We have a multitude of components and projects all build with maven and we

Re: generated sources/resources path conventions

2010-01-15 Thread Milos Kleint
On Fri, Jan 15, 2010 at 3:43 PM, Mark Hobson markhob...@gmail.com wrote: 2010/1/13 lukewpatterson lukewpatter...@gmail.com: It seems like ${project.build.directory}/generated-sources/generator-name and ${project.build.directory}/generated-resources/generator-name have been mentioned

Re: Code template converters?

2009-12-21 Thread Milos Kleint
On Mon, Dec 21, 2009 at 9:19 PM, Dennis Lundberg denn...@apache.org wrote: Alexander wrote: Hello, Eclipse, IDEA and NetBeans has code template engines but they can't use template from other platform. So question is: are there any code template converters? I mean write some template

Re: Mixing Scala and Java in the same project

2009-12-09 Thread Milos Kleint
http://kenai.com/projects/nb-maven-generators/ uses both scala and java code in the same project. It's a netbeans module that can add the scala configuration to your existing projects. Milos On Wed, Dec 9, 2009 at 10:23 AM, Pilgrim, Peter peter.pilg...@lloydsbanking.com wrote: Hi Has

Re: Maven Run Manifest entries

2009-12-03 Thread Milos Kleint
java -cp classpath but to execute :java -jar jar name Regards Milos Kleint On Wed, Dec 2, 2009 at 5:46 PM, eppleton nab...@eppleton.de wrote: Hi, I've created a Maven Project in NetBeans. It writes an entry into the JARs manifest. That works fine. At runtime I'm

Re: Maven Run Manifest entries

2009-12-02 Thread Milos Kleint
I would say you need to change the Run project action mapping in the ide not to use mvn exec:exec to execute java -cp classpath but to execute :java -jar jar name Regards Milos Kleint On Wed, Dec 2, 2009 at 5:46 PM, eppleton nab...@eppleton.de wrote: Hi, I've created a Maven Project

Re: Maven Run Manifest entries

2009-12-02 Thread Milos Kleint
or somehow generate the manifest file in the target area. Milos On Wed, Dec 2, 2009 at 6:02 PM, Milos Kleint mkle...@gmail.com wrote: I would say you need to change the Run project action mapping in the ide not to use mvn exec:exec to execute java -cp classpath but to execute :java -jar jar

Re: maven+netbeans+cpp newbie question

2009-11-26 Thread Milos Kleint
On Thu, Nov 26, 2009 at 9:53 AM, stephane ancelot sance...@free.fr wrote: Hi, I have got a problem ! I have to use netbeans in multiproject environment. multiproject means I have to generate a package that is composed of many C/C++ applications executable. however, it looks like

Re: Defining NetBeans 6.7 Actions Externally In Maven2 2.2.1

2009-11-18 Thread Milos Kleint
http://wiki.netbeans.org/MavenBestPractices#Binding_Maven_goals_to_IDE_actions http://wiki.netbeans.org/MavenBestPractices#Binding_Maven_goals_to_IDE_actions Milos On Wed, Nov 18, 2009 at 7:37 PM, rickbryant rick.bry...@gxs.com wrote: All: We just upgraded from Maven1 1.0.2 to Maven2 2.2.1

Re: Defining NetBeans 6.7 Actions Externally In Maven2 2.2.1

2009-11-18 Thread Milos Kleint
sorry, there is no such way, not an supported one. You can surely configure a project to have something executed with a given configuration via profiles, but I suppose that is not what you are looking for. Maven2 is different from m1 and also the ide integration became more elaborate. Some

Re: problem using archetype create-from-project to process files under resources folders.

2009-10-02 Thread Milos Kleint
check the sources of the generic nbm archetype at codehaus. http://svn.codehaus.org/mojo/trunk/mojo/mojo-archetypes/nbm-archetype/ Milos On Thu, Oct 1, 2009 at 5:03 PM, Djohannot david.johan...@heig-vd.ch wrote: Hi all, I have exactly the same problem. I use the Netbeans platform and the

Re: Maven is taking 103 minutes for each build in NB 6.7. Why?

2009-07-18 Thread Milos Kleint
check the command line build? does it take the same amount of time? Do you have the command line maven setup for use? (in tools/Options/Misc) does any of the repositories defined timeout? maybe some http proxy setup in netbeans? Milos On Thu, Jul 16, 2009 at 12:33 AM, Doug Graham

Re: Required goal not found: nbm:directory in org.codehaus.mojo:nbm-maven-plugin:3.0

2009-06-10 Thread Milos Kleint
greetings, the message could be some overlooked residue from the 3.0 rewrite. for the netbeans platform applications, you should have an assembly project with nbm-application packaging and should be able to run mvn clean install nbm:run-platform nbm:run-ide is a sub-optimal way of running a one

Re: Adding org.apache.log4j.logger to a Java project

2009-04-27 Thread Milos Kleint
Not sure I completely nderstand, buyt the hint that appears in Netbeans editor is searching the nexus repository index of the central repository and any other repository defined in the IDE. Milos On Wed, Apr 22, 2009 at 12:20 PM, JaimeCarmonaLoeches jaimecarmonaloec...@gmail.com wrote: Good

Re: Dependency on local web project war (netbeans)

2009-04-21 Thread Milos Kleint
On Tue, Apr 21, 2009 at 4:23 PM, Siegfried Goeschl siegfried.goes...@it20one.at wrote: Hi Pieter, you could use a project layout like this +--project +--shared +--client +--server A few quick remarks +) the server part should not depend on the client or the other way round -

Re: JavaFX Support - Discussion

2009-04-08 Thread Milos Kleint
I have created one, let see what happens. Feel free to vote for it and/or watch it. http://javafx-jira.kenai.com/browse/JFXC-3041 Milos On Wed, Apr 8, 2009 at 8:15 AM, Andrew Hughes ahhug...@gmail.com wrote: On the JavaFX side... http://javafx-jira.kenai.com/secure/Dashboard.jspa there's no

Re: JavaFX Support - Discussion

2009-04-07 Thread Milos Kleint
do you konw if there are any issues filed against javafx development tools with regard to maven support? Milos On Wed, Apr 8, 2009 at 7:09 AM, Andrew Hughes ahhug...@gmail.com wrote: Hi All, I'll openly admit that I'm stumped with the best way to implement support for JavaFX in maven.

[ANNOUNCEMENT] - NBM Maven Plugin 3.0 released

2009-02-25 Thread Milos Kleint
:1.1 org.codehaus.mojo.archetypes:netbeans-platform-application-archetype:1.1 Best Regards Milos Kleint - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org For additional commands, e-mail: users-h...@maven.apache.org

Re: Uneditable parameter: filters upgrading to 2.1-SNAPSHOT

2009-02-13 Thread Milos Kleint
use netbeans 6.5 and use the command line execution within netbeans. The embedded builds are broken on many levels and since 6.5 they are only used as backup if no maven binaries are found on your PATH. Milos On Thu, Feb 12, 2009 at 10:50 AM, Madeye m...@madeye.com wrote: I have a Maven

Re: Sharing my Maven repository

2009-01-26 Thread Milos Kleint
when you think of local repository, think of it as a cache of various remote repositories only. you should probably install a repository manager and start uploading artifacts there that are necessary for your projects. In the way that the repository manager supports.. not sure what that is

Re: debugging netbeans modules configured as maven projects

2009-01-21 Thread Milos Kleint
) Is this related to the fact that several parameters that were specified as required but were listed as having a default value were not passed? Nathan On Tue, Jan 20, 2009 at 12:05 PM, Milos Kleint mkle...@gmail.com wrote: what version of the nbm-maven-plugin are you using? there's nbm:run

Re: debugging netbeans modules configured as maven projects

2009-01-20 Thread Milos Kleint
what version of the nbm-maven-plugin are you using? there's nbm:run-ide goal that should allow debugging as well. http://mojo.codehaus.org/nbm-maven-plugin/run-ide-mojo.html Milos On Tue, Jan 20, 2009 at 7:49 PM, Nathan Rice exnihiloadnih...@gmail.com wrote: Hello, I would like to debug a

Re: jaxws-maven-plugin : Failed to execute wsgen

2008-11-18 Thread Milos Kleint
Not sure about eclipse, but the netbeans issue could be caused by the fact that the default build execution means in 6.1 was internal embedded maven. You had to explicitly mark that you want the project (or all projects) build with external maven. the embedded maven used is not 100% compatible

Re: toolchains in maven 2.1

2008-11-18 Thread Milos Kleint
Hello, please see http://www.netbeans.org/issues/show_bug.cgi?id=104974 for the current workaround in netbeans. please note that the future 7.0 release will include UI to set the JDK platform for the project (or set of projects) Regards Milos On Tue, Oct 7, 2008 at 9:33 PM, Michal Hlavac

Re: Maven plugin for netbeans

2008-10-31 Thread Milos Kleint
what version did you actually install. It should be 3.1.4 (or 3.1.5) in 6.1 and 4.0.x in netbeans 6.5 The error message you mention suggests you could have installed 3.0.x version or even older. Milos On Fri, Oct 31, 2008 at 3:22 PM, hordine [EMAIL PROTECTED] wrote: Hi everyone, I tried

Re: Netbeans plugin: how to configure repository location?

2008-10-20 Thread Milos Kleint
the Tools/Options shall have a panel where you can set the local repository. That will write in your ~/.m2/settings.xml file the appropriate settings entry.. Milos On Mon, Oct 20, 2008 at 5:33 PM, Dmitry S. Kravchenko [EMAIL PROTECTED] wrote: Hi! I'm a Maven newbie. I found a way to

Re: Re[2]: Netbeans plugin: how to configure repository location?

2008-10-20 Thread Milos Kleint
Under miscelaneous is maven. Alternatively you can edit the settings.xml file manually. Milos On Mon, Oct 20, 2008 at 6:18 PM, Dmitry S. Kravchenko [EMAIL PROTECTED] wrote: Hi, Milos! I can't locate it. Tools/Options has the common buttons at the top: General, Editor, Java Code, Fonts

Re: Issue with netbeans and maven2

2008-10-13 Thread Milos Kleint
works. Thank you very much for your kind support. Best regards, -- Julien Milos Kleint wrote: I assume your plugin is not in central repository. I recall there is/was an issue with extensions beling looked for in wrong repository (typically just repo1) instead of the declared ones

Re: Issue with netbeans and maven2

2008-10-10 Thread Milos Kleint
what version of maven support in netbeans you have? I suggest you try the 6.5 development builds (we're close to RC1, so the stability is pretty good), and instal the 4.0.x version of maven support from the update center. I recall I've done some fixes in this area, but still usecases still fails.

Re: Issue with netbeans and maven2

2008-10-10 Thread Milos Kleint
of extensions is set to true. Regards, -- Julien Milos Kleint wrote: what version of maven support in netbeans you have? I suggest you try the 6.5 development builds (we're close to RC1, so the stability is pretty good), and instal the 4.0.x version of maven support from the update center

Re: Issue with netbeans and maven2

2008-10-10 Thread Milos Kleint
ArtifactHandler) and a new LifecycleMapping (this is why we need extensions to be true actually). -- Julien Milos Kleint wrote: do you explicitly declare a version or you stick with RELEASE, LATEST or not defined? The workaround mentioned in the issues suggests to put explicit versions

Re: YUICompressor plugin going ape

2008-09-29 Thread Milos Kleint
additionally I would try running the build with command line maven (is settable in project's properties) In fact the command line maven execution will be default in netbeans 6.5 as the embedded build is encountering many problems. Incompatibility with the latest released bits, bugs, not having

Re: mvn --reactor option

2008-08-14 Thread Milos Kleint
on a related note, is there a way to give maven a list of project directories/poms and let it build the stuff together? Milos Brett Porter wrote: It finds all the POMs in the subdirectories and runs a reactor based on them. 2008/8/14 Dan Fabulich [EMAIL PROTECTED]: What does --reactor

Re: mvn --reactor option

2008-08-14 Thread Milos Kleint
is **/pom.xml) Cheers, Brett 2008/8/14 Milos Kleint [EMAIL PROTECTED]: on a related note, is there a way to give maven a list of project directories/poms and let it build the stuff together? Milos Brett Porter wrote: It finds all the POMs in the subdirectories and runs a reactor based

Re: Replacement of WAR lifecycle

2008-06-24 Thread Milos Kleint
FYI in netbeans you can let the IDE know that your custom packaging is basically a 'war' http://mevenide.codehaus.org/m2-site/mevenide2-netbeans/customizations.html no UI, but possible to set. Milos On 6/24/08, Piotr Oktaba [EMAIL PROTECTED] wrote: Hi, I have following problem. I would

Re: Tip about Skinny Wars

2008-06-04 Thread Milos Kleint
i'm wondering if the solution would render the war-path plugin obsolete? it's causing trouble in embedded use. http://issues.appfuse.org/browse/APF-645 Milos On 6/3/08, Arnaud HERITIER [EMAIL PROTECTED] wrote: Hi all, I would like to share with you a workaround I found for the problem of

Re: Maven in Netbeans

2008-05-29 Thread Milos Kleint
Hello, maybe related to http://jira.codehaus.org/browse/MEVENIDE-640 this issue? Milos On 5/29/08, theunsgis [EMAIL PROTECTED] wrote: HI Thanks this help. I still get the problem though , and i did upgrade to the latest maven 3.1.2, Can you tel me what this means : Result of

Re: Maven in Netbeans

2008-05-29 Thread Milos Kleint
. Is there some way of getting arround this? Thanks Milos Kleint wrote: Hello, maybe related to http://jira.codehaus.org/browse/MEVENIDE-640 this issue? Milos On 5/29/08, theunsgis [EMAIL PROTECTED] wrote: HI Thanks this help. I still get the problem though

Re: Maven in Netbeans

2008-05-29 Thread Milos Kleint
:1.1:exec at the moment. Thanks Theuns Milos Kleint wrote: I haven't figured that out yet. working on it. putting your local repository in C:/r could give you some air to breathe, but in general it's a failure on my part that I haven't seen this coming.. I'll have to come up with some

Re: Maven in Netbeans

2008-05-29 Thread Milos Kleint
for the reply What is the correct setting for Execute Goals in the maven projects properties version 3.1.2? Min is process-classes org.codehaus.mojo:exec-maven-plugin:1.1:exec at the moment. Thanks Theuns Milos Kleint wrote: I haven't figured that out yet. working

Re: Maven in Netbeans

2008-05-29 Thread Milos Kleint
Good to hear that. still there's a fixed limit to the workaround. When you add a few more dependencies, you reach the top again. :( Milos On Thu, May 29, 2008 at 12:49 PM, theunsgis [EMAIL PROTECTED] wrote: Your suggestion worked!!! Many Thanks Milos Kleint wrote: in your user

Re: Warnings and bugs

2008-05-28 Thread Milos Kleint
mojo is a maven plugin i think. The warning and messages are issued by maven embedder 2.1-SNAPSHOT as a sort of deprecation warnings (for 2.1) however they still should work fine. if not I would consider it a bug in maven. the netbeans integration needs to use the embedder version 2.1-SNAPSHOT as

Re: NetBeans6.0 mavenide plugin 3.1.1

2008-05-21 Thread Milos Kleint
On 5/21/08, John Coleman [EMAIL PROTECTED] wrote: Hi, One of our developers just reinstalled Netbeans6.0 and as a consequence pickud up the latest Maven plugin 3.1.1. Now his builds don't work because the active profile set in his settings.xml is ignored in preference to the active

Re: NetBeans6.0 mavenide plugin 3.1.1

2008-05-21 Thread Milos Kleint
a sample application that documents the problem, please file an issue, i'll look into it. Milos Regards, John -Original Message- From: Milos Kleint [mailto:[EMAIL PROTECTED] Sent: 21 May 2008 10:02 To: Maven Users List Subject: Re: NetBeans6.0 mavenide plugin 3.1.1

Re: Problem with exec mojo after update

2008-05-15 Thread Milos Kleint
in netbeans in project's properties dialog, go to the Actions panel and for run/debug project actions, correct the version of exec plugin to 1.1 Milos PS: an update to the maven support (version 3.1.2) wil be released in a week or two and will contain the new default value On 5/15/08, alex.g

[ANN] New version (3.1) of Maven support for NetBeans IDE

2008-05-07 Thread Milos Kleint
The Mevenide team is proud to present new version (3.1) of Maven support for NetBeans 6.0 and 6.1. This new major release includes: * Updated maven embedder binaries * Local and remote repository indexing, including browsing and searching your artifacts. * Web frameworks support

Re: Netbeans Rich Client Platform

2008-05-02 Thread Milos Kleint
create new modules. Milos On Fri, May 2, 2008 at 1:52 PM, Johannes Schneider [EMAIL PROTECTED] wrote: Hey, that looks great. I'll take a closer look. Thanks, Johannes On Wed, 2008-04-30 at 22:19 +0200, Milos Kleint wrote: groupId: org.codehaus.mojo.archetypes, one for single

Re: Netbeans Rich Client Platform

2008-04-30 Thread Milos Kleint
Well, I develop a bunch of modules for netbeans using maven. Not the same as platform app but similar, but I know companies which indeed develop platform apps. I've created and maintain the nbm-maven-plugin. http://mojo.codehaus.org/nbm-maven-plugin repository:

Re: [POLL] Default Value for File Encoding

2008-04-29 Thread Milos Kleint
definitely a) I can't help myself I'm a backward compatibility guy. Just a note, both solution allow one to have a reproducible builds if one cares. Benjamin and Herve (and others) have done a great job on making sure that when you set the encoding for the project it gets applied consistently

Re: continuous integration server

2008-04-13 Thread Milos Kleint
+1 on hudson netbeans.org is using it as well at http://deadlock.netbeans.org/hudson Milos On Sun, Apr 13, 2008 at 2:21 PM, Tom Huybrechts [EMAIL PROTECTED] wrote: Hudson, without a doubt. See https://hudson.dev.java.net/ or a live instance at http://hudson.jboss.org/hudson/ On Sun,

Re: Best practices for java version?

2008-04-07 Thread Milos Kleint
On Tue, Apr 1, 2008 at 1:54 AM, Dirk Olmes [EMAIL PROTECTED] wrote: Milos Kleint wrote: On Mon, Mar 31, 2008 at 2:57 AM, Dirk Olmes [EMAIL PROTECTED] wrote: Milos Kleint wrote: check the toolchains proposal that is supposed to address this issue. http://docs.codehaus.org

Re: Best practices for java version?

2008-03-30 Thread Milos Kleint
check the toolchains proposal that is supposed to address this issue. http://docs.codehaus.org/display/MAVEN/Toolchains Milos Kleint On Sun, Mar 30, 2008 at 7:58 PM, Wayne Fay [EMAIL PROTECTED] wrote: On 3/30/08, delbd [EMAIL PROTECTED] wrote: Yeah, that's what i thought. So we can consider

Re: Best practices for java version?

2008-03-30 Thread Milos Kleint
On Mon, Mar 31, 2008 at 2:57 AM, Dirk Olmes [EMAIL PROTECTED] wrote: Milos Kleint wrote: check the toolchains proposal that is supposed to address this issue. http://docs.codehaus.org/display/MAVEN/Toolchains The way the toolchain proposal chooses is somewhat doable with Maven right

Re: netbeans 6.0.1 + maven plugin in debian etch

2008-02-28 Thread Milos Kleint
You are referring to the maven support plugin in the IDE from default netbeans update center? does the new project wizard start a maven build or it shows no UI at all? I've never seen it before, feel free to file under jira.codehaus.org/browse/MEVENIDE with steps to reproduce, screenshots or

Re: netbeans 6.0.1 + maven plugin in debian etch

2008-02-28 Thread Milos Kleint
the are no errors messages in IDE. no log events ... Milos Kleint [EMAIL PROTECTED] wrote: You are referring to the maven support plugin in the IDE from default netbeans update center? does the new project wizard start a maven build or it shows no UI at all? I've never seen it before

Re: Mevenide vs. M2Eclipse, Q for Eclipse/IAM

2008-02-24 Thread Milos Kleint
mevenide for eclipse is for maven 1 only. Milos On Sun, Feb 24, 2008 at 8:52 PM, Chris [EMAIL PROTECTED] wrote: How about mevenide? Has anyone used it, know how it compares? Carlos Sanchez wrote: i've added a list of Q4E features to the table On Sun, Feb 24, 2008 at 10:04 AM,

Re: Mavenide NetBeans

2008-02-19 Thread Milos Kleint
3.1] NetBeans Maven2 project support [module org.codehaus.mevenide.netbeans/3 3.1] Regards, John -Original Message- From: Milos Kleint [mailto:[EMAIL PROTECTED] Sent: 18 February 2008 17:58 To: Maven Users List Subject: Re: Mavenide NetBeans only by upgrading

Re: Mavenide NetBeans

2008-02-19 Thread Milos Kleint
load NB6 up again it is not recognising Maven projects. Have I deleted too much perhaps? John -Original Message- From: Milos Kleint [mailto:[EMAIL PROTECTED] Sent: 19 February 2008 10:27 To: Maven Users List Subject: Re: Mavenide NetBeans I have filed it as bug against

Re: Mavenide NetBeans

2008-02-18 Thread Milos Kleint
only by upgrading to the latest trunk (daily builds at http://deadlock.netbeans.org/hudson/job/mevenide/) that one use the latest (January/February) 2.1-SNAPSHOT. Unfurtunately there's no way to put pre-2.1 stable releases as embedded version (due to design problems on 2.0.x branch) Please not

Re: [ANN] Maven Archetype Plugin 2.0-alpha-1 for Maven 2 Released

2008-02-15 Thread Milos Kleint
this could help. http://svn.codehaus.org/mojo/trunk/mojo/mojo-archetypes/netbeans-platform-app-archetype/ That's an archetype with module written to work with the archetype-plugin 2.0.x Milos On Fri, Feb 15, 2008 at 11:28 AM, Bohtvaroh [EMAIL PROTECTED] wrote: Raphaël Piéroni - 24/Jul/07

Re: Best way to CI multi-module projects

2008-02-12 Thread Milos Kleint
I have the whole multimodule setup built together in one job (in hudson). Additionally I have a separate local repository for the job.. That turned out to work best for me.. Milos On Feb 12, 2008 2:14 PM, Chris Schmidt [EMAIL PROTECTED] wrote: I don't normally cross-post messages, but I'm not

Re: generated sources convention

2007-12-20 Thread Milos Kleint
The convention is useful for the IDE integration that can check that target/generated-sources subfolders and add them to source path without actually requiring to build the project. Milos On Dec 20, 2007 2:43 PM, Kallin Nagelberg [EMAIL PROTECTED] wrote: Thanks guys. I've already got it

Re: generated sources convention

2007-12-20 Thread Milos Kleint
on this you MAY use whatever generate folder you like. The convention is to use target/generated-sources/generator-name, as it was required with maven1 IDE plugins to detect generated source folders. Nico. 2007/12/20, Milos Kleint [EMAIL PROTECTED]: The convention is useful for the IDE

Re: Where should I place UML-models in a Maven2 structure..

2007-12-01 Thread Milos Kleint
be much better if UML were just an additional aspect of any project type in Netbeans but it's not that way. I haven't used UML+maven extensibly, there used to some problems back in 5.0/5.5 times I think but everything seems to work without problems in 6.0. Milos Kleint On Nov 30, 2007 2:43 PM, Arne

Re: JUnit, NetBeans 6

2007-11-29 Thread Milos Kleint
. So there must be something different about your setup in comparison to mine. Please file a bug at jira.codehaus.org/browse/MEVENIDE with a sample project demonstating the problem attached or with detailed description of your setup. Milos Kleint On Nov 29, 2007 10:39 AM, Stephen Connolly [EMAIL

Re: JUnit, NetBeans 6

2007-11-28 Thread Milos Kleint
, Milos Kleint [EMAIL PROTECTED] wrote: what do you mean by old version of POM? netbeans will update the project definition if you changed the project's own pom, it will not currently do automatically when changing something in the chain of parent poms. Use the Reload action on project's

Re: JUnit, NetBeans 6

2007-11-28 Thread Milos Kleint
what do you mean by old version of POM? netbeans will update the project definition if you changed the project's own pom, it will not currently do automatically when changing something in the chain of parent poms. Use the Reload action on project's popup. However for build execution there is no

Re: The Maven team needs help from translators

2007-11-25 Thread Milos Kleint
it's in mojo's sandbox https://svn.codehaus.org/mojo/trunk/sandbox/l10n-maven-plugin/ Milos On 11/26/07, Wim Deblauwe [EMAIL PROTECTED] wrote: Nice plugin report. Is this plugin freely available? regards, Wim 2007/11/25, Dennis Lundberg [EMAIL PROTECTED]: Lukas Theussl has updated

Re: How to pass different options to javac during compile and testCompile goals?

2007-11-20 Thread Milos Kleint
/configuration /execution /executions /plugin /plugins /build properties sourceLevel1.4/sourceLevel testSourceLevel1.5/testSourceLevel /properties Regards Milos Kleint

Re: problem with maven embebed in netbeans 5.5.1

2007-11-19 Thread Milos Kleint
I didn't hear a problem description similar to yours so far. So it's probably a still-to-be-fixed issue. Milos On 11/19/07, logancillo [EMAIL PROTECTED] wrote: Milos, is this a resolved problem? i dont know if there is an open task on jira.codehauss... -- View this message in context:

Re: Mavenide and NetBeans 6 RC1

2007-11-18 Thread Milos Kleint
. Regards Milos Kleint On Nov 16, 2007 5:29 PM, johne [EMAIL PROTECTED] wrote: Mavenide is failing for me on Netbeans 6.0 RC1. I am using a piece of AppFuse (warpath plugin) that has a dependency requirement of Maven 2.0.6, but Mavenide in NB 6.0 RC1 is currently giving a failure

Re: problem with maven embebed in netbeans 5.5.1

2007-11-18 Thread Milos Kleint
does the same happen when invoking on the command line? worth filing as issue at http://jira.codehaus.org/browse/MEVENIDE Milos On Nov 14, 2007 4:06 PM, logancillo [EMAIL PROTECTED] wrote: hi everybody, i`using netbeans 5.5.1 with jdk 1.6. App server is embebed tomcat 5.5.17 and i `m having

Re: How to create a Mojo that controls an ANT task

2007-11-13 Thread Milos Kleint
i've done something along those lines with the mojo's nbm-maven-plugin. I call a bunch of ant tasks for building netbeans modules. https://svn.codehaus.org/mojo/trunk/mojo/nbm-maven-plugin/ Milos On 11/12/07, Pedro Viegas [EMAIL PROTECTED] wrote: Hi there guys, I am trying to create a Maven

  1   2   3   >