Author: xavier
Date: Tue May  1 08:58:35 2007
New Revision: 534138

URL: http://svn.apache.org/viewvc?view=rev&rev=534138
Log:
some ApacheCon presentation updates before the talk:
- add demo 3
- slight review of slides
- upgrade demos to 2.0 alpha1

Added:
    incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/
    incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/common/
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/common/build.properties
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/common/build.xml
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/common/ivysettings.xml
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/build.properties
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/build.xml
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/ivy.xml
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/src/
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/src/demo3A/
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/src/demo3A/Demo3A.java
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/build.properties
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/build.xml
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/ivy.xml
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/src/
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/src/demo3B/
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/src/demo3B/Demo3B.java
Modified:
    incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/build.xml
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/ivysettings.xml
    incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/build.xml
    
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/ivysettings.xml
    incubator/ivy/core/trunk/doc/presentations/apache-con-2007/slides.ppt

Modified: 
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=diff&rev=534138&r1=534137&r2=534138
==============================================================================
--- incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/build.xml 
(original)
+++ incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/build.xml 
Tue May  1 08:58:35 2007
@@ -28,7 +28,7 @@
        <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";
+       <get 
src="http://people.apache.org/~xavier/ivy/2.0.0-alpha-1-incubating/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).
@@ -42,6 +42,8 @@
     </target>
        
        <target name="retrieve-deps" depends="init-ivy">
+               <!-- we do nothing special for the settings, by default Ivy 
will look into the current directory
+                 and check if an ivysettings.xml is available. If none is 
present, default settings will be used -->
                 <ivy:retrieve  organisation="org.apache.struts" 
                                module="struts2-core" 
                                revision="2.0.5" 

Modified: 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/ivysettings.xml
URL: 
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/ivysettings.xml?view=diff&rev=534138&r1=534137&r2=534138
==============================================================================
--- 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/ivysettings.xml
 (original)
+++ 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/1/ivysettings.xml
 Tue May  1 08:58:35 2007
@@ -17,10 +17,9 @@
    under the License.    
 -->
 <ivysettings>
-        <settings defaultResolver="maven2" defaultCache="../cache" />
-        <resolvers>
-                       <ibiblio name="maven2" m2compatible="true" 
-                                        root="http://repo1.maven.org/maven2"; />
-        </resolvers>
+       <!-- we define our own cache to make the demo independent from default 
cache location -->
+    <settings defaultCache="../cache" />
+       <!-- include default settings which are ok for the demo -->
+       <include url="${ivy.default.settings.dir}/ivysettings.xml"/>
 </ivysettings>
 

Modified: 
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=diff&rev=534138&r1=534137&r2=534138
==============================================================================
--- incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/build.xml 
(original)
+++ incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/build.xml 
Tue May  1 08:58:35 2007
@@ -28,7 +28,7 @@
        <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";
+       <get 
src="http://people.apache.org/~xavier/ivy/2.0.0-alpha-1-incubating/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).
@@ -42,7 +42,8 @@
     </target>
        
        <target name="retrieve-deps" depends="init-ivy">
-                <ivy:retrieve 
+               <!-- here we don't need to specify which ivy file to use, 
because the default (ivy.xml) is ok -->
+               <ivy:retrieve 
                        pattern="lib/[conf]/[artifact]-[revision].[ext]"/>
                <ivy:report todir="report"/>
        </target>

Modified: 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/ivysettings.xml
URL: 
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/ivysettings.xml?view=diff&rev=534138&r1=534137&r2=534138
==============================================================================
--- 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/ivysettings.xml
 (original)
+++ 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/2/ivysettings.xml
 Tue May  1 08:58:35 2007
@@ -17,10 +17,9 @@
    under the License.    
 -->
 <ivysettings>
-        <settings defaultResolver="maven2" defaultCache="../cache" />
-        <resolvers>
-                       <ibiblio name="maven2" m2compatible="true" 
-                                        root="http://repo1.maven.org/maven2"; />
-        </resolvers>
+       <!-- we define our own cache to make the demo independent from default 
cache location -->
+    <settings defaultCache="../cache" />
+       <!-- include default settings which are ok for the demo -->
+       <include url="${ivy.default.settings.dir}/ivysettings.xml"/>
 </ivysettings>
 

Added: 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/common/build.properties
URL: 
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/common/build.properties?view=auto&rev=534138
==============================================================================
--- 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/common/build.properties
 (added)
+++ 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/common/build.properties
 Tue May  1 08:58:35 2007
@@ -0,0 +1,24 @@
+#       ***************************************************************
+#       * Licensed to the Apache Software Foundation (ASF) under one
+#       * or more contributor license agreements.  See the NOTICE file
+#       * distributed with this work for additional information
+#       * regarding copyright ownership.  The ASF licenses this file
+#       * to you under the Apache License, Version 2.0 (the
+#       * "License"); you may not use this file except in compliance
+#       * with the License.  You may obtain a copy of the License at
+#       * 
+#       *   http://www.apache.org/licenses/LICENSE-2.0
+#       * 
+#       * Unless required by applicable law or agreed to in writing,
+#       * software distributed under the License is distributed on an
+#       * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#       * KIND, either express or implied.  See the License for the
+#       * specific language governing permissions and limitations
+#       * under the License.
+#       ***************************************************************
+lib.dir = ${basedir}/lib
+build.dir = ${basedir}/build
+classes.dir = ${build.dir}/classes
+src.dir = ${basedir}/src
+
+jar.file = ${build.dir}/${ant.project.name}.jar

Added: 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/common/build.xml
URL: 
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/common/build.xml?view=auto&rev=534138
==============================================================================
--- 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/common/build.xml
 (added)
+++ 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/common/build.xml
 Tue May  1 08:58:35 2007
@@ -0,0 +1,84 @@
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.    
+-->
+<project name="demo3-common" xmlns:ivy="antlib:org.apache.ivy.ant">
+       <property file="${common.dir}/build.properties"/>
+
+       <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://people.apache.org/~xavier/ivy/2.0.0-alpha-1-incubating/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="resolve-deps" depends="init-ivy">
+               <ivy:configure file="${common.dir}/ivysettings.xml" />
+               <ivy:resolve
+                       file="${basedir}/ivy.xml" useOrigin="true"/>
+               <!-- here we build an ant path directly from artifacts in Ivy 
cache -->
+               <ivy:cachepath pathid="lib.path.id" conf="runtime" 
useOrigin="true" />
+       </target>
+       
+       <target name="ivy-report" depends="resolve-deps">
+               <ivy:report todir="report"/>
+       </target>
+       
+       <target name="compile" depends="resolve-deps">
+        <mkdir dir="${classes.dir}" />
+        <javac srcdir="${src.dir}" destdir="${classes.dir}" 
classpathref="lib.path.id" debug="true" />
+       </target>
+
+    <target name="jar" depends="compile" description="--> make a jar file for 
this project">
+        <jar destfile="${jar.file}">
+            <fileset dir="${classes.dir}" />
+        </jar>
+    </target>
+       
+    <target name="publish-local" depends="jar" description="--> publish this 
project in the local ivy repository">
+               <tstamp>
+                       <format property="now" pattern="yyyyMMddHHmmss"/>
+               </tstamp>
+        <property name="revision" value="local-${now}"/>
+       <ivy:publish artifactspattern="${build.dir}/[artifact].[ext]" 
+                                  resolver="local"
+                                  pubrevision="${revision}"
+                                          pubdate="${now}"
+                                  status="integration"
+                                                  forcedeliver="true"
+       />
+        <echo message="project ${ant.project.name} published locally with 
version ${revision}" />
+    </target>
+
+</project>

Added: 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/common/ivysettings.xml
URL: 
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/common/ivysettings.xml?view=auto&rev=534138
==============================================================================
--- 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/common/ivysettings.xml
 (added)
+++ 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/common/ivysettings.xml
 Tue May  1 08:58:35 2007
@@ -0,0 +1,25 @@
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.    
+-->
+<ivysettings>
+       <!-- we define our own cache to make the demo independent from default 
cache location -->
+    <settings defaultCache="${ivy.settings.dir}/../../cache" />
+       <!-- include default settings which are ok for the demo -->
+       <include url="${ivy.default.settings.dir}/ivysettings.xml"/>
+</ivysettings>
+

Added: 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/build.properties
URL: 
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/build.properties?view=auto&rev=534138
==============================================================================
--- 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/build.properties
 (added)
+++ 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/build.properties
 Tue May  1 08:58:35 2007
@@ -0,0 +1,20 @@
+#       ***************************************************************
+#       * Licensed to the Apache Software Foundation (ASF) under one
+#       * or more contributor license agreements.  See the NOTICE file
+#       * distributed with this work for additional information
+#       * regarding copyright ownership.  The ASF licenses this file
+#       * to you under the Apache License, Version 2.0 (the
+#       * "License"); you may not use this file except in compliance
+#       * with the License.  You may obtain a copy of the License at
+#       * 
+#       *   http://www.apache.org/licenses/LICENSE-2.0
+#       * 
+#       * Unless required by applicable law or agreed to in writing,
+#       * software distributed under the License is distributed on an
+#       * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#       * KIND, either express or implied.  See the License for the
+#       * specific language governing permissions and limitations
+#       * under the License.
+#       ***************************************************************
+wkspace.dir = ${basedir}/..
+common.dir = ${wkspace.dir}/common

Added: 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/build.xml
URL: 
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/build.xml?view=auto&rev=534138
==============================================================================
--- 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/build.xml
 (added)
+++ 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/build.xml
 Tue May  1 08:58:35 2007
@@ -0,0 +1,23 @@
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.    
+-->
+<project name="demo3A" default="publish-local">
+       <property file="build.properties"/>
+       
+       <import file="${common.dir}/build.xml"/>
+</project>

Added: 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/ivy.xml
URL: 
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/ivy.xml?view=auto&rev=534138
==============================================================================
--- 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/ivy.xml
 (added)
+++ 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/ivy.xml
 Tue May  1 08:58:35 2007
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.ivy"
+          module="demo3A">
+       </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/3/ivy-demo-3A/src/demo3A/Demo3A.java
URL: 
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/src/demo3A/Demo3A.java?view=auto&rev=534138
==============================================================================
--- 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/src/demo3A/Demo3A.java
 (added)
+++ 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3A/src/demo3A/Demo3A.java
 Tue May  1 08:58:35 2007
@@ -0,0 +1,7 @@
+package demo3A;
+
+public class Demo3A {
+       public static String sayHello() {
+               return "Hello from Demo3A";
+       }
+}
\ No newline at end of file

Added: 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/build.properties
URL: 
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/build.properties?view=auto&rev=534138
==============================================================================
--- 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/build.properties
 (added)
+++ 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/build.properties
 Tue May  1 08:58:35 2007
@@ -0,0 +1,20 @@
+#       ***************************************************************
+#       * Licensed to the Apache Software Foundation (ASF) under one
+#       * or more contributor license agreements.  See the NOTICE file
+#       * distributed with this work for additional information
+#       * regarding copyright ownership.  The ASF licenses this file
+#       * to you under the Apache License, Version 2.0 (the
+#       * "License"); you may not use this file except in compliance
+#       * with the License.  You may obtain a copy of the License at
+#       * 
+#       *   http://www.apache.org/licenses/LICENSE-2.0
+#       * 
+#       * Unless required by applicable law or agreed to in writing,
+#       * software distributed under the License is distributed on an
+#       * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#       * KIND, either express or implied.  See the License for the
+#       * specific language governing permissions and limitations
+#       * under the License.
+#       ***************************************************************
+wkspace.dir = ${basedir}/..
+common.dir = ${wkspace.dir}/common

Added: 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/build.xml
URL: 
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/build.xml?view=auto&rev=534138
==============================================================================
--- 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/build.xml
 (added)
+++ 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/build.xml
 Tue May  1 08:58:35 2007
@@ -0,0 +1,23 @@
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.    
+-->
+<project name="demo3B" default="publish-local">
+       <property file="build.properties"/>
+       
+       <import file="${common.dir}/build.xml"/>
+</project>

Added: 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/ivy.xml
URL: 
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/ivy.xml?view=auto&rev=534138
==============================================================================
--- 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/ivy.xml
 (added)
+++ 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/ivy.xml
 Tue May  1 08:58:35 2007
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.    
+-->
+<ivy-module version="2.0">
+    <info organisation="org.apache.ivy"
+          module="demo3B">
+       </info>
+       <configurations>
+               <conf name="runtime"/>
+               <conf name="test"/>
+       </configurations>
+       <dependencies>
+               <dependency org="org.apache.ivy" 
+                           name="demo3A" 
+                           rev="latest.integration" 
+                           conf="runtime->@"/>
+       </dependencies>
+</ivy-module>

Added: 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/src/demo3B/Demo3B.java
URL: 
http://svn.apache.org/viewvc/incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/src/demo3B/Demo3B.java?view=auto&rev=534138
==============================================================================
--- 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/src/demo3B/Demo3B.java
 (added)
+++ 
incubator/ivy/core/trunk/doc/presentations/apache-con-2007/demo/3/ivy-demo-3B/src/demo3B/Demo3B.java
 Tue May  1 08:58:35 2007
@@ -0,0 +1,7 @@
+package demo3B;
+
+public class Demo3B {
+       public static String sayHello() {
+               return demo3A.Demo3A.sayHello();
+       }
+}
\ No newline at end of file

Modified: 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=diff&rev=534138&r1=534137&r2=534138
==============================================================================
Binary files - no diff available.


Reply via email to