Author: xavier
Date: Fri Mar 9 05:52:28 2007
New Revision: 516410
URL: http://svn.apache.org/viewvc?view=rev&rev=516410
Log:
first draft for apache con 07 europe presentation
Added:
incubator/ivy/core/trunk/doc/presentations/
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/ (with
props)
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/ (with
props)
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/build.xml
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/ivyconf.xml
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/ (with
props)
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/build.xml
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/ivy.xml
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/ivyconf.xml
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/README.txt
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/slides.ppt
(with props)
Propchange: incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Mar 9 05:52:28 2007
@@ -0,0 +1 @@
+cache
Propchange: incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Mar 9 05:52:28 2007
@@ -0,0 +1 @@
+lib
Added:
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/build.xml
URL:
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/build.xml?view=auto&rev=516410
==============================================================================
--- incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/build.xml
(added)
+++ incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/build.xml
Fri Mar 9 05:52:28 2007
@@ -0,0 +1,33 @@
+<project name="demo1" default="retrieve-deps"
xmlns:ivy="antlib:org.apache.ivy.ant">
+ <condition property="ivy.home" value="${env.IVY_HOME}">
+ <isset property="env.IVY_HOME" />
+ </condition>
+ <property name="ivy.home" value="${user.home}/.ivy" />
+ <property name="ivy.jar.dir" value="${ivy.home}/jars" />
+ <property name="ivy.jar.file" value="${ivy.jar.dir}/ivy.jar" />
+
+ <target name="init-ivy">
+ <mkdir dir="${ivy.jar.dir}"/>
+ <!-- download Ivy from web site so that it can be used even
without any special installation -->
+ <!-- use a non standard location during migration to apache -->
+ <get src="http://incubator.apache.org/ivy/downloads/latest/ivy.jar"
+ dest="${ivy.jar.file}" usetimestamp="true"/>
+ <!-- try to load ivy here from local ivy dir, in case the user has not
already dropped
+ it into ant's lib dir (note that the latter copy will always take
precedence).
+ We will not fail as long as local lib dir exists (it may be
empty) and
+ ivy is in at least one of ant's lib dir or the local lib dir. -->
+ <path id="ivy.lib.path">
+ <fileset dir="${ivy.jar.dir}" includes="*.jar"/>
+ </path>
+ <taskdef resource="org/apache/ivy/ant/antlib.xml"
+ uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path"/>
+ </target>
+
+ <target name="retrieve-deps" depends="init-ivy">
+ <ivy:retrieve organisation="org.apache.struts"
+ module="struts2-core"
+ revision="2.0.5"
+ conf="default"
+ inline="true"/>
+ </target>
+</project>
\ No newline at end of file
Added:
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/ivyconf.xml
URL:
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/ivyconf.xml?view=auto&rev=516410
==============================================================================
---
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/ivyconf.xml
(added)
+++
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/ivyconf.xml
Fri Mar 9 05:52:28 2007
@@ -0,0 +1,8 @@
+<ivyconf>
+ <conf defaultResolver="maven2" defaultCache="../cache" />
+ <resolvers>
+ <ibiblio name="maven2" m2compatible="true"
+ root="http://repo1.maven.org/maven2" />
+ </resolvers>
+</ivyconf>
+
Propchange: incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Mar 9 05:52:28 2007
@@ -0,0 +1,2 @@
+lib
+report
Added:
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/build.xml
URL:
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/build.xml?view=auto&rev=516410
==============================================================================
--- incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/build.xml
(added)
+++ incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/build.xml
Fri Mar 9 05:52:28 2007
@@ -0,0 +1,31 @@
+<project name="demo2" default="retrieve-deps"
xmlns:ivy="antlib:org.apache.ivy.ant">
+ <condition property="ivy.home" value="${env.IVY_HOME}">
+ <isset property="env.IVY_HOME" />
+ </condition>
+ <property name="ivy.home" value="${user.home}/.ivy" />
+ <property name="ivy.jar.dir" value="${ivy.home}/jars" />
+ <property name="ivy.jar.file" value="${ivy.jar.dir}/ivy.jar" />
+
+ <target name="init-ivy">
+ <mkdir dir="${ivy.jar.dir}"/>
+ <!-- download Ivy from web site so that it can be used even
without any special installation -->
+ <!-- use a non standard location during migration to apache -->
+ <get src="http://incubator.apache.org/ivy/downloads/latest/ivy.jar"
+ dest="${ivy.jar.file}" usetimestamp="true"/>
+ <!-- try to load ivy here from local ivy dir, in case the user has not
already dropped
+ it into ant's lib dir (note that the latter copy will always take
precedence).
+ We will not fail as long as local lib dir exists (it may be
empty) and
+ ivy is in at least one of ant's lib dir or the local lib dir. -->
+ <path id="ivy.lib.path">
+ <fileset dir="${ivy.jar.dir}" includes="*.jar"/>
+ </path>
+ <taskdef resource="org/apache/ivy/ant/antlib.xml"
+ uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path"/>
+ </target>
+
+ <target name="retrieve-deps" depends="init-ivy">
+ <ivy:retrieve
+ pattern="lib/[conf]/[artifact]-[revision].[ext]"/>
+ <ivy:report todir="report"/>
+ </target>
+</project>
\ No newline at end of file
Added: incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/ivy.xml
URL:
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/ivy.xml?view=auto&rev=516410
==============================================================================
--- incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/ivy.xml
(added)
+++ incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/ivy.xml
Fri Mar 9 05:52:28 2007
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ivy-module version="1.4">
+ <info organisation="org.apache.ivy"
+ module="ivy-demo-2">
+ </info>
+ <configurations>
+ <conf name="runtime"/>
+ <conf name="test"/>
+ </configurations>
+ <dependencies>
+ <dependency org="org.apache.struts"
+ name="struts2-core"
+ rev="2.0.5"
+ conf="runtime->default"/>
+ <dependency org="junit"
+ name="junit"
+ rev="3.8.1"
+ conf="test->default"/>
+ </dependencies>
+</ivy-module>
Added:
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/ivyconf.xml
URL:
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/ivyconf.xml?view=auto&rev=516410
==============================================================================
---
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/ivyconf.xml
(added)
+++
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/ivyconf.xml
Fri Mar 9 05:52:28 2007
@@ -0,0 +1,8 @@
+<ivyconf>
+ <conf defaultResolver="maven2" defaultCache="../cache" />
+ <resolvers>
+ <ibiblio name="maven2" m2compatible="true"
+ root="http://repo1.maven.org/maven2" />
+ </resolvers>
+</ivyconf>
+
Added:
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/README.txt
URL:
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/README.txt?view=auto&rev=516410
==============================================================================
--- incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/README.txt
(added)
+++ incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/README.txt
Fri Mar 9 05:52:28 2007
@@ -0,0 +1,3 @@
+To run the demos you just need java 1.4+ and ant 1.6.2+ installed.
+
+Then go in the demo directory and type "ant" on the command line.
Added: incubator/ivy/core/trunk/doc/presentations/apache-con-2007/slides.ppt
URL:
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/slides.ppt?view=auto&rev=516410
==============================================================================
Binary file - no diff available.
Propchange:
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/slides.ppt
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream