Author: jvanzyl
Date: Mon Oct 3 09:56:50 2005
New Revision: 293390
URL: http://svn.apache.org/viewcvs?rev=293390&view=rev
Log: (empty)
Modified:
maven/components/trunk/maven-site/src/site/apt/guides/getting-started/index.apt
maven/components/trunk/maven-site/src/site/resources/ant/build-a1.xml
maven/components/trunk/maven-site/src/site/resources/ant/build-a2.xml
maven/components/trunk/maven-site/src/site/resources/ant/build-a3.xml
maven/components/trunk/maven-site/src/site/resources/ant/build-a4.xml
Modified:
maven/components/trunk/maven-site/src/site/apt/guides/getting-started/index.apt
URL:
http://svn.apache.org/viewcvs/maven/components/trunk/maven-site/src/site/apt/guides/getting-started/index.apt?rev=293390&r1=293389&r2=293390&view=diff
==============================================================================
---
maven/components/trunk/maven-site/src/site/apt/guides/getting-started/index.apt
(original)
+++
maven/components/trunk/maven-site/src/site/apt/guides/getting-started/index.apt
Mon Oct 3 09:56:50 2005
@@ -202,7 +202,7 @@
standard conventions the POM above is very small and you haven't explicity
had to tell Maven where any of
your sources are or where the output should go. By following the standard
Maven conventions you can get
a lot done with very little effort! Just as a comparison lets take a look at
what you might have had to do
- in {{{http://ant.apache.org}Ant}} to accomplish the same
{{{ant/build-a1.xml}thing}}.
+ in {{{http://ant.apache.org}Ant}} to accomplish the same
{{{../../ant/build-a1.xml}thing}}.
Now this is simply to compile a single application source and the Ant script
shown is pretty much the same
size as the POM shown above. But we'll see how much more we can do with just
that simple POM above!
Modified: maven/components/trunk/maven-site/src/site/resources/ant/build-a1.xml
URL:
http://svn.apache.org/viewcvs/maven/components/trunk/maven-site/src/site/resources/ant/build-a1.xml?rev=293390&r1=293389&r2=293390&view=diff
==============================================================================
--- maven/components/trunk/maven-site/src/site/resources/ant/build-a1.xml
(original)
+++ maven/components/trunk/maven-site/src/site/resources/ant/build-a1.xml Mon
Oct 3 09:56:50 2005
@@ -7,6 +7,11 @@
<src>
<pathelement location="src/main/java"/>
</src>
+ <classpath>
+ <fileset dir="${libdir}">
+ <include name="*.jar"/>
+ </fileset>
+ </classpath>
</javac>
</target>
</project>
Modified: maven/components/trunk/maven-site/src/site/resources/ant/build-a2.xml
URL:
http://svn.apache.org/viewcvs/maven/components/trunk/maven-site/src/site/resources/ant/build-a2.xml?rev=293390&r1=293389&r2=293390&view=diff
==============================================================================
--- maven/components/trunk/maven-site/src/site/resources/ant/build-a2.xml
(original)
+++ maven/components/trunk/maven-site/src/site/resources/ant/build-a2.xml Mon
Oct 3 09:56:50 2005
@@ -8,6 +8,11 @@
<src>
<pathelement location="src/main/java"/>
</src>
+ <classpath>
+ <fileset dir="${libdir}">
+ <include name="*.jar"/>
+ </fileset>
+ </classpath>
</javac>
</target>
<target name="test-compile">
@@ -18,7 +23,7 @@
</src>
<classpath>
<fileset dir="${libdir}">
- <include name="junit-3.8.1.jar"/>
+ <include name="*.jar"/>
</fileset>
</classpath>
</javac>
Modified: maven/components/trunk/maven-site/src/site/resources/ant/build-a3.xml
URL:
http://svn.apache.org/viewcvs/maven/components/trunk/maven-site/src/site/resources/ant/build-a3.xml?rev=293390&r1=293389&r2=293390&view=diff
==============================================================================
--- maven/components/trunk/maven-site/src/site/resources/ant/build-a3.xml
(original)
+++ maven/components/trunk/maven-site/src/site/resources/ant/build-a3.xml Mon
Oct 3 09:56:50 2005
@@ -5,6 +5,11 @@
<src>
<pathelement location="src/main/java"/>
</src>
+ <classpath>
+ <fileset dir="${libdir}">
+ <include name="*.jar"/>
+ </fileset>
+ </classpath>
</javac>
</target>
<target name="test-compile" description="o Compile the code"
depends="get-deps">
Modified: maven/components/trunk/maven-site/src/site/resources/ant/build-a4.xml
URL:
http://svn.apache.org/viewcvs/maven/components/trunk/maven-site/src/site/resources/ant/build-a4.xml?rev=293390&r1=293389&r2=293390&view=diff
==============================================================================
--- maven/components/trunk/maven-site/src/site/resources/ant/build-a4.xml
(original)
+++ maven/components/trunk/maven-site/src/site/resources/ant/build-a4.xml Mon
Oct 3 09:56:50 2005
@@ -5,6 +5,11 @@
<src>
<pathelement location="src/main/java"/>
</src>
+ <classpath>
+ <fileset dir="${libdir}">
+ <include name="*.jar"/>
+ </fileset>
+ </classpath>
</javac>
</target>
<target name="test-compile" description="o Compile the code"
depends="get-deps">
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]