You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ace.apache.org by ma...@apache.org on 2012/07/05 14:10:06 UTC

svn commit: r1357570 [2/34] - in /ace/sandbox/marrs: cnf/ cnf/ext/ cnf/lib/ cnf/releaserepo/ cnf/repo/ cnf/repo/.obrcache/ cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Fcom.jcraft.jsch/ cnf/repo/.obrcache/http%3A%2F%2Fbundles....

Added: ace/sandbox/marrs/cnf/.classpath
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/.classpath?rev=1357570&view=auto
==============================================================================
--- ace/sandbox/marrs/cnf/.classpath (added)
+++ ace/sandbox/marrs/cnf/.classpath Thu Jul  5 12:09:30 2012
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>

Added: ace/sandbox/marrs/cnf/.project
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/.project?rev=1357570&view=auto
==============================================================================
--- ace/sandbox/marrs/cnf/.project (added)
+++ ace/sandbox/marrs/cnf/.project Thu Jul  5 12:09:30 2012
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>cnf</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>

Added: ace/sandbox/marrs/cnf/build.bnd
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/build.bnd?rev=1357570&view=auto
==============================================================================
--- ace/sandbox/marrs/cnf/build.bnd (added)
+++ ace/sandbox/marrs/cnf/build.bnd Thu Jul  5 12:09:30 2012
@@ -0,0 +1,9 @@
+# Place your specific settings here.
+
+# Default settings are in ext/*.bnd and they will be overridden by anything
+# you specify in this file.
+
+# If you use git, you might want to uncomment the following lines:
+#Git-Descriptor: ${system;git describe --dirty --always}
+#Git-SHA: ${system;git rev-list -1 HEAD}
+

Added: ace/sandbox/marrs/cnf/build.xml
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/build.xml?rev=1357570&view=auto
==============================================================================
--- ace/sandbox/marrs/cnf/build.xml (added)
+++ ace/sandbox/marrs/cnf/build.xml Thu Jul  5 12:09:30 2012
@@ -0,0 +1,188 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="master" default="none">
+
+	<!-- 
+	     INIT
+	     The target is a dependent of all other targets.
+	     It's purpose is to set up the environment only once
+	     and avoid it being repeatedly done for each antcall.
+	-->
+
+	<target name="init" unless="initialized">
+		<tstamp>
+			<format property="NOW" pattern="yyyyMMdd-HHmm" timezone="UTC"/>
+		</tstamp>
+		
+		<dirname property="projectdir" file="${ant.file}" />
+		<dirname property="workspacedir" file="${projectdir}" />
+		<taskdef resource="aQute/bnd/ant/taskdef.properties">
+			<classpath>
+				<path location="${workspacedir}/cnf/repo/biz.aQute.bnd/biz.aQute.bnd-1.51.1.jar"/>
+			</classpath>
+		</taskdef>
+		
+		<!-- TestNG support -->
+		<taskdef resource="testngtasks" classpath="${workspacedir}/cnf/lib/testng-6.5.2.jar" />
+        
+
+		<bndprepare basedir="${projectdir}" print="false" top="${release.dir}" />
+
+		<!-- mark init has been run -->
+		<property name="initialized" value="set" />
+		<echo message="Enter project ${project.name}"/>
+	</target>
+
+	<!-- 
+		DEPENDENCIES
+		Build project dependencies.
+	-->
+	<target name="dependencies" depends="init" if="project.dependson" unless="donotrecurse">
+		<subant target="build" inheritAll="false" buildpath="${project.dependson}">
+			<property name="donotrecurse" value="true" />
+		</subant>
+	</target>
+
+	<!--
+	     Test
+	-->
+	<target name="test" depends="compile">
+		<bnd command="test" exceptions="true" basedir="${project}" />
+	</target>
+
+	<!--
+	     COMPILE
+	     Compile the sources. 
+	-->
+	<target name="compile" depends="dependencies" if="project.sourcepath">
+		<mkdir dir="${project.output}"/>
+		<javac fork="yes" executable="${javac}" srcdir="${project.sourcepath}" destdir="${project.output}" classpath="${project.buildpath}" bootclasspath="${project.bootclasspath}" deprecation="true" listfiles="true" target="${javac.target}" source="${javac.source}" debug="${javac.debug}" includeAntRuntime="no" verbose="${verbose}" />
+		<!-- 
+		  The eclipse compiler copies resources but the Javac compiler does not
+		  If ${src} == ${bin} then this is not necessary, but unfortunately, now 
+		  it is. 
+		-->
+		<copy todir="${project.output}" verbose="${verbose}" preservelastmodified="true">
+			<fileset dir="${project.sourcepath}">
+				<exclude name="**/*.java" />
+				<exclude name="**/*.class" />
+			</fileset>
+		</copy>
+	</target>
+
+	<target name="compiletest" depends="dependencies" if="project.sourcepath">
+		<mkdir dir="${project}/bin_test"/>
+		<javac fork="yes" executable="${javac}" srcdir="${project}/test" destdir="${project}/bin_test" classpath="${project.buildpath}:${workspacedir}/cnf/lib/testng-6.5.2.jar" bootclasspath="${project.bootclasspath}" deprecation="true" listfiles="true" target="${javac.target}" source="${javac.source}" debug="${javac.debug}" includeAntRuntime="no" verbose="${verbose}" />
+		<!-- 
+		  The eclipse compiler copies resources but the Javac compiler does not
+		  If ${src} == ${bin} then this is not necessary, but unfortunately, now 
+		  it is. 
+		-->
+		<copy todir="${project}/bin_test" verbose="${verbose}" preservelastmodified="true">
+			<fileset dir="${project}/test">
+				<exclude name="**/*.java" />
+				<exclude name="**/*.class" />
+			</fileset>
+		</copy>
+	</target>
+
+	<!-- 
+		JARS
+		Iterate of the jars to build.
+	-->
+	<target name="build" depends="compile">
+		<mkdir dir="${target}"/>
+		<bnd command="build" exceptions="true" basedir="${project}" />
+	</target>
+	
+	<target name="release" depends="build">
+		<subant target="release" inheritAll="false" buildpath="${project.dependson}">
+			<property name="donotrecurse" value="true" />
+		</subant>
+		<bnd command="release" exceptions="true" basedir="${project}"/>
+	</target>
+
+	<target name="junit" depends="build">
+		<junit printsummary="true">			
+			<classpath path="${project.buildpath}" />
+			<formatter type="xml"/>
+			<batchtest todir="tmp" >
+			    <fileset dir="${src}">
+			      <include name="test/**.java"/>
+			    </fileset>
+			</batchtest>
+		</junit>
+	</target>
+	
+	<!-- TestNG support -->
+	<target name="testng" depends="build, compiletest">
+	    <mkdir dir="tmp" />
+        <testng classpath="${project}/bin_test:${project.buildpath}:${workspacedir}/cnf/lib/testng-6.5.2.jar"
+                outputDir="tmp"
+                haltOnfailure="true">
+            <classfileset dir="${project}/bin_test" includes="**/*.class" />
+        </testng>
+	</target>
+
+	<!--
+	     CLEAN
+	-->
+	<target name="deepclean" depends="init,clean" if="project.dependson">
+		<subant target="clean" inheritAll="false" buildpath="${project.dependson}" />
+	</target>
+
+	<target name="clean" depends="init">
+		<bnd command="clean" exceptions="true" basedir="${project}" />
+		<delete dir="bin"/>
+		<delete dir="bin_test"/>
+		<delete dir="${target}"/>
+		
+		<delete dir="${workspacedir}/cnf/tmp"/>
+		<delete dir="${workspacedir}/cnf/p2target"/>
+	</target>
+
+	<!--
+	     ECHO
+	-->
+	<target name="echo" depends="init">
+		<echo>verbose:                ${verbose}</echo>
+		<echo>project.name:           ${project.name}</echo>
+		<echo>Bundle-Version:         ${Bundle-Version}</echo>
+		<echo>project.output:         ${project.output}</echo>
+		<echo>project.sourcepath:     ${project.sourcepath}</echo>
+		<echo>project.allsourcepath:  ${project.allsourcepath}</echo>
+		<echo>project.buildpath:      ${project.buildpath}</echo>
+		<echo>project.testpath:       ${project.testpath}</echo>
+		<echo>project.dependson:      ${project.dependson}</echo>
+		<echo>project.bootclasspath:  ${project.bootclasspath}</echo>
+		<echo>javac:                  ${javac}</echo>
+		<echo>javac.debug:            ${javac.debug}</echo>
+		<echo>javac.source:           ${javac.source}</echo>
+		<echo>javac.target:           ${javac.target}</echo>
+		<echo>p:                      ${p}</echo>
+		<echo>btool.manifestVersion:  ${btool.manifestVersion}</echo>
+		<echo>btool.analyse:          ${btool.analyse}</echo>
+		<echo>btool.showmanifest:     ${btool.showmanifest}</echo>
+		<echo>btool.noversion:     	  ${btool.noversion}</echo>
+		<echo>btool.sources:     	  ${btool.sources}</echo>
+		<echo>btool.noextraheaders:   ${btool.noextraheaders}</echo>
+		<echo>jars.compile.order:     ${jars.compile.order}</echo>
+		<echo>bin.includes:           ${bin.includes}</echo>
+		<echo>base.modfied:           ${base.modified} (${base.modified.readable})</echo>
+		<echo>target:                 ${target}</echo>
+		<echo>release.target:         ${release.target}</echo>
+		<echo>licensed repo:          ${licensed-repo}</echo>
+		<echo>repo:                   ${repo}</echo>
+		<echo>use.bnd:                ${use.bnd}</echo>
+		<echo>nodeploy:               ${nodeploy}</echo>
+		<echo>-dependson:             ${-dependson}</echo>
+
+	</target>
+	
+	<!--
+	     Default Target
+	-->
+	<target name="none">
+		<fail message="This ant script should never be directly called." />
+	</target>
+
+</project>

Added: ace/sandbox/marrs/cnf/ext/defaults.bnd
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/ext/defaults.bnd?rev=1357570&view=auto
==============================================================================
--- ace/sandbox/marrs/cnf/ext/defaults.bnd (added)
+++ ace/sandbox/marrs/cnf/ext/defaults.bnd Thu Jul  5 12:09:30 2012
@@ -0,0 +1,29 @@
+# General Options
+project.dependson       = ${p-dependson;:}
+project.bootclasspath   = ${p-bootclasspath;:}
+project.buildpath       = ${p-buildpath;:}
+project.sourcepath      = ${p-sourcepath;:}
+project.allsourcepath   = ${p-allsourcepath;:}
+project.output          = ${p-output}
+project.testpath        = ${p-testpath;:}
+
+-verbose:     true
+project:      ${basedir}
+src:          src
+bin:          bin
+target-dir:   generated
+target:       ${project}/${target-dir}
+build:        ${workspace}/cnf
+p:            ${basename;${project}}
+project.name: ${p}
+
+# Java Compiler Options
+java:         java
+javac:        javac
+javac.source: 1.5
+javac.target: 1.5
+javac.debug:  on
+
+# Bnd Options
+-sources:       true
+-sourcepath:    ${project}/src

Added: ace/sandbox/marrs/cnf/ext/repositories.bnd
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/ext/repositories.bnd?rev=1357570&view=auto
==============================================================================
--- ace/sandbox/marrs/cnf/ext/repositories.bnd (added)
+++ ace/sandbox/marrs/cnf/ext/repositories.bnd Thu Jul  5 12:09:30 2012
@@ -0,0 +1,9 @@
+repo:           ${build}/repo
+releaserepo:    ${build}/releaserepo
+
+-plugin:        aQute.lib.deployer.obr.LocalOBR;name='Local Repository';local=${repo};locations='http://bundles.bndtools.org.s3.amazonaws.com/repository.xml',\
+                aQute.lib.deployer.obr.OBR;name='Build Repository';mode=build;locations='http://buildrepo.bndtools.org.s3.amazonaws.com/repository.xml',\
+                aQute.lib.deployer.obr.LocalOBR;name='Release';local=${releaserepo},\
+                org.osgi.impl.bundle.bindex.BundleIndexerImpl;path:=${repo}/org.osgi.impl.bundle.bindex/org.osgi.impl.bundle.bindex-2.2.0.jar
+
+-releaserepo:   Release
\ No newline at end of file

Added: ace/sandbox/marrs/cnf/lib/aopalliance-1.0.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/aopalliance-1.0.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/aopalliance-1.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/bcprov-jdk14-140.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/bcprov-jdk14-140.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/bcprov-jdk14-140.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/commons-codec-1.4.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/commons-codec-1.4.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/commons-codec-1.4.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/commons-collections-3.2.1.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/commons-collections-3.2.1.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/commons-collections-3.2.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/commons-io-2.0.1.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/commons-io-2.0.1.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/commons-io-2.0.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/commons-lang-2.4.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/commons-lang-2.4.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/commons-lang-2.4.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/commons-logging-1.1.1.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/commons-logging-1.1.1.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/commons-logging-1.1.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/gson-1.7.1.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/gson-1.7.1.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/gson-1.7.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/guava-11.0.2.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/guava-11.0.2.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/guava-11.0.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/javax.inject-1.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/javax.inject-1.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/javax.inject-1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/jsch-0.1.44-1.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/jsch-0.1.44-1.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/jsch-0.1.44-1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/jsr250-api-1.0.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/jsr250-api-1.0.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/jsr250-api-1.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/jsr305-1.3.9.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/jsr305-1.3.9.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/jsr305-1.3.9.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/junit-4.8.2.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/junit-4.8.2.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/junit-4.8.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/kxml2-2.3.0.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/kxml2-2.3.0.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/kxml2-2.3.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/oauth-20100527.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/oauth-20100527.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/oauth-20100527.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/pax-exam-2.3.0.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/pax-exam-2.3.0.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/pax-exam-2.3.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/pax-exam-container-native-2.3.0.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/pax-exam-container-native-2.3.0.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/pax-exam-container-native-2.3.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/pax-exam-inject-2.3.0.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/pax-exam-inject-2.3.0.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/pax-exam-inject-2.3.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/pax-exam-junit4-2.3.0.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/pax-exam-junit4-2.3.0.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/pax-exam-junit4-2.3.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/pax-exam-link-mvn-2.3.0.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/pax-exam-link-mvn-2.3.0.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/pax-exam-link-mvn-2.3.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/pax-url-aether-1.3.5.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/pax-url-aether-1.3.5.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/pax-url-aether-1.3.5.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/pax-url-assembly-1.3.5.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/pax-url-assembly-1.3.5.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/pax-url-assembly-1.3.5.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/pax-url-link-1.3.5.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/pax-url-link-1.3.5.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/pax-url-link-1.3.5.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/pax-url-wrap-1.3.5.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/pax-url-wrap-1.3.5.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/pax-url-wrap-1.3.5.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/testng-6.5.2.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/testng-6.5.2.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/testng-6.5.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/velocity-1.6.2.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/velocity-1.6.2.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/velocity-1.6.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/xpp3-1.1.4c.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/xpp3-1.1.4c.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/xpp3-1.1.4c.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/lib/xstream-1.2.2.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/lib/xstream-1.2.2.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/lib/xstream-1.2.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/releaserepo/repository.xml
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/releaserepo/repository.xml?rev=1357570&view=auto
==============================================================================
--- ace/sandbox/marrs/cnf/releaserepo/repository.xml (added)
+++ ace/sandbox/marrs/cnf/releaserepo/repository.xml Thu Jul  5 12:09:30 2012
@@ -0,0 +1,4 @@
+<?xml version='1.0' encoding='utf-8'?>
+<?xml-stylesheet type='text/xsl' href='http://www2.osgi.org/www/obr2html.xsl'?>
+
+<repository lastmodified='20111009020953.028' name='Release-Repository'/>
\ No newline at end of file

Added: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Fcom.jcraft.jsch/com.jcraft.jsch-0.1.41.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/repo/.obrcache/http%253A%252F%252Fbundles.bndtools.org.s3.amazonaws.com%252Fcom.jcraft.jsch/com.jcraft.jsch-0.1.41.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Fcom.jcraft.jsch/com.jcraft.jsch-0.1.41.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Fjavax.servlet/javax.servlet-2.5.0.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/repo/.obrcache/http%253A%252F%252Fbundles.bndtools.org.s3.amazonaws.com%252Fjavax.servlet/javax.servlet-2.5.0.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Fjavax.servlet/javax.servlet-2.5.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.apache.felix.configadmin/org.apache.felix.configadmin-1.2.8.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/repo/.obrcache/http%253A%252F%252Fbundles.bndtools.org.s3.amazonaws.com%252Forg.apache.felix.configadmin/org.apache.felix.configadmin-1.2.8.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.apache.felix.configadmin/org.apache.felix.configadmin-1.2.8.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.apache.felix.fileinstall/org.apache.felix.fileinstall-3.1.4.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/repo/.obrcache/http%253A%252F%252Fbundles.bndtools.org.s3.amazonaws.com%252Forg.apache.felix.fileinstall/org.apache.felix.fileinstall-3.1.4.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.apache.felix.fileinstall/org.apache.felix.fileinstall-3.1.4.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.apache.felix.gogo.command/org.apache.felix.gogo.command-0.12.0.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/repo/.obrcache/http%253A%252F%252Fbundles.bndtools.org.s3.amazonaws.com%252Forg.apache.felix.gogo.command/org.apache.felix.gogo.command-0.12.0.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.apache.felix.gogo.command/org.apache.felix.gogo.command-0.12.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.apache.felix.gogo.runtime/org.apache.felix.gogo.runtime-0.10.0.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/repo/.obrcache/http%253A%252F%252Fbundles.bndtools.org.s3.amazonaws.com%252Forg.apache.felix.gogo.runtime/org.apache.felix.gogo.runtime-0.10.0.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.apache.felix.gogo.runtime/org.apache.felix.gogo.runtime-0.10.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.apache.felix.gogo.shell/org.apache.felix.gogo.shell-0.10.0.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/repo/.obrcache/http%253A%252F%252Fbundles.bndtools.org.s3.amazonaws.com%252Forg.apache.felix.gogo.shell/org.apache.felix.gogo.shell-0.10.0.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.apache.felix.gogo.shell/org.apache.felix.gogo.shell-0.10.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.apache.felix.http.jetty/org.apache.felix.http.jetty-2.2.0.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/repo/.obrcache/http%253A%252F%252Fbundles.bndtools.org.s3.amazonaws.com%252Forg.apache.felix.http.jetty/org.apache.felix.http.jetty-2.2.0.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.apache.felix.http.jetty/org.apache.felix.http.jetty-2.2.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.apache.felix.log/org.apache.felix.log-1.0.1.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/repo/.obrcache/http%253A%252F%252Fbundles.bndtools.org.s3.amazonaws.com%252Forg.apache.felix.log/org.apache.felix.log-1.0.1.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.apache.felix.log/org.apache.felix.log-1.0.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.easymock/org.easymock-3.0.0.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/repo/.obrcache/http%253A%252F%252Fbundles.bndtools.org.s3.amazonaws.com%252Forg.easymock/org.easymock-3.0.0.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.easymock/org.easymock-3.0.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.mockito.mockito-all/org.mockito.mockito-all-1.8.5.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/repo/.obrcache/http%253A%252F%252Fbundles.bndtools.org.s3.amazonaws.com%252Forg.mockito.mockito-all/org.mockito.mockito-all-1.8.5.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Forg.mockito.mockito-all/org.mockito.mockito-all-1.8.5.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Fosgi.cmpn/osgi.cmpn-4.2.0.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/repo/.obrcache/http%253A%252F%252Fbundles.bndtools.org.s3.amazonaws.com%252Fosgi.cmpn/osgi.cmpn-4.2.0.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Fosgi.cmpn/osgi.cmpn-4.2.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Fosgi.cmpn/osgi.cmpn-4.2.1.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/repo/.obrcache/http%253A%252F%252Fbundles.bndtools.org.s3.amazonaws.com%252Fosgi.cmpn/osgi.cmpn-4.2.1.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Fosgi.cmpn/osgi.cmpn-4.2.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Fslf4j.api/slf4j.api-1.6.2.jar
URL: http://svn.apache.org/viewvc/ace/sandbox/marrs/cnf/repo/.obrcache/http%253A%252F%252Fbundles.bndtools.org.s3.amazonaws.com%252Fslf4j.api/slf4j.api-1.6.2.jar?rev=1357570&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ace/sandbox/marrs/cnf/repo/.obrcache/http%3A%2F%2Fbundles.bndtools.org.s3.amazonaws.com%2Fslf4j.api/slf4j.api-1.6.2.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream