RE: [E] Re: maven-ant-tasks proxy issue

2016-06-16 Thread Urena, Jose M (JOSE)
If you have a project's "local" settings.xml You can add --settings to have maven-ant-tasks use that for options like mirror and proxy without using ANT_OPTS or JAVA_OPTS -Original

RE: How to use a variable value in ANT refid

2014-09-12 Thread Urena, Jose M (JOSE)
If you are using ant 1.8.2 or higher These work for me -Original Message- From: WebServ

RE: the classes in rt.jar cannot be found during ant build

2012-04-06 Thread Urena, Jose M (Jose)
try removing the spaces from the PATH install JDK to the top of your c:\ c:\jdk1.6.0_24 or set JAVA_HOME using short ~ names for path set JAVA_HOME=c:\progra~1\java\jdk1.6.0_24 -Original Message- From: xsli2 [mailto:xs...@yahoo.com] Sent: Monday, April 02, 2012 5:02 PM To: user@ant.a

RE: How can I pass -Xlint to javac ?

2011-09-11 Thread Urena, Jose M (Jose)
Xlint is only valid for newer compilers if you are concerned that code might be compiled with different JDK versions or from different vendors then compilerarg should have the compiler attribute that will signal when javac should look at the value/line -Original Message- From:

RE: Ant not respecting JAVA_HOME

2011-08-22 Thread Urena, Jose M (Jose)
another tip, it is not pretty. in windows when paths have spaces, you can try using windows short names if you only have 1 dir that starts with "c:\Program" then the short name for "Program Files" is "progra~1" set JAVA_HOME="C:/progra~1/Java/jdk.1.6.0_23" the "dir /x c:\" can give you the sh

RE: Change the Java Compiler

2011-03-11 Thread Urena, Jose M
ant -Dbuild.executable=c:/jdk170/bin/javac -Dsource=1.7 -Dtarget=1.7 -f build.xml build.xml or use -Dbuild.compiler=javac1.7 http://ant.apache.org/manual/Tasks/javac.html -Original Message- From: Thomas Kluge [mailto:m6kl...@uni-jena.de] Sent: Wednesday, March 09, 2011 12:56 PM

RE: fileset of cvs changed files

2010-12-31 Thread Urena, Jose M
have you tried the built in + the xslt in style="${ant.home}/etc/changelog.xsl" or style="${ant.home}/etc/changelog-text.xsl" it needs a starting tag or branch and will report all files changed since tag/branch was created -Original Message---

RE: Can't load definitions unless target is executed as root

2010-12-17 Thread Urena, Jose M
ownership is not enough for unix filesystems, the group must have read for files and read+execute for dirs -Original Message- From: Nathan King [mailto:nking...@yahoo.com] Sent: Thursday, December 16, 2010 2:52 PM To: user@ant.apache.org Subject: Can't load definitions unless target is ex