You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by an...@apache.org on 2010/05/02 13:05:39 UTC

svn commit: r940192 [1/3] - in /abdera/java/trunk: ./ adapters/ adapters/couchdb/ adapters/filesystem/ adapters/jcr/ adapters/jdbc/ build/ bundle/ client/ core/ dependencies/i18n/ distribution/ examples/ extensions/ extensions/features/ extensions/gdat...

Author: antelder
Date: Sun May  2 11:05:38 2010
New Revision: 940192

URL: http://svn.apache.org/viewvc?rev=940192&view=rev
Log:
Bump up trunk version to 1.1-SNAPSHOT instead of 1.0-snapshot as 1.0 has now been released

Modified:
    abdera/java/trunk/adapters/couchdb/build.xml
    abdera/java/trunk/adapters/couchdb/pom.xml
    abdera/java/trunk/adapters/filesystem/build.xml
    abdera/java/trunk/adapters/filesystem/pom.xml
    abdera/java/trunk/adapters/jcr/build.xml
    abdera/java/trunk/adapters/jcr/pom.xml
    abdera/java/trunk/adapters/jdbc/build.xml
    abdera/java/trunk/adapters/jdbc/pom.xml
    abdera/java/trunk/adapters/pom.xml
    abdera/java/trunk/build/build.xml
    abdera/java/trunk/bundle/pom.xml
    abdera/java/trunk/client/pom.xml
    abdera/java/trunk/core/pom.xml
    abdera/java/trunk/dependencies/i18n/build.xml
    abdera/java/trunk/dependencies/i18n/pom.xml
    abdera/java/trunk/distribution/pom.xml
    abdera/java/trunk/examples/pom.xml
    abdera/java/trunk/extensions/features/pom.xml
    abdera/java/trunk/extensions/gdata/pom.xml
    abdera/java/trunk/extensions/geo/pom.xml
    abdera/java/trunk/extensions/html/pom.xml
    abdera/java/trunk/extensions/json/pom.xml
    abdera/java/trunk/extensions/main/pom.xml
    abdera/java/trunk/extensions/media/pom.xml
    abdera/java/trunk/extensions/oauth/pom.xml
    abdera/java/trunk/extensions/opensearch/pom.xml
    abdera/java/trunk/extensions/pom.xml
    abdera/java/trunk/extensions/rss/pom.xml
    abdera/java/trunk/extensions/serializer/pom.xml
    abdera/java/trunk/extensions/sharing/pom.xml
    abdera/java/trunk/extensions/wsse/pom.xml
    abdera/java/trunk/parser/pom.xml
    abdera/java/trunk/pom.xml
    abdera/java/trunk/security/pom.xml
    abdera/java/trunk/server/pom.xml
    abdera/java/trunk/spring/pom.xml

Modified: abdera/java/trunk/adapters/couchdb/build.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/adapters/couchdb/build.xml?rev=940192&r1=940191&r2=940192&view=diff
==============================================================================
--- abdera/java/trunk/adapters/couchdb/build.xml (original)
+++ abdera/java/trunk/adapters/couchdb/build.xml Sun May  2 11:05:38 2010
@@ -1,81 +1,81 @@
-<!--
-   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="couchdb" default="compile">
-
-  <property name="version" value="1.0-SNAPSHOT" />
-  <property name="adapter.jar" value="abdera.adapter.${ant.project.name}.${version}.jar" />
-  <property name="retro.adapter.jar" value="abdera.adapter.${ant.project.name}.${version}.retro.jar" />
-  <property name="debug" value="on" />
-  
-  <property name="abdera" value="../../dist" />
-  <path id="abdera">
-    <fileset dir="${abdera}" includes="**/*.jar" excludes="**/*retro.jar"/>
-  </path>
-  <path id="retro">
-    <fileset dir="../../build/tools/retroweaver-2.0" includes="**/*.jar" />
-  </path>
-
-  <target name="dependencies">
-    <mkdir dir="${basedir}/lib" />
-    <parallel>
-      <get src="http://internap.dl.sourceforge.net/sourceforge/json-lib/json-lib-2.2.1-jdk15.jar" dest="${basedir}/lib/json-lib-2.2.1-jdk15.jar" usetimestamp="true" />
-      <get src="http://internap.dl.sourceforge.net/sourceforge/ezmorph/ezmorph-1.0.4.jar" dest="${basedir}/lib/ezmorph-1.0.4.jar" usetimestamp="true" />
-      <get src="http://people.apache.org/repo/m1-ibiblio-rsync-repository/commons-beanutils/jars/commons-beanutils-1.7.0.jar" dest="${basedir}/lib/commons-beanutils-1.7.0.jar" usetimestamp="true" />
-      <get src="http://people.apache.org/repo/m1-ibiblio-rsync-repository/commons-beanutils/jars/commons-beanutils-bean-collections-1.7.0.jar" dest="${basedir}/lib/commons-beanutils-bean-collections-1.7.0.jar" usetimestamp="true" />
-      <get src="http://people.apache.org/repo/m1-ibiblio-rsync-repository/commons-collections/jars/commons-collections-3.2.jar" dest="${basedir}/lib/commons-collections-3.2.jar" usetimestamp="true" />
-      <get src="http://people.apache.org/repo/m1-ibiblio-rsync-repository/commons-lang/jars/commons-lang-2.3.jar" dest="${basedir}/lib/commons-lang-2.3.jar" usetimestamp="true" />
-      <get src="http://couchdb4j.googlecode.com/files/couchdb4j-0.1.2.jar" dest="${basedir}/lib/couchdb4j-0.1.2.jar" usetimestamp="true" />
-    </parallel>
-    <path id="dependencies">
-      <fileset dir="${basedir}/lib" includes="**/*.jar" />
-      <path refid="abdera" />
-    </path>
-  </target>
-  
-  <target name="compile" depends="dependencies">
-    <mkdir dir="${basedir}/build" />
-    <javac srcdir="src/main/java" classpathref="dependencies" destdir="${basedir}/build" debug="${debug}" />
-    <javac srcdir="src/test/java" classpathref="dependencies" destdir="${basedir}/build" debug="${debug}" />
-    <copy todir="${basedir}/build">
-      <fileset dir="src/test/resources" includes="**/*" />
-    </copy>
-    <jar destfile="${basedir}/${adapter.jar}" basedir="${basedir}/build" includes="org/apache/abdera/protocol/server/adapters/**/*" />
-    <java classpathref="retro" classname="net.sourceforge.retroweaver.Weaver" fork="yes">
-      <arg line="-jar &quot;${basedir}/${adapter.jar}&quot; &quot;${basedir}/${retro.adapter.jar}&quot;" />
-    </java>
-  </target>
-  
-  <target name="test">
-    <!-- requires that couch db is running -->
-    <java classname="org.apache.abdera.protocol.server.test.couchdb.TestSuite"
-          classpath="${basedir}/build"
-          classpathref="dependencies"
-          fork="true" />
-  </target>
-  
-  <target name="clean">
-    <delete dir="${basedir}/build" />
-    <delete file="${basedir}/${adapter.jar}" />
-    <delete file="${basedir}/${retro.adapter.jar}" />
-  </target>
-  
-  <target name="dist" depends="clean,compile">
-    <copy todir="../../dist/adapters" file="${basedir}/${adapter.jar}" />
-    <copy todir="../../dist/adapters" file="${basedir}/${retro.adapter.jar}" />
-  </target>
-  
-</project>
\ No newline at end of file
+<!--
+   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="couchdb" default="compile">
+
+  <property name="version" value="1.1-SNAPSHOT" />
+  <property name="adapter.jar" value="abdera.adapter.${ant.project.name}.${version}.jar" />
+  <property name="retro.adapter.jar" value="abdera.adapter.${ant.project.name}.${version}.retro.jar" />
+  <property name="debug" value="on" />
+  
+  <property name="abdera" value="../../dist" />
+  <path id="abdera">
+    <fileset dir="${abdera}" includes="**/*.jar" excludes="**/*retro.jar"/>
+  </path>
+  <path id="retro">
+    <fileset dir="../../build/tools/retroweaver-2.0" includes="**/*.jar" />
+  </path>
+
+  <target name="dependencies">
+    <mkdir dir="${basedir}/lib" />
+    <parallel>
+      <get src="http://internap.dl.sourceforge.net/sourceforge/json-lib/json-lib-2.2.1-jdk15.jar" dest="${basedir}/lib/json-lib-2.2.1-jdk15.jar" usetimestamp="true" />
+      <get src="http://internap.dl.sourceforge.net/sourceforge/ezmorph/ezmorph-1.0.4.jar" dest="${basedir}/lib/ezmorph-1.0.4.jar" usetimestamp="true" />
+      <get src="http://people.apache.org/repo/m1-ibiblio-rsync-repository/commons-beanutils/jars/commons-beanutils-1.7.0.jar" dest="${basedir}/lib/commons-beanutils-1.7.0.jar" usetimestamp="true" />
+      <get src="http://people.apache.org/repo/m1-ibiblio-rsync-repository/commons-beanutils/jars/commons-beanutils-bean-collections-1.7.0.jar" dest="${basedir}/lib/commons-beanutils-bean-collections-1.7.0.jar" usetimestamp="true" />
+      <get src="http://people.apache.org/repo/m1-ibiblio-rsync-repository/commons-collections/jars/commons-collections-3.2.jar" dest="${basedir}/lib/commons-collections-3.2.jar" usetimestamp="true" />
+      <get src="http://people.apache.org/repo/m1-ibiblio-rsync-repository/commons-lang/jars/commons-lang-2.3.jar" dest="${basedir}/lib/commons-lang-2.3.jar" usetimestamp="true" />
+      <get src="http://couchdb4j.googlecode.com/files/couchdb4j-0.1.2.jar" dest="${basedir}/lib/couchdb4j-0.1.2.jar" usetimestamp="true" />
+    </parallel>
+    <path id="dependencies">
+      <fileset dir="${basedir}/lib" includes="**/*.jar" />
+      <path refid="abdera" />
+    </path>
+  </target>
+  
+  <target name="compile" depends="dependencies">
+    <mkdir dir="${basedir}/build" />
+    <javac srcdir="src/main/java" classpathref="dependencies" destdir="${basedir}/build" debug="${debug}" />
+    <javac srcdir="src/test/java" classpathref="dependencies" destdir="${basedir}/build" debug="${debug}" />
+    <copy todir="${basedir}/build">
+      <fileset dir="src/test/resources" includes="**/*" />
+    </copy>
+    <jar destfile="${basedir}/${adapter.jar}" basedir="${basedir}/build" includes="org/apache/abdera/protocol/server/adapters/**/*" />
+    <java classpathref="retro" classname="net.sourceforge.retroweaver.Weaver" fork="yes">
+      <arg line="-jar &quot;${basedir}/${adapter.jar}&quot; &quot;${basedir}/${retro.adapter.jar}&quot;" />
+    </java>
+  </target>
+  
+  <target name="test">
+    <!-- requires that couch db is running -->
+    <java classname="org.apache.abdera.protocol.server.test.couchdb.TestSuite"
+          classpath="${basedir}/build"
+          classpathref="dependencies"
+          fork="true" />
+  </target>
+  
+  <target name="clean">
+    <delete dir="${basedir}/build" />
+    <delete file="${basedir}/${adapter.jar}" />
+    <delete file="${basedir}/${retro.adapter.jar}" />
+  </target>
+  
+  <target name="dist" depends="clean,compile">
+    <copy todir="../../dist/adapters" file="${basedir}/${adapter.jar}" />
+    <copy todir="../../dist/adapters" file="${basedir}/${retro.adapter.jar}" />
+  </target>
+  
+</project>

Modified: abdera/java/trunk/adapters/couchdb/pom.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/adapters/couchdb/pom.xml?rev=940192&r1=940191&r2=940192&view=diff
==============================================================================
--- abdera/java/trunk/adapters/couchdb/pom.xml (original)
+++ abdera/java/trunk/adapters/couchdb/pom.xml Sun May  2 11:05:38 2010
@@ -20,13 +20,13 @@
     <parent>
         <groupId>org.apache.abdera</groupId>
         <artifactId>abdera-adapters-parent</artifactId>
-        <version>1.0-SNAPSHOT</version>  
+        <version>1.1-SNAPSHOT</version>  
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <artifactId>abdera-couchdb</artifactId>
     <packaging>bundle</packaging>
     <name>Abdera CouchDB Adapter</name>
-    <version>1.0-SNAPSHOT</version>  
+    <version>1.1-SNAPSHOT</version>  
 	      
 	  <properties>
 	    <topDir>${basedir}/../..</topDir>

Modified: abdera/java/trunk/adapters/filesystem/build.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/adapters/filesystem/build.xml?rev=940192&r1=940191&r2=940192&view=diff
==============================================================================
--- abdera/java/trunk/adapters/filesystem/build.xml (original)
+++ abdera/java/trunk/adapters/filesystem/build.xml Sun May  2 11:05:38 2010
@@ -1,69 +1,69 @@
-<!--
-   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="filesystem" default="compile">
-
-  <property name="version" value="1.0-SNAPSHOT" />
-  <property name="adapter.jar" value="abdera.adapter.${ant.project.name}.${version}.jar" />
-  <property name="retro.adapter.jar" value="abdera.adapter.${ant.project.name}.${version}.retro.jar" />
-  <property name="debug" value="on" />
-  
-  <property name="abdera" value="../../dist" />
-  <path id="abdera">
-    <fileset dir="${abdera}" includes="**/*.jar" excludes="**/*retro.jar"/>
-  </path>
-  <path id="retro">
-    <fileset dir="../../build/tools/retroweaver-2.0" includes="**/*.jar" />
-  </path>
-
-  <target name="dependencies">
-    <path id="dependencies">
-      <path refid="abdera" />
-    </path>
-  </target>
-  
-  <target name="compile" depends="dependencies">
-    <mkdir dir="${basedir}/build" />
-    <javac srcdir="src/main/java" classpathref="dependencies" destdir="${basedir}/build" debug="${debug}" />
-    <javac srcdir="src/test/java" classpathref="dependencies" destdir="${basedir}/build" debug="${debug}" />
-    <copy todir="${basedir}/build">
-      <fileset dir="src/test/resources" includes="**/*" />
-    </copy>
-    <jar destfile="${basedir}/${adapter.jar}" basedir="${basedir}/build" includes="org/apache/abdera/protocol/server/adapters/**/*" />
-    <java classpathref="retro" classname="net.sourceforge.retroweaver.Weaver" fork="yes">
-      <arg line="-jar &quot;${basedir}/${adapter.jar}&quot; &quot;${basedir}/${retro.adapter.jar}&quot;" />
-    </java>
-  </target>
-  
-  <target name="test">
-    <java classname="org.apache.abdera.protocol.server.test.filesystem.TestSuite"
-          classpath="${basedir}/build"
-          classpathref="dependencies"
-          fork="true" />
-  </target>
-  
-  <target name="clean">
-    <delete dir="${basedir}/build" />
-    <delete file="${basedir}/${adapter.jar}" />
-    <delete file="${basedir}/${retro.adapter.jar}" />
-  </target>
-  
-  <target name="dist" depends="clean,compile">
-    <copy todir="../../dist/adapters" file="${basedir}/${adapter.jar}" />
-    <copy todir="../../dist/adapters" file="${basedir}/${retro.adapter.jar}" />
-  </target>
-  
-</project>
\ No newline at end of file
+<!--
+   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="filesystem" default="compile">
+
+  <property name="version" value="1.1-SNAPSHOT" />
+  <property name="adapter.jar" value="abdera.adapter.${ant.project.name}.${version}.jar" />
+  <property name="retro.adapter.jar" value="abdera.adapter.${ant.project.name}.${version}.retro.jar" />
+  <property name="debug" value="on" />
+  
+  <property name="abdera" value="../../dist" />
+  <path id="abdera">
+    <fileset dir="${abdera}" includes="**/*.jar" excludes="**/*retro.jar"/>
+  </path>
+  <path id="retro">
+    <fileset dir="../../build/tools/retroweaver-2.0" includes="**/*.jar" />
+  </path>
+
+  <target name="dependencies">
+    <path id="dependencies">
+      <path refid="abdera" />
+    </path>
+  </target>
+  
+  <target name="compile" depends="dependencies">
+    <mkdir dir="${basedir}/build" />
+    <javac srcdir="src/main/java" classpathref="dependencies" destdir="${basedir}/build" debug="${debug}" />
+    <javac srcdir="src/test/java" classpathref="dependencies" destdir="${basedir}/build" debug="${debug}" />
+    <copy todir="${basedir}/build">
+      <fileset dir="src/test/resources" includes="**/*" />
+    </copy>
+    <jar destfile="${basedir}/${adapter.jar}" basedir="${basedir}/build" includes="org/apache/abdera/protocol/server/adapters/**/*" />
+    <java classpathref="retro" classname="net.sourceforge.retroweaver.Weaver" fork="yes">
+      <arg line="-jar &quot;${basedir}/${adapter.jar}&quot; &quot;${basedir}/${retro.adapter.jar}&quot;" />
+    </java>
+  </target>
+  
+  <target name="test">
+    <java classname="org.apache.abdera.protocol.server.test.filesystem.TestSuite"
+          classpath="${basedir}/build"
+          classpathref="dependencies"
+          fork="true" />
+  </target>
+  
+  <target name="clean">
+    <delete dir="${basedir}/build" />
+    <delete file="${basedir}/${adapter.jar}" />
+    <delete file="${basedir}/${retro.adapter.jar}" />
+  </target>
+  
+  <target name="dist" depends="clean,compile">
+    <copy todir="../../dist/adapters" file="${basedir}/${adapter.jar}" />
+    <copy todir="../../dist/adapters" file="${basedir}/${retro.adapter.jar}" />
+  </target>
+  
+</project>

Modified: abdera/java/trunk/adapters/filesystem/pom.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/adapters/filesystem/pom.xml?rev=940192&r1=940191&r2=940192&view=diff
==============================================================================
--- abdera/java/trunk/adapters/filesystem/pom.xml (original)
+++ abdera/java/trunk/adapters/filesystem/pom.xml Sun May  2 11:05:38 2010
@@ -18,13 +18,13 @@
     <parent>
         <groupId>org.apache.abdera</groupId>
         <artifactId>abdera-adapters-parent</artifactId>
-        <version>1.0-SNAPSHOT</version>  
+        <version>1.1-SNAPSHOT</version>  
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <artifactId>abdera-filesystem</artifactId>
     <packaging>bundle</packaging>
     <name>Abdera Filesystem Adapter</name>
-    <version>1.0-SNAPSHOT</version>  
+    <version>1.1-SNAPSHOT</version>  
 	      
 	  <properties>
 	    <topDir>${basedir}/../..</topDir>

Modified: abdera/java/trunk/adapters/jcr/build.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/adapters/jcr/build.xml?rev=940192&r1=940191&r2=940192&view=diff
==============================================================================
--- abdera/java/trunk/adapters/jcr/build.xml (original)
+++ abdera/java/trunk/adapters/jcr/build.xml Sun May  2 11:05:38 2010
@@ -1,72 +1,72 @@
-<!--
-   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="jcr" default="compile">
-
-  <property name="version" value="1.0-SNAPSHOT" />
-  <property name="adapter.jar" value="abdera.adapter.${ant.project.name}.${version}.jar" />
-  <property name="retro.adapter.jar" value="abdera.adapter.${ant.project.name}.${version}.retro.jar" />
-  <property name="debug" value="on" />
-  
-  <property name="abdera" value="../../dist" />
-  <path id="abdera">
-    <fileset dir="${abdera}" includes="**/*.jar" excludes="**/*retro.jar"/>
-  </path>
-  <path id="retro">
-    <fileset dir="../../build/tools/retroweaver-2.0" includes="**/*.jar" />
-  </path>
-
-  <target name="dependencies">
-    <mkdir dir="${basedir}/lib" />
-    <parallel>
-      <get src="http://mirrors.ibiblio.org/pub/mirrors/maven2/javax/jcr/jcr/1.0/jcr-1.0.jar" dest="${basedir}/lib/jcr-1.0.jar" usetimestamp="true" />
-      <get src="http://www.ibiblio.org/pub/mirrors/apache/jackrabbit/binaries/jackrabbit-api-1.4.jar" dest="${basedir}/lib/jackrabbit-api-1.4.jar" usetimestamp="true" />
-      <get src="http://www.ibiblio.org/pub/mirrors/apache/jackrabbit/binaries/jackrabbit-core-1.4.jar" dest="${basedir}/lib/jackrabbit-core-1.4.jar" usetimestamp="true" />
-    </parallel>
-    <path id="dependencies">
-      <fileset dir="${basedir}/lib" includes="**/*.jar" />
-      <path refid="abdera" />
-    </path>
-  </target>
-  
-  <target name="compile" depends="dependencies">
-    <mkdir dir="${basedir}/build" />
-    <javac srcdir="src/main/java" classpathref="dependencies" destdir="${basedir}/build" debug="${debug}" />
-    <javac srcdir="src/test/java" classpathref="dependencies" destdir="${basedir}/build" debug="${debug}" />
-    <copy todir="${basedir}/build">
-      <fileset dir="src/test/resources" includes="**/*" />
-    </copy>
-    <jar destfile="${basedir}/${adapter.jar}" basedir="${basedir}/build" includes="org/apache/abdera/protocol/server/adapters/**/*" />
-    <java classpathref="retro" classname="net.sourceforge.retroweaver.Weaver" fork="yes">
-      <arg line="-jar &quot;${basedir}/${adapter.jar}&quot; &quot;${basedir}/${retro.adapter.jar}&quot;" />
-    </java>
-  </target>
-  
-  <target name="test">
-  </target>
-  
-  <target name="clean">
-    <delete dir="${basedir}/build" />
-    <delete file="${basedir}/${adapter.jar}" />
-    <delete file="${basedir}/${retro.adapter.jar}" />
-  </target>
-  
-  <target name="dist" depends="clean,compile">
-    <copy todir="../../dist/adapters" file="${basedir}/${adapter.jar}" />
-    <copy todir="../../dist/adapters" file="${basedir}/${retro.adapter.jar}" />
-  </target>
-  
-</project>
\ No newline at end of file
+<!--
+   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="jcr" default="compile">
+
+  <property name="version" value="1.1-SNAPSHOT" />
+  <property name="adapter.jar" value="abdera.adapter.${ant.project.name}.${version}.jar" />
+  <property name="retro.adapter.jar" value="abdera.adapter.${ant.project.name}.${version}.retro.jar" />
+  <property name="debug" value="on" />
+  
+  <property name="abdera" value="../../dist" />
+  <path id="abdera">
+    <fileset dir="${abdera}" includes="**/*.jar" excludes="**/*retro.jar"/>
+  </path>
+  <path id="retro">
+    <fileset dir="../../build/tools/retroweaver-2.0" includes="**/*.jar" />
+  </path>
+
+  <target name="dependencies">
+    <mkdir dir="${basedir}/lib" />
+    <parallel>
+      <get src="http://mirrors.ibiblio.org/pub/mirrors/maven2/javax/jcr/jcr/1.0/jcr-1.0.jar" dest="${basedir}/lib/jcr-1.0.jar" usetimestamp="true" />
+      <get src="http://www.ibiblio.org/pub/mirrors/apache/jackrabbit/binaries/jackrabbit-api-1.4.jar" dest="${basedir}/lib/jackrabbit-api-1.4.jar" usetimestamp="true" />
+      <get src="http://www.ibiblio.org/pub/mirrors/apache/jackrabbit/binaries/jackrabbit-core-1.4.jar" dest="${basedir}/lib/jackrabbit-core-1.4.jar" usetimestamp="true" />
+    </parallel>
+    <path id="dependencies">
+      <fileset dir="${basedir}/lib" includes="**/*.jar" />
+      <path refid="abdera" />
+    </path>
+  </target>
+  
+  <target name="compile" depends="dependencies">
+    <mkdir dir="${basedir}/build" />
+    <javac srcdir="src/main/java" classpathref="dependencies" destdir="${basedir}/build" debug="${debug}" />
+    <javac srcdir="src/test/java" classpathref="dependencies" destdir="${basedir}/build" debug="${debug}" />
+    <copy todir="${basedir}/build">
+      <fileset dir="src/test/resources" includes="**/*" />
+    </copy>
+    <jar destfile="${basedir}/${adapter.jar}" basedir="${basedir}/build" includes="org/apache/abdera/protocol/server/adapters/**/*" />
+    <java classpathref="retro" classname="net.sourceforge.retroweaver.Weaver" fork="yes">
+      <arg line="-jar &quot;${basedir}/${adapter.jar}&quot; &quot;${basedir}/${retro.adapter.jar}&quot;" />
+    </java>
+  </target>
+  
+  <target name="test">
+  </target>
+  
+  <target name="clean">
+    <delete dir="${basedir}/build" />
+    <delete file="${basedir}/${adapter.jar}" />
+    <delete file="${basedir}/${retro.adapter.jar}" />
+  </target>
+  
+  <target name="dist" depends="clean,compile">
+    <copy todir="../../dist/adapters" file="${basedir}/${adapter.jar}" />
+    <copy todir="../../dist/adapters" file="${basedir}/${retro.adapter.jar}" />
+  </target>
+  
+</project>

Modified: abdera/java/trunk/adapters/jcr/pom.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/adapters/jcr/pom.xml?rev=940192&r1=940191&r2=940192&view=diff
==============================================================================
--- abdera/java/trunk/adapters/jcr/pom.xml (original)
+++ abdera/java/trunk/adapters/jcr/pom.xml Sun May  2 11:05:38 2010
@@ -18,13 +18,13 @@
   <parent>
     <groupId>org.apache.abdera</groupId>
     <artifactId>abdera-adapters-parent</artifactId>
-    <version>1.0-SNAPSHOT</version>  
+    <version>1.1-SNAPSHOT</version>  
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>abdera-jcr</artifactId>
   <packaging>bundle</packaging>
   <name>Abdera JCR Adapter</name>
-  <version>1.0-SNAPSHOT</version>  
+  <version>1.1-SNAPSHOT</version>  
   <description>JCR AtomPub Server implementation Abdera</description>
     
   <properties>
@@ -52,7 +52,7 @@
     <dependency>
       <groupId>org.apache.abdera</groupId>
       <artifactId>abdera-spring</artifactId>
-      <version>1.0-SNAPSHOT</version>  
+      <version>1.1-SNAPSHOT</version>  
       <scope>test</scope>
     </dependency>
     

Modified: abdera/java/trunk/adapters/jdbc/build.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/adapters/jdbc/build.xml?rev=940192&r1=940191&r2=940192&view=diff
==============================================================================
--- abdera/java/trunk/adapters/jdbc/build.xml (original)
+++ abdera/java/trunk/adapters/jdbc/build.xml Sun May  2 11:05:38 2010
@@ -1,70 +1,70 @@
-<!--
-   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="ibatis" default="compile">
-
-  <property name="version" value="1.0-SNAPSHOT" />
-  <property name="adapter.jar" value="abdera.adapter.${ant.project.name}.${version}.jar" />
-  <property name="retro.adapter.jar" value="abdera.adapter.${ant.project.name}.${version}.retro.jar" />
-  <property name="debug" value="on" />
-  
-  <property name="abdera" value="../../dist" />
-  <path id="abdera">
-    <fileset dir="${abdera}" includes="**/*.jar" excludes="**/*retro.jar"/>
-  </path>
-  <path id="retro">
-    <fileset dir="../../build/tools/retroweaver-2.0" includes="**/*.jar" />
-  </path>
-
-  <target name="dependencies">
-    <mkdir dir="${basedir}/lib" />
-    <parallel>      
-      <get src="http://repo1.maven.org/maven2/org/apache/ibatis/ibatis-sqlmap/2.3.0/ibatis-sqlmap-2.3.0.jar" dest="${basedir}/lib/ibatis-sqlmap-2.3.0.jar" usetimestamp="true" />
-    </parallel>
-    <path id="dependencies">
-      <fileset dir="${basedir}/lib" includes="**/*.jar" />
-      <path refid="abdera" />
-    </path>
-  </target>
-  
-  <target name="compile" depends="dependencies">
-    <mkdir dir="${basedir}/build" />
-    <javac srcdir="src/main/java" classpathref="dependencies" destdir="${basedir}/build" debug="${debug}" />
-    <!--javac srcdir="src/test/java" classpathref="dependencies" destdir="${basedir}/build" debug="${debug}" /-->
-    <!--copy todir="${basedir}/build">
-      <fileset dir="src/test/resources" includes="**/*" />
-    </copy-->
-    <jar destfile="${basedir}/${adapter.jar}" basedir="${basedir}/build" includes="org/apache/abdera/protocol/server/adapters/**/*" />
-    <java classpathref="retro" classname="net.sourceforge.retroweaver.Weaver" fork="yes">
-      <arg line="-jar &quot;${basedir}/${adapter.jar}&quot; &quot;${basedir}/${retro.adapter.jar}&quot;" />
-    </java>
-  </target>
-  
-  <target name="test">
-  </target>
-  
-  <target name="clean">
-    <delete dir="${basedir}/build" />
-    <delete file="${basedir}/${adapter.jar}" />
-    <delete file="${basedir}/${retro.adapter.jar}" />
-  </target>
-  
-  <target name="dist" depends="clean,compile">
-    <copy todir="../../dist/adapters" file="${basedir}/${adapter.jar}" />
-    <copy todir="../../dist/adapters" file="${basedir}/${retro.adapter.jar}" />
-  </target>
-  
-</project>
\ No newline at end of file
+<!--
+   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="ibatis" default="compile">
+
+  <property name="version" value="1.1-SNAPSHOT" />
+  <property name="adapter.jar" value="abdera.adapter.${ant.project.name}.${version}.jar" />
+  <property name="retro.adapter.jar" value="abdera.adapter.${ant.project.name}.${version}.retro.jar" />
+  <property name="debug" value="on" />
+  
+  <property name="abdera" value="../../dist" />
+  <path id="abdera">
+    <fileset dir="${abdera}" includes="**/*.jar" excludes="**/*retro.jar"/>
+  </path>
+  <path id="retro">
+    <fileset dir="../../build/tools/retroweaver-2.0" includes="**/*.jar" />
+  </path>
+
+  <target name="dependencies">
+    <mkdir dir="${basedir}/lib" />
+    <parallel>      
+      <get src="http://repo1.maven.org/maven2/org/apache/ibatis/ibatis-sqlmap/2.3.0/ibatis-sqlmap-2.3.0.jar" dest="${basedir}/lib/ibatis-sqlmap-2.3.0.jar" usetimestamp="true" />
+    </parallel>
+    <path id="dependencies">
+      <fileset dir="${basedir}/lib" includes="**/*.jar" />
+      <path refid="abdera" />
+    </path>
+  </target>
+  
+  <target name="compile" depends="dependencies">
+    <mkdir dir="${basedir}/build" />
+    <javac srcdir="src/main/java" classpathref="dependencies" destdir="${basedir}/build" debug="${debug}" />
+    <!--javac srcdir="src/test/java" classpathref="dependencies" destdir="${basedir}/build" debug="${debug}" /-->
+    <!--copy todir="${basedir}/build">
+      <fileset dir="src/test/resources" includes="**/*" />
+    </copy-->
+    <jar destfile="${basedir}/${adapter.jar}" basedir="${basedir}/build" includes="org/apache/abdera/protocol/server/adapters/**/*" />
+    <java classpathref="retro" classname="net.sourceforge.retroweaver.Weaver" fork="yes">
+      <arg line="-jar &quot;${basedir}/${adapter.jar}&quot; &quot;${basedir}/${retro.adapter.jar}&quot;" />
+    </java>
+  </target>
+  
+  <target name="test">
+  </target>
+  
+  <target name="clean">
+    <delete dir="${basedir}/build" />
+    <delete file="${basedir}/${adapter.jar}" />
+    <delete file="${basedir}/${retro.adapter.jar}" />
+  </target>
+  
+  <target name="dist" depends="clean,compile">
+    <copy todir="../../dist/adapters" file="${basedir}/${adapter.jar}" />
+    <copy todir="../../dist/adapters" file="${basedir}/${retro.adapter.jar}" />
+  </target>
+  
+</project>

Modified: abdera/java/trunk/adapters/jdbc/pom.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/adapters/jdbc/pom.xml?rev=940192&r1=940191&r2=940192&view=diff
==============================================================================
--- abdera/java/trunk/adapters/jdbc/pom.xml (original)
+++ abdera/java/trunk/adapters/jdbc/pom.xml Sun May  2 11:05:38 2010
@@ -2,13 +2,13 @@
   <parent>
     <groupId>org.apache.abdera</groupId>
     <artifactId>abdera-adapters-parent</artifactId>
-    <version>1.0-SNAPSHOT</version>  
+    <version>1.1-SNAPSHOT</version>  
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>abdera-jdbc</artifactId>
   <packaging>bundle</packaging>
   <name>Abdera JDBC Adapter</name>
-  <version>1.0-SNAPSHOT</version>  
+  <version>1.1-SNAPSHOT</version>  
     
   <properties>
     <topDir>${basedir}/../..</topDir>

Modified: abdera/java/trunk/adapters/pom.xml
URL: http://svn.apache.org/viewvc/abdera/java/trunk/adapters/pom.xml?rev=940192&r1=940191&r2=940192&view=diff
==============================================================================
--- abdera/java/trunk/adapters/pom.xml (original)
+++ abdera/java/trunk/adapters/pom.xml Sun May  2 11:05:38 2010
@@ -18,13 +18,13 @@
 	<parent>
 		<groupId>org.apache.abdera</groupId>
 		<artifactId>abdera</artifactId>
-		<version>1.0-SNAPSHOT</version>  
+		<version>1.1-SNAPSHOT</version>  
 	</parent>
 	<modelVersion>4.0.0</modelVersion>
 	<artifactId>abdera-adapters-parent</artifactId>
 	<packaging>pom</packaging>
 	<name>Abdera Adapters</name>
-	<version>1.0-SNAPSHOT</version>  
+	<version>1.1-SNAPSHOT</version>  
 	<description>Abdera Adapters</description>
 
   <properties>
@@ -50,13 +50,13 @@
 		<dependency>
 			<groupId>org.apache.abdera</groupId>
 			<artifactId>abdera-server</artifactId>
-			<version>1.0-SNAPSHOT</version>  
+			<version>1.1-SNAPSHOT</version>  
 		</dependency>
 		
     <dependency>
       <groupId>org.apache.abdera</groupId>
       <artifactId>abdera-client</artifactId>
-      <version>1.0-SNAPSHOT</version>  
+      <version>1.1-SNAPSHOT</version>  
       <scope>test</scope>
     </dependency>