Develop on jGuard with Netbeans
Netbeans seems to be the best IDE for maven2 projects and modules, with the help of the mevenide plugin. follow the installation guide to install megenide on Netbeans.define the svn repository
select the folder to checkout
open the jguard master project
open the jguard modules
resulting projects tree
define the settings.xml
jguard needs to use a java 4 and a java 5 compiler to build its sources. to bound the variable defined in the related pom.xml files, you have to insert into your maven2 settings.xml(located into your ~/.m2 directory) file the corrresponding variables.<?xml version="1.0" encoding="UTF-8"?> <settings> <servers> <server> <id>jGuard-stable</id> <username>diabolo512</username> <password>mypwd</password> </server> </servers> <profiles> <profile> <id>default</id> <properties> <JAVA_4_HOME>/usr/lib/jvm/j2sdk1.4.2_13-32bits</JAVA_4_HOME> <JAVA_5_HOME>/usr/lib/jvm/jdk1.5.0_10</JAVA_5_HOME> </properties> </profile> </profiles> <activeProfiles> <activeProfile>default</activeProfile> </activeProfiles> </settings>
launch the maven 2 build
pressF11
Version 1.25 last modified by Charles Gay on 11/04/2007 at 23:44
Comments: 0