werken 2002/06/27 22:09:14
Modified: . project-ng.xml
src/java/org/apache/maven/app Maven.java
Log:
* disabled BuildTest for maven-ng.
* XMLOutput escaping disabled. Should see > and < now
instead of < and > and other XML escapees.
Revision Changes Path
1.14 +3 -0 jakarta-turbine-maven/project-ng.xml
Index: project-ng.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-maven/project-ng.xml,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- project-ng.xml 28 Jun 2002 04:22:14 -0000 1.13
+++ project-ng.xml 28 Jun 2002 05:09:14 -0000 1.14
@@ -519,6 +519,9 @@
<includes>
<include>**/*Test.java</include>
</includes>
+ <excludes>
+ <exclude>**/*BuildTest.java</exclude>
+ </excludes>
</unitTest>
<!-- Integration unit test classes -->
1.36 +4 -4 jakarta-turbine-maven/src/java/org/apache/maven/app/Maven.java
Index: Maven.java
===================================================================
RCS file: /home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/app/Maven.java,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- Maven.java 28 Jun 2002 04:22:14 -0000 1.35
+++ Maven.java 28 Jun 2002 05:09:14 -0000 1.36
@@ -508,7 +508,7 @@
* reading the project descriptor.
*/
public void initializeCore(String[] args)
- throws ParseException, MalformedURLException, DescriptorException
+ throws ParseException, IOException, MalformedURLException,
DescriptorException
{
setMavenHome(new File(System.getProperty("maven.home")));
@@ -615,13 +615,13 @@
/** Initialize the IO streams.
*/
- private void initializeIO()
+ private void initializeIO() throws IOException
{
this.consoleOut = System.out;
this.consoleErr = System.err;
this.writer = new OutputStreamWriter(this.consoleOut);
- this.output = XMLOutput.createXMLOutput(writer);
+ this.output = XMLOutput.createXMLOutput(writer,false);
GrantProject project = getAntProject();
@@ -1250,7 +1250,7 @@
CLIManager.displayHelp();
done = true;
}
- catch (MalformedURLException e)
+ catch (IOException e)
{
System.err.println(e.getLocalizedMessage());
done = true;
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>