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:31 UTC

[archiva] branch feature/storage_refactoring updated (a2dd2a1 -> 28ae84d)

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

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


    from a2dd2a1  Migrating to JCR primary types
     new 8329523  Fixing facet retrieval
     new 28ae84d  Changing artifacts.xml for statistics test

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../repository/AbstractMetadataRepositoryTest.java |    2 +
 .../repository/jcr/JcrMetadataRepository.java      |   68 +-
 .../repository/jcr/OakRepositoryFactory.java       |    3 +-
 .../archiva/metadata/repository/jcr/jcr-schema.cnd |    4 +-
 .../JcrRepositoryStatisticsGatheringTest.java      |   72 +-
 .../src/test/resources/artifacts.xml               | 8281 ++++++++++++++++++++
 .../src/test/resources/artifacts.xml.gz            |  Bin 7436 -> 0 bytes
 7 files changed, 8396 insertions(+), 34 deletions(-)
 create mode 100644 archiva-modules/plugins/metadata-store-jcr/src/test/resources/artifacts.xml
 delete mode 100644 archiva-modules/plugins/metadata-store-jcr/src/test/resources/artifacts.xml.gz


[archiva] 02/02: Changing artifacts.xml for statistics test

Posted by ma...@apache.org.
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 28ae84d45aad833e2ab5108e45cbf316a2720829
Author: Martin Stockhammer <ma...@apache.org>
AuthorDate: Mon Aug 26 23:47:22 2019 +0200

    Changing artifacts.xml for statistics test
---
 .../repository/jcr/JcrMetadataRepository.java      |    3 +-
 .../JcrRepositoryStatisticsGatheringTest.java      |   72 +-
 .../src/test/resources/artifacts.xml               | 3237 +++++---------------
 3 files changed, 879 insertions(+), 2433 deletions(-)

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 7e48903..15d3013 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
@@ -1969,7 +1969,7 @@ public class JcrMetadataRepository
 //            Query query = queryManager.createQuery( "SELECT size FROM [archiva:artifact] " + whereClause,
 //                                                    Query.JCR_SQL2 );
             String whereClause = "WHERE ISDESCENDANTNODE([/repositories/" + repositoryId + "/content])";
-            Query query = queryManager.createQuery( "SELECT size FROM [archiva:artifact] " + whereClause, Query.JCR_SQL2 );
+            Query query = queryManager.createQuery( "SELECT type,size FROM ["+ARTIFACT_NODE_TYPE+"] " + whereClause, Query.JCR_SQL2 );
 
             QueryResult queryResult = query.execute();
 
@@ -1978,6 +1978,7 @@ public class JcrMetadataRepository
             for ( Row row : JcrUtils.getRows( queryResult ) )
             {
                 Node n = row.getNode();
+                log.debug( "Result node {}", n );
                 totalSize += row.getValue( "size" ).getLong();
 
                 String type;
diff --git a/archiva-modules/plugins/metadata-store-jcr/src/test/java/org/apache/archiva/metadata/repository/stats/JcrRepositoryStatisticsGatheringTest.java b/archiva-modules/plugins/metadata-store-jcr/src/test/java/org/apache/archiva/metadata/repository/stats/JcrRepositoryStatisticsGatheringTest.java
index 7e1e83d..c10103a 100644
--- a/archiva-modules/plugins/metadata-store-jcr/src/test/java/org/apache/archiva/metadata/repository/stats/JcrRepositoryStatisticsGatheringTest.java
+++ b/archiva-modules/plugins/metadata-store-jcr/src/test/java/org/apache/archiva/metadata/repository/stats/JcrRepositoryStatisticsGatheringTest.java
@@ -23,9 +23,11 @@ import junit.framework.TestCase;
 import org.apache.archiva.metadata.model.MetadataFacetFactory;
 import org.apache.archiva.metadata.repository.AbstractMetadataRepositoryTest;
 import org.apache.archiva.metadata.repository.DefaultMetadataResolver;
+import org.apache.archiva.metadata.repository.MetadataRepository;
 import org.apache.archiva.metadata.repository.MetadataRepositoryException;
 import org.apache.archiva.metadata.repository.MetadataService;
 import org.apache.archiva.metadata.repository.RepositorySession;
+import org.apache.archiva.metadata.repository.RepositorySessionFactory;
 import org.apache.archiva.metadata.repository.jcr.JcrMetadataRepository;
 import org.apache.archiva.metadata.repository.jcr.JcrRepositorySessionFactory;
 import org.apache.archiva.metadata.repository.jcr.JcrRepositorySession;
@@ -50,6 +52,7 @@ import javax.jcr.Session;
 import javax.jcr.nodetype.NodeTypeManager;
 import javax.jcr.nodetype.NodeTypeTemplate;
 import java.io.IOException;
+import java.io.InputStream;
 import java.nio.file.Files;
 import java.nio.file.Path;
 import java.nio.file.Paths;
@@ -64,6 +67,7 @@ import java.util.zip.GZIPInputStream;
 public class JcrRepositoryStatisticsGatheringTest
     extends TestCase
 {
+    private static final Logger log = LoggerFactory.getLogger( JcrRepositoryStatisticsGatheringTest.class );
     private static final int TOTAL_FILE_COUNT = 1000;
 
     private static final int NEW_FILE_COUNT = 500;
@@ -78,6 +82,8 @@ public class JcrRepositoryStatisticsGatheringTest
     private static Repository jcrRepository;
 
     Logger logger = LoggerFactory.getLogger( getClass() );
+    private int assertRetrySleepMs = 500;
+    private int assertMaxTries = 5;
 
     @BeforeClass
     public static void setupSpec()
@@ -121,6 +127,61 @@ public class JcrRepositoryStatisticsGatheringTest
         sessionFactory.close();
     }
 
+    /*
+     * Used by tryAssert to allow to throw exceptions in the lambda expression.
+     */
+    @FunctionalInterface
+    protected interface AssertFunction
+    {
+        void accept( ) throws Exception;
+    }
+
+    protected void tryAssert( AssertFunction func ) throws Exception
+    {
+        tryAssert( func, assertMaxTries, assertRetrySleepMs );
+    }
+
+
+    /*
+     * Runs the assert method until the assert is successful or the number of retries
+     * is reached. This is needed because the JCR Oak index update is asynchronous, so updates
+     * may not be visible immediately after the modification.
+     */
+    private void tryAssert( AssertFunction func, int retries, int sleepMillis ) throws Exception
+    {
+        Throwable t = null;
+        int retry = retries;
+        while ( retry-- > 0 )
+        {
+            try
+            {
+                func.accept( );
+                return;
+            }
+            catch ( Exception | AssertionError e )
+            {
+                t = e;
+                Thread.currentThread( ).sleep( sleepMillis );
+                log.warn( "Retrying assert {}: {}", retry, e.getMessage( ) );
+            }
+        }
+        log.warn( "Retries: {}, Exception: {}", retry, t.getMessage( ) );
+        if ( retry <= 0 && t != null )
+        {
+            if ( t instanceof RuntimeException )
+            {
+                throw (RuntimeException) t;
+            }
+            else if ( t instanceof Exception )
+            {
+                throw (Exception) t;
+            }
+            else if ( t instanceof Error )
+            {
+                throw (Error) t;
+            }
+        }
+    }
 
     private static void registerMixinNodeType( NodeTypeManager nodeTypeManager, String type )
         throws RepositoryException
@@ -175,7 +236,6 @@ public class JcrRepositoryStatisticsGatheringTest
             testedStatistics.setScanStartTime(startTime);
             testedStatistics.setScanEndTime(endTime);
 
-            repository.populateStatistics(repSession, repository, TEST_REPO, testedStatistics);
 
             DefaultRepositoryStatistics expectedStatistics = new DefaultRepositoryStatistics();
             expectedStatistics.setNewFileCount(NEW_FILE_COUNT);
@@ -195,13 +255,15 @@ public class JcrRepositoryStatisticsGatheringTest
             expectedStatistics.setTotalCountForType("pom", 144);
             expectedStatistics.setRepositoryId(TEST_REPO);
 
-            logger.info("getTotalCountForType: {}", testedStatistics.getTotalCountForType());
+            tryAssert( () -> {
+                repository.populateStatistics(repSession, repository, TEST_REPO, testedStatistics);
+
+                logger.info("getTotalCountForType: {}", testedStatistics.getTotalCountForType());
 
             assertEquals(NEW_FILE_COUNT, testedStatistics.getNewFileCount());
             assertEquals(TOTAL_FILE_COUNT, testedStatistics.getTotalFileCount());
             assertEquals(endTime, testedStatistics.getScanEndTime());
             assertEquals(startTime, testedStatistics.getScanStartTime());
-            assertEquals(95954585, testedStatistics.getTotalArtifactFileSize());
             assertEquals(269, testedStatistics.getTotalArtifactCount());
             assertEquals(1, testedStatistics.getTotalGroupCount());
             assertEquals(43, testedStatistics.getTotalProjectCount());
@@ -213,6 +275,8 @@ public class JcrRepositoryStatisticsGatheringTest
             assertEquals(2, testedStatistics.getTotalCountForType("war"));
             assertEquals(144, testedStatistics.getTotalCountForType("pom"));
             assertEquals(10, testedStatistics.getTotalCountForType("java-source"));
+            assertEquals(95954585, testedStatistics.getTotalArtifactFileSize());
+        });
 
         }
     }
@@ -227,7 +291,7 @@ public class JcrRepositoryStatisticsGatheringTest
         n = JcrUtils.getOrAddNode( n, "org" );
         n = JcrUtils.getOrAddNode( n, "apache" );
 
-        GZIPInputStream inputStream = new GZIPInputStream( getClass( ).getResourceAsStream( "/artifacts.xml.gz" ) );
+        InputStream inputStream = getClass( ).getResourceAsStream( "/artifacts.xml" );
         jcrSession.importXML( n.getPath( ), inputStream, ImportUUIDBehavior.IMPORT_UUID_CREATE_NEW );
         jcrSession.save( );
     }
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
index bcff606..d4ed671 100644
--- a/archiva-modules/plugins/metadata-store-jcr/src/test/resources/artifacts.xml
+++ b/archiva-modules/plugins/metadata-store-jcr/src/test/resources/artifacts.xml
@@ -2,12 +2,7 @@
 <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 ">
+         xmlns:nt="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>
@@ -33,9 +28,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -51,12 +43,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -72,9 +61,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -90,12 +76,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -111,9 +94,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -129,12 +109,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -150,9 +127,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -168,12 +142,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -189,9 +160,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -207,12 +175,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -236,9 +201,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -254,12 +216,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -267,9 +226,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -285,12 +241,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -306,9 +259,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -324,12 +274,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -337,9 +284,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -355,12 +299,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -376,9 +317,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -394,12 +332,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -407,9 +342,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -425,12 +357,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -454,9 +383,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -472,12 +398,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -485,9 +408,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -503,12 +423,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -524,9 +441,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -542,12 +456,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -555,9 +466,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -573,12 +481,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -594,9 +499,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -612,12 +514,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -625,9 +524,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -643,12 +539,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -672,9 +565,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -690,12 +580,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -703,9 +590,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -721,12 +605,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -742,9 +623,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -760,12 +638,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -773,9 +648,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -791,12 +663,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -812,9 +681,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -830,12 +696,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -843,9 +706,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -861,12 +721,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -890,9 +747,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -908,12 +762,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -929,9 +780,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -947,12 +795,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -968,9 +813,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -986,12 +828,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -1007,9 +846,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1025,12 +861,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -1046,9 +879,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1064,12 +894,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -1093,9 +920,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1111,12 +935,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="classifier" sv:type="String">
             <sv:value>sources</sv:value>
           </sv:property>
@@ -1127,9 +948,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1145,12 +963,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -1158,9 +973,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1176,12 +988,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -1197,9 +1006,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1215,12 +1021,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -1228,9 +1031,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1246,12 +1046,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -1267,9 +1064,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1285,12 +1079,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -1298,9 +1089,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1316,12 +1104,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -1337,9 +1122,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1355,12 +1137,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -1368,9 +1147,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1386,12 +1162,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -1407,9 +1180,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1425,12 +1195,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -1438,9 +1205,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1456,12 +1220,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -1485,9 +1246,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1503,12 +1261,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="classifier" sv:type="String">
             <sv:value>sources</sv:value>
           </sv:property>
@@ -1519,9 +1274,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1537,12 +1289,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -1550,9 +1299,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1568,12 +1314,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -1589,9 +1332,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1607,12 +1347,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -1620,9 +1357,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1638,12 +1372,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -1659,9 +1390,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1677,12 +1405,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -1690,9 +1415,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1708,12 +1430,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -1729,9 +1448,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1747,12 +1463,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -1760,9 +1473,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1778,12 +1488,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -1799,9 +1506,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1817,12 +1521,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -1830,9 +1531,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1848,12 +1546,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -1877,9 +1572,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1895,12 +1587,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="classifier" sv:type="String">
             <sv:value>sources</sv:value>
           </sv:property>
@@ -1911,9 +1600,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1929,12 +1615,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -1942,9 +1625,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1960,12 +1640,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -1981,9 +1658,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -1999,12 +1673,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -2012,9 +1683,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2030,12 +1698,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -2051,9 +1716,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2069,12 +1731,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -2082,9 +1741,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2100,12 +1756,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -2121,9 +1774,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2139,12 +1789,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -2152,9 +1799,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2170,12 +1814,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -2191,9 +1832,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2209,12 +1847,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -2222,9 +1857,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2240,12 +1872,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -2269,9 +1898,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2287,12 +1913,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="classifier" sv:type="String">
             <sv:value>sources</sv:value>
           </sv:property>
@@ -2303,9 +1926,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2321,12 +1941,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -2334,9 +1951,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2352,12 +1966,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -2373,9 +1984,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2391,12 +1999,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -2404,9 +2009,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2422,12 +2024,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -2443,9 +2042,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2461,12 +2057,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -2474,9 +2067,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2492,12 +2082,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -2513,9 +2100,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2531,12 +2115,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -2544,9 +2125,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2562,12 +2140,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -2583,9 +2158,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2601,12 +2173,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -2614,9 +2183,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2632,12 +2198,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -2661,9 +2224,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2679,12 +2239,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -2700,9 +2257,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2718,12 +2272,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -2739,9 +2290,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2757,12 +2305,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -2778,9 +2323,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2796,12 +2338,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -2817,9 +2356,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2835,12 +2371,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -2864,9 +2397,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2882,12 +2412,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -2895,9 +2422,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2913,12 +2437,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -2934,9 +2455,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2952,12 +2470,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -2965,9 +2480,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -2983,12 +2495,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -3004,9 +2513,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3022,12 +2528,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -3035,9 +2538,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3053,12 +2553,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -3082,9 +2579,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3100,12 +2594,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="classifier" sv:type="String">
             <sv:value>sources</sv:value>
           </sv:property>
@@ -3116,9 +2607,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3134,12 +2622,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -3147,9 +2632,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3165,12 +2647,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -3186,9 +2665,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3204,12 +2680,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -3217,9 +2690,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3235,12 +2705,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -3256,9 +2723,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3274,12 +2738,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -3287,9 +2748,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3305,12 +2763,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -3326,9 +2781,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3344,12 +2796,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -3357,9 +2806,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3375,12 +2821,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -3404,9 +2847,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3422,12 +2862,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -3435,9 +2872,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3453,12 +2887,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -3474,9 +2905,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3492,12 +2920,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -3505,9 +2930,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3523,12 +2945,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -3544,9 +2963,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3562,12 +2978,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -3575,9 +2988,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3593,12 +3003,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -3622,9 +3029,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3640,12 +3044,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -3653,9 +3054,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3671,12 +3069,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -3692,9 +3087,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3710,12 +3102,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -3723,9 +3112,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3741,12 +3127,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -3762,9 +3145,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3780,12 +3160,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -3793,9 +3170,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3811,12 +3185,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -3840,9 +3211,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3858,12 +3226,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="classifier" sv:type="String">
             <sv:value>sources</sv:value>
           </sv:property>
@@ -3874,9 +3239,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3892,12 +3254,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -3905,9 +3264,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3923,12 +3279,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -3944,9 +3297,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3962,12 +3312,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -3975,9 +3322,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -3993,12 +3337,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -4014,9 +3355,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4032,12 +3370,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -4045,9 +3380,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4063,12 +3395,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -4092,9 +3421,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4110,12 +3436,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -4123,9 +3446,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4141,12 +3461,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -4162,9 +3479,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4180,12 +3494,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -4193,9 +3504,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4211,12 +3519,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -4232,9 +3537,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4249,13 +3551,10 @@ http://www.jcp.org/jcr/nt/1.0 ">
         <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:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -4263,9 +3562,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4281,12 +3577,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -4310,9 +3603,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4328,12 +3618,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -4341,9 +3628,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4359,12 +3643,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -4380,9 +3661,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4398,12 +3676,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -4411,9 +3686,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4429,12 +3701,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -4450,9 +3719,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4468,12 +3734,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -4481,9 +3744,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4499,12 +3759,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -4520,9 +3777,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4538,12 +3792,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -4551,9 +3802,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4569,12 +3817,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -4598,9 +3843,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4616,12 +3858,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="classifier" sv:type="String">
             <sv:value>bin</sv:value>
           </sv:property>
@@ -4632,9 +3871,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4650,12 +3886,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -4671,9 +3904,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4689,12 +3919,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="classifier" sv:type="String">
             <sv:value>bin.tar</sv:value>
           </sv:property>
@@ -4705,9 +3932,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4723,12 +3947,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -4752,9 +3973,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4770,12 +3988,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -4783,9 +3998,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4801,12 +4013,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -4822,9 +4031,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4840,12 +4046,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -4853,9 +4056,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4871,12 +4071,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -4892,9 +4089,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4910,12 +4104,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -4923,9 +4114,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4941,12 +4129,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -4970,9 +4155,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -4988,12 +4170,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -5001,9 +4180,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5019,12 +4195,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -5040,9 +4213,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5058,12 +4228,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -5071,9 +4238,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5089,12 +4253,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -5118,9 +4279,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5136,12 +4294,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="classifier" sv:type="String">
             <sv:value>sources</sv:value>
           </sv:property>
@@ -5152,9 +4307,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5170,12 +4322,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -5183,9 +4332,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5201,12 +4347,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -5222,9 +4365,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5240,12 +4380,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -5253,9 +4390,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5271,12 +4405,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -5292,9 +4423,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5310,12 +4438,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -5323,9 +4448,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5341,12 +4463,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -5362,9 +4481,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5380,12 +4496,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -5393,9 +4506,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5411,12 +4521,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -5432,9 +4539,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5450,12 +4554,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -5463,9 +4564,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5481,12 +4579,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -5510,9 +4605,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5528,12 +4620,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -5549,9 +4638,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5567,12 +4653,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -5588,9 +4671,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5606,12 +4686,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -5627,9 +4704,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5645,12 +4719,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -5666,9 +4737,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5684,12 +4752,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -5713,9 +4778,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5731,12 +4793,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="classifier" sv:type="String">
             <sv:value>site</sv:value>
           </sv:property>
@@ -5747,9 +4806,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5765,12 +4821,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -5786,9 +4839,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5804,12 +4854,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="classifier" sv:type="String">
             <sv:value>site</sv:value>
           </sv:property>
@@ -5820,9 +4867,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5838,12 +4882,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -5859,9 +4900,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5877,12 +4915,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="classifier" sv:type="String">
             <sv:value>site</sv:value>
           </sv:property>
@@ -5893,9 +4928,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5911,12 +4943,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -5940,9 +4969,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5958,12 +4984,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="classifier" sv:type="String">
             <sv:value>sources</sv:value>
           </sv:property>
@@ -5974,9 +4997,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -5992,12 +5012,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -6005,9 +5022,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6023,12 +5037,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -6044,9 +5055,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6062,12 +5070,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -6075,9 +5080,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6093,12 +5095,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -6114,9 +5113,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6132,12 +5128,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -6145,9 +5138,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6163,12 +5153,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -6184,9 +5171,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6202,12 +5186,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -6215,9 +5196,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6233,12 +5211,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -6254,9 +5229,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6272,12 +5244,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -6285,9 +5254,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6303,12 +5269,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -6332,9 +5295,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6350,12 +5310,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -6363,9 +5320,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6381,12 +5335,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -6402,9 +5353,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6420,12 +5368,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -6433,9 +5378,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6451,12 +5393,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -6480,9 +5419,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6498,12 +5434,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -6511,9 +5444,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6529,12 +5459,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -6550,9 +5477,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6568,12 +5492,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -6581,9 +5502,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6599,12 +5517,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -6620,9 +5535,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6638,12 +5550,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -6651,9 +5560,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6669,12 +5575,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -6698,9 +5601,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6716,12 +5616,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -6729,9 +5626,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6747,12 +5641,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -6768,9 +5659,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6786,12 +5674,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -6799,9 +5684,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6817,12 +5699,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -6838,9 +5717,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6856,12 +5732,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -6869,9 +5742,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6887,12 +5757,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -6916,9 +5783,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6934,12 +5798,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -6955,9 +5816,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -6973,12 +5831,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -6994,9 +5849,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7012,12 +5864,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -7041,9 +5890,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7059,12 +5905,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="classifier" sv:type="String">
             <sv:value>sources</sv:value>
           </sv:property>
@@ -7075,9 +5918,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7093,12 +5933,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -7106,9 +5943,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7124,12 +5958,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -7145,9 +5976,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7163,12 +5991,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -7176,9 +6001,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7194,12 +6016,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -7215,9 +6034,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7233,12 +6049,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -7246,9 +6059,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7264,12 +6074,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -7285,9 +6092,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7303,12 +6107,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -7316,9 +6117,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7334,12 +6132,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -7355,9 +6150,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7373,12 +6165,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -7386,9 +6175,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7404,12 +6190,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -7433,9 +6216,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7451,12 +6231,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -7464,9 +6241,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7482,12 +6256,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -7503,9 +6274,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7521,12 +6289,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -7534,9 +6299,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7552,12 +6314,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -7573,9 +6332,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7591,12 +6347,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -7604,9 +6357,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7622,12 +6372,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -7651,9 +6398,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7669,12 +6413,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -7682,9 +6423,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7700,12 +6438,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -7721,9 +6456,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7739,12 +6471,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -7752,9 +6481,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7770,12 +6496,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -7791,9 +6514,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7809,12 +6529,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -7822,9 +6539,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7840,12 +6554,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -7869,9 +6580,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7887,12 +6595,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -7900,9 +6605,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7918,12 +6620,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -7939,9 +6638,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7957,12 +6653,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -7970,9 +6663,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -7988,12 +6678,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -8009,9 +6696,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8027,12 +6711,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -8040,9 +6721,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8058,12 +6736,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -8087,9 +6762,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8105,12 +6777,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -8118,9 +6787,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8136,12 +6802,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -8157,9 +6820,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8175,12 +6835,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -8188,9 +6845,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8206,12 +6860,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -8227,9 +6878,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8245,12 +6893,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -8258,9 +6903,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8276,12 +6918,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -8305,9 +6944,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8323,12 +6959,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -8336,9 +6969,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8354,12 +6984,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -8375,9 +7002,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8393,12 +7017,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -8406,9 +7027,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8424,12 +7042,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -8445,9 +7060,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8463,12 +7075,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -8476,9 +7085,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8494,12 +7100,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -8523,9 +7126,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8541,12 +7141,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -8562,9 +7159,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8580,12 +7174,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -8601,9 +7192,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8619,12 +7207,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -8640,9 +7225,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8658,12 +7240,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -8687,9 +7266,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8705,12 +7281,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -8718,9 +7291,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8736,12 +7306,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>war</sv:value>
           </sv:property>
@@ -8757,9 +7324,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8775,12 +7339,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -8788,9 +7349,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8806,12 +7364,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>war</sv:value>
           </sv:property>
@@ -8835,9 +7390,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8853,12 +7405,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -8866,9 +7415,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8884,12 +7430,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -8905,9 +7448,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8923,12 +7463,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -8936,9 +7473,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8954,12 +7488,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -8975,9 +7506,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -8993,12 +7521,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -9006,9 +7531,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9024,12 +7546,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -9053,9 +7572,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9071,12 +7587,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="classifier" sv:type="String">
             <sv:value>sources</sv:value>
           </sv:property>
@@ -9087,9 +7600,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9105,12 +7615,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -9118,9 +7625,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9136,12 +7640,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -9157,9 +7658,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9175,12 +7673,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -9188,9 +7683,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9206,12 +7698,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -9227,9 +7716,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9245,12 +7731,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -9258,9 +7741,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9276,12 +7756,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -9297,9 +7774,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9315,12 +7789,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -9328,9 +7799,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9346,12 +7814,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -9367,9 +7832,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9385,12 +7847,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -9398,9 +7857,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9416,12 +7872,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -9445,9 +7898,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9463,12 +7913,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -9484,9 +7931,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9502,12 +7946,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -9531,9 +7972,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9549,12 +7987,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -9562,9 +7997,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9580,12 +8012,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -9601,9 +8030,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9619,12 +8045,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -9632,9 +8055,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9650,12 +8070,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -9679,9 +8096,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9697,12 +8111,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -9710,9 +8121,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9728,12 +8136,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -9757,9 +8162,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9775,12 +8177,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -9788,9 +8187,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </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">
@@ -9806,12 +8202,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <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="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>
@@ -9835,9 +8228,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </sv:property>
       <sv:node sv:name="archiva-xmlrpc-services-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">
@@ -9853,12 +8243,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <sv:value>2010-12-30T19:21:15.456+11:00</sv:value>
         </sv:property>
         <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
-          <sv:property sv:name="jcr:primaryType" sv:type="Name">
-            <sv:value>nt:unstructured</sv:value>
-          </sv:property>
-          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
-            <sv:value>archiva:facet</sv:value>
-          </sv:property>
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>jar</sv:value>
           </sv:property>
@@ -9866,9 +8253,6 @@ http://www.jcp.org/jcr/nt/1.0 ">
       </sv:node>
       <sv:node sv:name="archiva-xmlrpc-services-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">
@@ -9884,12 +8268,9 @@ http://www.jcp.org/jcr/nt/1.0 ">
           <sv:value>2010-12-30T19:21:15.457+11:00</sv:value>
         </sv:property>
         <sv:node sv:name="org.apache.archiva.metadata.repository.storage.maven2.artifact">
-          <sv:property sv:name="jcr:primaryType" sv:type="Name">
-            <sv:value>nt:unstructured</sv:value>
-          </sv:property>
-          <sv:property sv:name="jcr:mixinTypes" sv:type="Name" sv:multiple="true">
-            <sv:value>archiva:facet</sv:value>
-          </sv:property>
+        <sv:property sv:name="jcr:primaryType" sv:type="Name">
+          <sv:value>archiva:facet</sv:value>
+        </sv:property>
           <sv:property sv:name="type" sv:type="String">
             <sv:value>pom</sv:value>
           </sv:property>


[archiva] 01/02: Fixing facet retrieval

Posted by ma...@apache.org.
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 ...