Our software is written in Java and comprise many (7) projects.
These projects are Netbeans ant projects.
I'm considering to converting them to maven2.
Where can I find some hints for doing such ... |
If I run a Maven build in NetBeans which starts a long-running Java process (for example a HTTP listener or a JMX agent), terminating the process seems to have no effect. ... |
How can I configure netbeans 6.7 to enable code coverage for maven2 projects?
I tried tinkering with the following http://sharebear.co.uk/blog/2009/01/21/code-coverage-maven-projects-netbeans/ though had no luck
Thanks
|
I use Maven plugin for NetBeans IDE. But i want to know how to generate a Maven site from Maven plug-in in NetBeas IDE ?
What should i set up in ... |
Does anybody have experience working with JavaRebel, specifically for a large web application built using Maven? There is a JavaRebel plugin for Maven that seems under-documented, does anybody have comments ... |
I have created a maven project with j2me-archetype using netbeans. It creates a project with a default MIDLet (SampleMIDlet.java).
But when I try to run the project it says that No ... |
When I run the application, it says:
[resources:resources]
[WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent!
Copying 1 resource
[compiler:compile]
No sources to compile
[resources:testResources]
[WARNING] Using platform encoding (Cp1252 actually) ...
|
|
I mavenize my java-project and don't understand, how add in it native libraries. In my not-maven project i did it via CLASSPATH. I use NetBeans and maven in it.
|
I am using NetBeans 6.9 Beta and I would like to accomplish the following:
- Set up a project representing the main application using Maven (for instance "Maven Project", "Maven NetBeans Application")
- Ideally, the ...
|
I'd like to have a single project pom but have my GUI tests always run when I'm invoking JUnit on Netbeans, but have them conditional (on an environment variable?) when building ... |
I have strange problem with my Neatens+Maven installation. This is the shortest code to reproduce the problem:
public class App
{
public static void main( String[] args )
...
|
In my Netbeans Maven project, I have the following code in the main method:
FileInputStream in = new FileInputStream("database.properties");
but always get a file not found error.
I have put the file in src/main/resources ... |
Hi actually I am trying to create maven project in netbeans but when i am going to build it fails and give message as "Error building POM (may not be this ... |
NetBeans had a really cool feature that would allow you to view all of a Maven project's dependencies as a graph. Well, I recently upgraded from 6.8 to 6.9, and while ... |
I'm trying to refer to a properties file in my NetBeans project using Maven.
While developing, I used the following code:
MyClass.loadProperties("src/main/resources/neo4j.properties");
This worked fine.
Now that I've just built my project to a JAR, ... |
Is there an easy way to tell Netbeans (6.9) what page to open when I "run" my Maven Enterprise project? It opens a totally wrong context path. I guess there are ... |
I'd like to have a button to run (custom) Maven targets in NetBeans 6.9. Hot-keys would also be nice. Is this possible?
If it is not possible: is there something like a ... |
I have 2 completely separate projects where one depends on the other. I've very recently mavenized the main project but can mavenise the dependency if absolutely necessary.
Originally these were Netbeans projects, ... |
I am using Netbeans and Maven projects.
In some case Netbeans show me compilation failures (red ballon) BUT Maven compile everything without any problem!
What can be the reason of this difference.
I already ... |
I am trying to add aspectj to a maven project using java 6.0. Browsing around I found 2 maven plugins, none of which works the way I would expect.
The first one ... |
I've got a Maven project that runs perfectly inside Netbeans. How can I execute the application from the command-line (without Netbeans)?
|
I do not want to install few jars into repository(local/remote) , i have few jar files located in
c:\work\projects\myapp\src\main\webapp\WEB-INF\lib\test.jar
c:\work\projects\myapp\src\main\webapp\WEB-INF\lib\test2.jar
how to include it into my project when open/edit with netbeans?
|
I've been trying to set up a Java EE 6 Maven project via New Project -> Maven -> Maven Enterprise Application.
However, when I try to run the application I've been running ... |
I've been banging my head against a wall for about an hour on this: I'm trying to pass a simple property (java.library.path) to exec-maven-plugin. The goal is to have it integrate ... |
I've started a new Maven project in NetBeans, accepting all the defaults. The POM, with all the JAR dependencies stripped out, is cut-n-pasted at the bottom of this question.
The application ... |
I'm trying to debug maven tests in NetBeans 6.9.1. Does anyone know how to go about doing this? The reason I ask is because if I run my tests using Maven, ... |
I've got a Maven project under Netbeans that requires a non-default configuration because it is platform specific. If the user does not pick a configuration I have no way of knowing ... |
I am using maven 3.0.2 version.
mvn --version works fine on command line but when I try
mvn install it does not work & shows following error.
Z:\dev\hector rantav>mvn install
[INFO] Scanning ...
|
I download a jar to my local reposotory but every times i compile netbeans try to download it why can be this happen i try to change dependecy scope but ... |
I want to issue commands like -Dmaven.test.skip=true -Dcheckstyle.skip
|
I have a java fx project created in Netbeans IDE and I need to change it to a maven based project for the sake of uniform build process(company policies).
Is there any ... |
I have a flex maven project written by externel company that I need to modify. I dont have a Flash Builder licence yet (it takes forever to buy anythng in my ... |
While building the project, the console shows that the source packages were compiled(the one inside px10 package)
However if I see the target files generated, none of the classes are there from ... |
Looking for advice or a bit of help, to point me in the right direction.
I need to connect to a Microsoft SQL Server from a Java program, however, the ... |