You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by ma...@apache.org on 2019/08/26 21:47:32 UTC

[archiva] 01/02: Fixing facet retrieval

This is an automated email from the ASF dual-hosted git repository.

martin_s pushed a commit to branch feature/storage_refactoring
in repository https://gitbox.apache.org/repos/asf/archiva.git

commit 8329523bf52aef5832e043afd36f5fc373225949
Author: Martin Stockhammer <ma...@apache.org>
AuthorDate: Mon Aug 26 21:40:49 2019 +0200

    Fixing facet retrieval
---
 .../repository/AbstractMetadataRepositoryTest.java |    2 +
 .../repository/jcr/JcrMetadataRepository.java      |   65 +-
 .../repository/jcr/OakRepositoryFactory.java       |    3 +-
 .../archiva/metadata/repository/jcr/jcr-schema.cnd |    4 +-
 .../src/test/resources/artifacts.xml               | 9900 ++++++++++++++++++++
 .../src/test/resources/artifacts.xml.gz            |  Bin 7436 -> 0 bytes
 6 files changed, 9945 insertions(+), 29 deletions(-)

diff --git a/archiva-modules/metadata/metadata-repository-api/src/test/java/org/apache/archiva/metadata/repository/AbstractMetadataRepositoryTest.java b/archiva-modules/metadata/metadata-repository-api/src/test/java/org/apache/archiva/metadata/repository/AbstractMetadataRepositoryTest.java
index 494ce81..48d8cb9 100644
--- a/archiva-modules/metadata/metadata-repository-api/src/test/java/org/apache/archiva/metadata/repository/AbstractMetadataRepositoryTest.java
+++ b/archiva-modules/metadata/metadata-repository-api/src/test/java/org/apache/archiva/metadata/repository/AbstractMetadataRepositoryTest.java
@@ -915,6 +915,7 @@ public abstract class AbstractMetadataRepositoryTest
 
         try ( RepositorySession session = getSessionFactory( ).createSession( ) )
         {
+            session.refreshAndDiscard();
             tryAssert( ( ) -> {
                 Stream<TestMetadataFacet> str = getRepository( ).getMetadataFacetStream( session, TEST_REPO_ID, TestMetadataFacet.class, new QueryParameter(0, 100));
                 assertNotNull( str );
@@ -943,6 +944,7 @@ public abstract class AbstractMetadataRepositoryTest
 
         try ( RepositorySession session = getSessionFactory( ).createSession( ) )
         {
+            session.refreshAndDiscard();
             tryAssert( ( ) -> {
                 Stream<TestMetadataFacet> str = getRepository( ).getMetadataFacetStream( session, TEST_REPO_ID, TestMetadataFacet.class, new QueryParameter(5, 10));
                 assertNotNull( str );
diff --git a/archiva-modules/plugins/metadata-store-jcr/src/main/java/org/apache/archiva/metadata/repository/jcr/JcrMetadataRepository.java b/archiva-modules/plugins/metadata-store-jcr/src/main/java/org/apache/archiva/metadata/repository/jcr/JcrMetadataRepository.java
index eb06b0d..7e48903 100644
--- a/archiva-modules/plugins/metadata-store-jcr/src/main/java/org/apache/archiva/metadata/repository/jcr/JcrMetadataRepository.java
+++ b/archiva-modules/plugins/metadata-store-jcr/src/main/java/org/apache/archiva/metadata/repository/jcr/JcrMetadataRepository.java
@@ -552,6 +552,27 @@ public class JcrMetadataRepository
         return query;
     }
 
+    private <T extends MetadataFacet> Function<Row, Optional<T>> getFacetFromRowFunc( MetadataFacetFactory<T> factory, String repositoryId ) {
+        return (Row row) -> {
+            try
+            {
+                Node node = row.getNode( "facet" );
+                if (node.hasProperty( "archiva:name" ))
+                {
+                    String facetName = node.getProperty( "archiva:name" ).getString( );
+                    return Optional.ofNullable( createFacetFromNode( factory, node, repositoryId, facetName ) );
+                } else {
+                    return Optional.empty( );
+                }
+            }
+            catch ( RepositoryException e )
+            {
+                log.error( "Exception encountered {}", e.getMessage( ) );
+                return Optional.empty();
+            }
+        };
+    }
+
     @Override
     public <T extends MetadataFacet> Stream<T> getMetadataFacetStream(RepositorySession session, String repositoryId, Class<T> facetClazz, QueryParameter queryParameter) throws MetadataRepositoryException
     {
@@ -561,23 +582,13 @@ public class JcrMetadataRepository
         final String facetPath = '/'+getFacetPath( repositoryId, facetId );
         StringBuilder query = new StringBuilder("SELECT * FROM [");
         query.append(FACET_NODE_TYPE).append("] AS facet WHERE ISDESCENDANTNODE(facet, [")
-                .append(facetPath).append("])");
+                .append(facetPath).append("]) AND [facet].[archiva:name] IS NOT NULL");
         appendQueryParams(query, "facet", "archiva:name", queryParameter);
         String q = query.toString();
         Map<String, String> params = new HashMap<>( );
         QueryResult result = runNativeJcrQuery( jcrSession, q, params, queryParameter.getOffset(), queryParameter.getLimit());
-        return StreamSupport.stream( createResultSpliterator( result, (Row row)-> {
-            try
-            {
-                Node node = row.getNode( "facet" );
-                String facetName = node.getProperty( "archiva:name" ).getString();
-                return createFacetFromNode( factory, node, repositoryId, facetName );
-            }
-            catch ( RepositoryException e )
-            {
-                return null;
-            }
-        }), false );
+        final Function<Row, Optional<T>> rowFunc = getFacetFromRowFunc( factory, repositoryId );
+        return StreamSupport.stream( createResultSpliterator( result, rowFunc), false ).filter( Optional::isPresent ).map(Optional::get);
 
     }
 
@@ -832,18 +843,23 @@ public class JcrMetadataRepository
         return artifacts;
     }
 
+    private Function<Row, Optional<ArtifactMetadata>> getArtifactFromRowFunc(final String repositoryId) {
+        return (Row row) -> {
+            try {
+                return Optional.of( getArtifactFromNode(repositoryId, row.getNode("artifact")) );
+            } catch (RepositoryException e) {
+                return Optional.empty();
+            }
+        };
+    }
+
     @Override
     public Stream<ArtifactMetadata> getArtifactByDateRangeStream( RepositorySession session, String repositoryId, ZonedDateTime startTime, ZonedDateTime endTime, QueryParameter queryParameter) throws MetadataRepositoryException
     {
         final Session jcrSession = getSession( session );
-        QueryResult result = queryArtifactByDateRange(jcrSession, repositoryId, startTime, endTime, queryParameter);
-        return StreamSupport.stream(createResultSpliterator(result, (row) -> {
-            try {
-                return getArtifactFromNode(repositoryId, row.getNode("artifact"));
-            } catch (RepositoryException e) {
-                return null;
-            }
-        }), false);
+        final QueryResult result = queryArtifactByDateRange(jcrSession, repositoryId, startTime, endTime, queryParameter);
+        final Function<Row, Optional<ArtifactMetadata>> rowFunc = getArtifactFromRowFunc( repositoryId );
+        return StreamSupport.stream( createResultSpliterator( result, rowFunc ), false ).filter( Optional::isPresent ).map( Optional::get );
     }
 
 
@@ -2038,7 +2054,7 @@ public class JcrMetadataRepository
     private Optional<ArtifactMetadata> getArtifactOptional(final String repositoryId, final Row row) {
         try
         {
-            return Optional.ofNullable( getArtifactFromNode( repositoryId, row.getNode( "artifact" ) ) );
+            return Optional.of( getArtifactFromNode( repositoryId, row.getNode( "artifact" ) ) );
         }
         catch ( RepositoryException e )
         {
@@ -2104,9 +2120,8 @@ public class JcrMetadataRepository
             Query query = jcrSession.getWorkspace().getQueryManager().createQuery( q, Query.JCR_SQL2 );
             QueryResult result = query.execute();
 
-            return StreamSupport.stream( createResultSpliterator( result, ( Row row ) ->
-            getArtifactOptional( repositoryId, row ) ), false )
-                .map(Optional::get)
+            return StreamSupport.stream( createResultSpliterator( result, getArtifactFromRowFunc( repositoryId )), false )
+                .filter(Optional::isPresent).map(Optional::get)
                 .skip( queryParameter.getOffset( ) ).limit( queryParameter.getLimit( ) );
 
         }
diff --git a/archiva-modules/plugins/metadata-store-jcr/src/main/java/org/apache/archiva/metadata/repository/jcr/OakRepositoryFactory.java b/archiva-modules/plugins/metadata-store-jcr/src/main/java/org/apache/archiva/metadata/repository/jcr/OakRepositoryFactory.java
index 1db4fd1..28c67bf 100644
--- a/archiva-modules/plugins/metadata-store-jcr/src/main/java/org/apache/archiva/metadata/repository/jcr/OakRepositoryFactory.java
+++ b/archiva-modules/plugins/metadata-store-jcr/src/main/java/org/apache/archiva/metadata/repository/jcr/OakRepositoryFactory.java
@@ -491,8 +491,7 @@ public class OakRepositoryFactory
 
                     initRegexAll( idxBuilder.indexRule( FACET_NODE_TYPE ) )
                         .property("archiva:facetId").propertyIndex().analyzed().ordered()
-                        .property("archiva:name").propertyIndex().analyzed().ordered();
-
+                        .property("archiva:name").propertyIndex().analyzed().ordered().nullCheckEnabled().notNullCheckEnabled();
 
                     idxBuilder.indexRule( MIXIN_META_SCM )
                         .property( "scm.connection" ).propertyIndex()
diff --git a/archiva-modules/plugins/metadata-store-jcr/src/main/resources/org/apache/archiva/metadata/repository/jcr/jcr-schema.cnd b/archiva-modules/plugins/metadata-store-jcr/src/main/resources/org/apache/archiva/metadata/repository/jcr/jcr-schema.cnd
index 1e7f3e7..bf753fc 100644
--- a/archiva-modules/plugins/metadata-store-jcr/src/main/resources/org/apache/archiva/metadata/repository/jcr/jcr-schema.cnd
+++ b/archiva-modules/plugins/metadata-store-jcr/src/main/resources/org/apache/archiva/metadata/repository/jcr/jcr-schema.cnd
@@ -121,7 +121,7 @@
  + * (archiva:facet)
 
 [archiva:facet] > archiva:base
- - archiva:facetId
- - archiva:name
+ - archiva:facetId (string)
+ - archiva:name (string)
  - * (string)
  + * (archiva:facet)
diff --git a/archiva-modules/plugins/metadata-store-jcr/src/test/resources/artifacts.xml b/archiva-modules/plugins/metadata-store-jcr/src/test/resources/artifacts.xml
new file mode 100644
index 0000000..bcff606
--- /dev/null
+++ b/archiva-modules/plugins/metadata-store-jcr/src/test/resources/artifacts.xml
@@ -0,0 +1,9900 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<sv:node sv:name="archiva"
+         xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:archiva="http://archiva.apache.org/jcr/"
+         xmlns:sv="http://www.jcp.org/jcr/sv/1.0"
+         xmlns:nt="http://www.jcp.org/jcr/nt/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="
+http://archiva.apache.org/jcr/
+http://www.jcp.org/jcr/1.0
+http://www.jcp.org/jcr/sv/1.0
+http://www.jcp.org/jcr/nt/1.0 ">
+  <sv:property sv:name="jcr:primaryType" sv:type="Name">
+    <sv:value>nt:unstructured</sv:value>
+  </sv:property>
+  <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+    <sv:value>archiva:namespace</sv:value>
+  </sv:property>
+  <sv:property sv:name="namespace" sv:type="String">
+    <sv:value>org.apache.archiva</sv:value>
+  </sv:property>
+  <sv:node sv:name="archiva">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T10:46:50.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>34947</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:14.917+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:29:18.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>35426</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:14.960+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:23:38.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>40252</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:14.964+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T15:57:10.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>40425</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:14.967+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.3">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-1.3.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-02-18T20:35:01.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>40537</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:14.970+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-applet">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-applet-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:34:24.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>11953</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:14.973+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-applet-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:34:21.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3204</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:14.976+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-applet-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:16:21.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>11953</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:14.979+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-applet-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:16:16.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3206</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:14.982+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-applet-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:33:36.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>12027</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:14.984+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-applet-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:33:34.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3206</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:14.987+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-artifact-converter">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-artifact-converter-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:27:16.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>19632</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:14.989+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-artifact-converter-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:27:09.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2574</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:14.993+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-artifact-converter-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:08:06.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>19637</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:14.995+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-artifact-converter-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:07:58.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2576</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:14.998+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-artifact-converter-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:23:06.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>19878</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.000+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-artifact-converter-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:23:05.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2729</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.002+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-artifact-reports">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-artifact-reports-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:16:16.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>21452</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.005+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-artifact-reports-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:16:13.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2368</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.007+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-artifact-reports-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:54:39.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>21458</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.009+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-artifact-reports-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:54:35.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2370</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.012+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-artifact-reports-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T17:04:56.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>21661</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.014+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-artifact-reports-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T17:04:54.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2510</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.017+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-base">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-base-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T10:46:43.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1749</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.020+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-base-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:29:09.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1751</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.022+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-base-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:23:36.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1751</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.025+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-base-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T15:56:58.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1751</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.027+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.3">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-base-1.3.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-02-18T20:34:59.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1749</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.030+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-checksum">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-checksum-1.1-sources.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-01-16T15:52:58.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>11445</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.032+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="classifier" sv:type="String">
+            <sv:value>sources</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>java-source</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-checksum-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T10:46:41.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>13854</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.035+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-checksum-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T10:46:37.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1773</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.037+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-checksum-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:29:07.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>13857</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.039+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-checksum-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:29:02.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1775</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.041+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-checksum-1.2.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:24:09.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>13884</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.043+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-checksum-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:23:49.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1915</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.046+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-checksum-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T15:56:56.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>13885</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.048+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-checksum-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T15:56:12.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1915</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.050+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.3">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-checksum-1.3.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-02-18T20:35:03.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>13958</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.052+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-checksum-1.3.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-02-18T20:34:58.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2092</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.054+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-common">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-common-1.1-sources.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-01-16T15:54:12.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>16685</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.056+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="classifier" sv:type="String">
+            <sv:value>sources</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>java-source</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-common-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T10:47:45.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>17791</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.059+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-common-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T10:47:41.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2718</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.061+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-common-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:30:12.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>17796</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.063+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-common-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:30:08.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2720</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.065+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-common-1.2.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:24:03.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>17803</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.067+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-common-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:23:40.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2726</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.069+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-common-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:25:52.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>17806</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.071+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-common-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:24:31.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2726</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.074+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.3">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-common-1.3.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-03-02T15:26:51.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>17803</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.076+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-common-1.3.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-03-02T15:26:41.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2724</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.078+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-configuration">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-configuration-1.1-sources.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-01-16T15:53:38.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>57320</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.080+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="classifier" sv:type="String">
+            <sv:value>sources</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>java-source</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-configuration-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T10:55:54.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>69950</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.083+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-configuration-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T10:55:50.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3607</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.085+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-configuration-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:32:56.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>69953</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.088+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-configuration-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:32:52.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3609</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.090+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-configuration-1.2.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:24:08.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>69684</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.092+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-configuration-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:23:46.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>4236</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.095+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-configuration-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:28:22.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>69703</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.097+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-configuration-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:28:20.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>4236</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.100+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.3">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-configuration-1.3.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-03-02T15:26:53.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>69989</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.102+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-configuration-1.3.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-03-02T15:26:44.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>4234</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.104+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-consumer-api">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-consumer-api-1.1-sources.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-01-16T15:55:35.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>17731</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.106+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="classifier" sv:type="String">
+            <sv:value>sources</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>java-source</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-consumer-api-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T10:58:48.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>13582</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.108+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-consumer-api-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T10:58:42.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1648</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.110+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-consumer-api-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:36:04.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>13585</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.112+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-consumer-api-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:36:00.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1650</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.115+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-consumer-api-1.2.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:24:06.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>12360</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.117+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-consumer-api-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:23:44.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1716</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.119+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-consumer-api-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:30:37.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>12362</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.120+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-consumer-api-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:30:19.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1716</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.122+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.3">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-consumer-api-1.3.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-03-02T15:26:51.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>12321</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.124+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-consumer-api-1.3.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-03-02T15:26:42.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1641</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.126+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-consumers">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-consumers-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T10:58:50.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1705</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.128+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-consumers-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:36:06.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1707</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.130+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-consumers-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:23:45.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1713</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.132+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-consumers-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:30:43.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1713</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.134+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.3">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-consumers-1.3.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-03-02T15:26:43.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1667</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.136+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-converter">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-converter-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:28:28.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>14538</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.138+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-converter-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:28:24.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2061</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.140+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-converter-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:09:33.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>14545</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.142+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-converter-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:09:28.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2063</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.144+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-converter-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:29:16.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>14882</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.146+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-converter-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:26:56.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2203</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.148+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-core-consumers">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-core-consumers-1.1-sources.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-01-16T16:04:15.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>30477</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.150+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="classifier" sv:type="String">
+            <sv:value>sources</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>java-source</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-core-consumers-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:13:03.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>37462</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.152+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-core-consumers-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:12:59.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2472</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.154+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-core-consumers-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:51:14.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>37167</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.156+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-core-consumers-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:51:10.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2474</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.158+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-core-consumers-1.2.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:27:02.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>37087</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.159+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-core-consumers-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:27:00.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2361</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.161+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-core-consumers-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:55:38.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>37143</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.163+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-core-consumers-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:55:36.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2361</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.165+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-database">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-database-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:08:15.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>70851</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.167+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-database-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:08:09.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3523</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.169+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-database-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:45:23.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>70968</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.171+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-database-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:45:17.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3525</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.173+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-database-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:59:35.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>76862</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.175+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-database-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:59:33.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3454</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.176+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-database-consumers">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-database-consumers-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:17:47.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>22668</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.178+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-database-consumers-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:17:43.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2353</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.180+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-database-consumers-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:56:14.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>22680</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.182+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-database-consumers-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:56:10.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2355</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.184+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-database-consumers-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T17:05:50.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>23305</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.186+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-database-consumers-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T17:05:20.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2495</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.188+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-dependency-graph">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-dependency-graph-1.1-sources.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-01-16T15:55:12.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>75027</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.190+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="classifier" sv:type="String">
+            <sv:value>sources</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>java-source</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-dependency-graph-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:02:09.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>72880</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.198+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-dependency-graph-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:02:03.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2173</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.200+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-dependency-graph-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:39:01.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>72884</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.202+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-dependency-graph-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:38:56.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2175</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.204+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-dependency-graph-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:16:44.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>76437</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.205+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-dependency-graph-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:15:28.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2463</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.207+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-dependency-tree-consumer">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-dependency-tree-consumer-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:21:30.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>13608</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.209+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-dependency-tree-consumer-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:21:27.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1626</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.211+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-dependency-tree-consumer-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:00:17.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>13614</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.212+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-dependency-tree-consumer-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:00:00.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1628</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.214+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-dependency-tree-consumer-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:14:39.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>13690</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.216+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-dependency-tree-consumer-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:14:35.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1768</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.217+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-indexer">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-indexer-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:10:52.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>58205</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.219+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-indexer-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:10:48.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2788</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.221+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-indexer-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:48:56.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>58253</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.222+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-indexer-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:48:52.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2790</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.224+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-indexer-1.2.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-08-15T16:08:03.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>20528</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.226+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-indexer-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-08-15T16:07:56.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3178</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.227+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-indexer-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T17:06:46.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>20533</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.229+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-indexer-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T17:06:45.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3178</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.230+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-jetty">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-jetty-1.2.1-bin.zip">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-12-21T22:23:20.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>27161374</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.232+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="classifier" sv:type="String">
+            <sv:value>bin</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>zip</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-jetty-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-12-21T22:21:31.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>10107</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.234+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.3.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-jetty-1.3.1-bin.tar.gz">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-08-03T16:41:15.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>29546739</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.236+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="classifier" sv:type="String">
+            <sv:value>bin.tar</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>gz</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-jetty-1.3.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-08-03T16:39:23.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>8987</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.237+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-lucene-consumers">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-lucene-consumers-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:19:22.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>22221</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.239+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-lucene-consumers-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:19:18.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2102</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.241+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-lucene-consumers-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:57:47.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>22174</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.242+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-lucene-consumers-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:57:42.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2104</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.244+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-lucene-consumers-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T17:10:06.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>12615</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.246+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-lucene-consumers-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T17:10:04.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2499</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.247+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-metadata-reports">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-metadata-reports-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:29:48.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>10005</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.249+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-metadata-reports-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:29:43.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2167</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.251+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-metadata-reports-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:11:21.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>10014</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.253+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-metadata-reports-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:11:16.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2169</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.254+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-model">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-model-1.1-sources.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-01-16T15:55:17.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>64097</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.256+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="classifier" sv:type="String">
+            <sv:value>sources</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>java-source</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-model-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T10:57:15.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>158429</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.258+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-model-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T10:57:09.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>5385</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.260+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-model-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:34:25.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>158435</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.261+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-model-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:34:19.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>5387</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.263+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-model-1.2.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:24:03.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>151823</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.265+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-model-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:23:35.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>5909</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.267+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-model-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:53:36.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>151841</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.268+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-model-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:53:34.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>5907</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.270+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.3">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-model-1.3.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-03-02T15:26:50.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>157804</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.272+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-model-1.3.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-03-02T15:26:41.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>6773</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.273+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-modules">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-modules-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T10:46:46.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>7490</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.275+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-modules-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:29:13.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>7492</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.277+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-modules-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:23:37.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>7492</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.278+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-modules-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T15:57:01.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>7492</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.280+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.3">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-modules-1.3.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-02-18T20:35:00.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>7490</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.282+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-parent">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="3">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-parent-3-site.xml">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-06-14T12:29:21.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1219</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.284+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="classifier" sv:type="String">
+            <sv:value>site</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>xml</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-parent-3.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-06-13T11:50:04.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>14332</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.286+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="5">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-parent-5-site.xml">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-02-12T14:56:51.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1219</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>5</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.288+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="classifier" sv:type="String">
+            <sv:value>site</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>xml</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-parent-5.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-02-12T14:54:50.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>15687</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>5</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.290+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="6">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-parent-6-site.xml">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-06-17T16:47:34.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1219</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>6</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.292+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="classifier" sv:type="String">
+            <sv:value>site</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>xml</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-parent-6.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-06-17T14:50:55.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>16063</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>6</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.294+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-policies">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-policies-1.1-sources.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-01-16T15:52:10.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>27577</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.295+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="classifier" sv:type="String">
+            <sv:value>sources</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>java-source</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-policies-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T10:54:31.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>25499</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.298+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-policies-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T10:54:27.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2886</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.299+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-policies-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:31:34.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>25977</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.301+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-policies-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:31:29.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2888</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.303+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-policies-1.2.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:24:09.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>26100</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.305+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-policies-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:23:48.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3271</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.306+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-policies-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:27:27.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>26111</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.308+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-policies-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:27:26.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3268</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.310+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.3">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-policies-1.3.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-03-02T15:26:54.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>26106</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.312+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-policies-1.3.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-03-02T15:26:45.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3266</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.313+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-project-reports">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-project-reports-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:31:02.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>10569</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.315+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-project-reports-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:30:58.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2165</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.317+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-project-reports-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:12:42.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>10579</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.319+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-project-reports-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:12:37.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2167</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.321+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-proxy">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-proxy-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:23:57.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>24853</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.322+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-proxy-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:23:54.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3262</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.324+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-proxy-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:03:31.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>26864</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.326+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-proxy-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:03:24.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3642</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.328+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-proxy-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:18:22.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>27384</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.330+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-proxy-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:17:43.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3910</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.332+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-report-manager">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-report-manager-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:14:46.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>11485</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.333+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-report-manager-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:14:42.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2030</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.335+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-report-manager-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:53:07.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>11497</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.336+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-report-manager-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:53:03.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2032</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.338+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-report-manager-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T17:04:30.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>16774</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.340+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-report-manager-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T17:04:28.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2323</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.341+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-reporting">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-reporting-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:14:49.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1475</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.343+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-reporting-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:53:09.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1477</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.345+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-reporting-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T17:04:31.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1477</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.346+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-repository-layer">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-repository-layer-1.1-sources.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-01-16T15:52:35.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>113443</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.348+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="classifier" sv:type="String">
+            <sv:value>sources</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>java-source</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-repository-layer-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:04:12.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>121592</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.350+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-repository-layer-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:04:05.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3591</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.351+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-repository-layer-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:41:08.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>121601</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.353+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-repository-layer-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:41:01.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3593</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.355+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-repository-layer-1.2.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:24:05.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>128299</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.356+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-repository-layer-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:23:41.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3589</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.358+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-repository-layer-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:54:51.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>129168</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.359+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-repository-layer-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:54:49.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3589</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.361+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.3">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-repository-layer-1.3.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-03-02T15:26:48.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>129243</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.362+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-repository-layer-1.3.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-03-02T15:26:39.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3459</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.364+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-rss">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-rss-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:37:03.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>16737</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.365+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-rss-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:36:59.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1438</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.367+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-rss-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:19:28.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>16793</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.369+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-rss-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:19:24.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1440</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.370+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-rss-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:37:32.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>16837</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.372+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-rss-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:37:19.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1631</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.373+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-scheduled">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-scheduled-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:32:33.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>23138</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.375+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-scheduled-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:32:29.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3788</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.377+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-scheduled-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:14:18.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>23863</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.378+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-scheduled-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:14:14.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3790</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.380+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-scheduled-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T17:08:52.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>32894</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.381+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-scheduled-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T17:07:52.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>4036</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.383+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-security">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-security-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:35:20.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>23545</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.384+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-security-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:35:17.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2923</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.385+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-security-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:17:27.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>23838</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.387+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-security-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:17:22.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2925</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.388+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-security-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:36:28.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>21062</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.390+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-security-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:36:27.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>3127</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.391+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-signature-consumers">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-signature-consumers-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:20:36.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>6326</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.392+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-signature-consumers-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:20:32.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1227</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.394+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-signature-consumers-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:59:11.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>6331</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.395+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-signature-consumers-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:59:07.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1229</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.397+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-signature-consumers-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T17:10:44.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>6330</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.398+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-signature-consumers-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T17:10:43.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1229</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.399+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-transaction">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-transaction-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:25:58.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>14444</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.401+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-transaction-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:25:34.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2039</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.402+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-transaction-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:06:20.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>14448</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.403+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-transaction-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:06:11.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2041</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.405+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-transaction-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:22:36.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>14920</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.406+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-transaction-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:22:35.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2326</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.408+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-web">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-web-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:34:26.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1578</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.409+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-web-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:16:22.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1580</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.410+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-web-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-08-15T16:07:56.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1609</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.412+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-web-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:33:36.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1609</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.414+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-webapp">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-webapp-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-20T12:50:47.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>18681</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.415+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-webapp-1.1.war">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-20T12:52:47.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>16873347</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.417+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>war</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-webapp-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T21:01:12.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>19540</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.418+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-webapp-1.2.2.war">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T21:02:30.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>17295558</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.420+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>war</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-webdav">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-webdav-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:42:43.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>51511</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.421+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-webdav-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:42:39.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>4479</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.423+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-webdav-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:24:57.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>52236</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.424+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-webdav-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T13:24:48.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>4481</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.426+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-webdav-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T20:54:50.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>53801</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.427+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-webdav-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T20:54:48.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>4857</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.428+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-xml-tools">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-xml-tools-1.1-sources.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-01-16T15:53:32.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>16150</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.430+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="classifier" sv:type="String">
+            <sv:value>sources</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>java-source</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-xml-tools-1.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:00:10.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>20957</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.431+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-xml-tools-1.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-08-11T11:00:00.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2810</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.433+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.1.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-xml-tools-1.1.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:37:24.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>20963</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.434+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-xml-tools-1.1.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2008-10-09T12:37:20.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2812</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.1.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.435+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-xml-tools-1.2.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:24:06.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>20818</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.436+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-xml-tools-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-06-10T18:23:42.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2074</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.438+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-xml-tools-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:54:07.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>20818</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.439+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-xml-tools-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T16:54:05.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2074</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.440+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.3">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-xml-tools-1.3.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-03-02T15:26:54.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>20814</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.442+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-xml-tools-1.3.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-03-02T15:26:46.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2072</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.3</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.443+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-xmlrpc">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-xmlrpc-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-08-15T16:07:55.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1604</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.444+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-xmlrpc-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:38:45.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>1604</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.445+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-xmlrpc-api">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.2.1">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-xmlrpc-api-1.2.1.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-08-15T16:08:03.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>14021</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.447+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-xmlrpc-api-1.2.1.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2009-08-15T16:07:55.000+10:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>832</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.1</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.448+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-xmlrpc-api-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:38:45.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>14026</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.449+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-xmlrpc-api-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T19:38:43.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>832</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.451+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-xmlrpc-client">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-xmlrpc-client-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T21:08:27.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>11038</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.452+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-xmlrpc-client-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T21:08:26.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2910</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.453+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
+  </sv:node>
+  <sv:node sv:name="archiva-xmlrpc-security">
+    <sv:property sv:name="jcr:primaryType" sv:type="Name">
+      <sv:value>nt:unstructured</sv:value>
+    </sv:property>
+    <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+      <sv:value>archiva:project</sv:value>
+    </sv:property>
+    <sv:node sv:name="1.2.2">
+      <sv:property sv:name="jcr:primaryType" sv:type="Name">
+        <sv:value>nt:unstructured</sv:value>
+      </sv:property>
+      <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+        <sv:value>archiva:projectVersion</sv:value>
+      </sv:property>
+      <sv:node sv:name="archiva-xmlrpc-security-1.2.2.jar">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T20:22:34.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>14249</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.454+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>jar</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+      <sv:node sv:name="archiva-xmlrpc-security-1.2.2.pom">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>nt:unstructured</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+          <sv:value>archiva:artifact</sv:value>
+        </sv:property>
+        <sv:property sv:name="jcr:lastModified" sv:type="Date">
+          <sv:value>2010-01-20T20:22:32.000+11:00</sv:value>
+        </sv:property>
+        <sv:property sv:name="size" sv:type="Long">
+          <sv:value>2375</sv:value>
+        </sv:property>
+        <sv:property sv:name="version" sv:type="String">
+          <sv:value>1.2.2</sv:value>
+        </sv:property>
+        <sv:property sv:name="whenGathered" sv:type="Date">
+          <sv:value>2010-12-30T19:21:15.455+11:00</sv:value>
+        </sv:property>
+        <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+          <sv:property sv:name="jcr:primaryType" sv:type="Name">
+            <sv:value>nt:unstructured</sv:value>
+          </sv:property>
+          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
+            <sv:value>archiva:facet</sv:value>
+          </sv:property>
+          <sv:property sv:name="type" sv:type="String">
+            <sv:value>pom</sv:value>
+          </sv:property>
+        </sv:node>
+      </sv:node>
+    </sv:node>
... 85 lines suppressed ...