]> source.dussan.org Git - archiva.git/commitdiff
Cleanup of pom multimodule heirarchy after directory moves.
authorJoakim Erdfelt <joakime@apache.org>
Thu, 22 Mar 2007 22:03:11 +0000 (22:03 +0000)
committerJoakim Erdfelt <joakime@apache.org>
Thu, 22 Mar 2007 22:03:11 +0000 (22:03 +0000)
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/branches@521491 13f79535-47bb-0310-9956-ffa450edef68

29 files changed:
archiva-jpox-database-refactor/archiva-api/pom.xml
archiva-jpox-database-refactor/archiva-base/archiva-common/pom.xml
archiva-jpox-database-refactor/archiva-base/archiva-configuration/pom.xml
archiva-jpox-database-refactor/archiva-base/archiva-consumers/archiva-consumer-api/pom.xml [new file with mode: 0644]
archiva-jpox-database-refactor/archiva-base/archiva-consumers/archiva-core-consumers/pom.xml [new file with mode: 0644]
archiva-jpox-database-refactor/archiva-base/archiva-consumers/archiva-database-consumers/pom.xml [new file with mode: 0644]
archiva-jpox-database-refactor/archiva-base/archiva-consumers/archiva-lucene-consumers/pom.xml [new file with mode: 0644]
archiva-jpox-database-refactor/archiva-base/archiva-consumers/archiva-signature-consumers/pom.xml [new file with mode: 0644]
archiva-jpox-database-refactor/archiva-base/archiva-consumers/pom.xml [new file with mode: 0644]
archiva-jpox-database-refactor/archiva-base/archiva-converter/pom.xml
archiva-jpox-database-refactor/archiva-base/archiva-indexer/pom.xml
archiva-jpox-database-refactor/archiva-base/archiva-model/pom.xml
archiva-jpox-database-refactor/archiva-base/archiva-proxy/pom.xml
archiva-jpox-database-refactor/archiva-base/archiva-repository-layer/pom.xml
archiva-jpox-database-refactor/archiva-base/pom.xml [new file with mode: 0644]
archiva-jpox-database-refactor/archiva-cli/pom.xml
archiva-jpox-database-refactor/archiva-database/pom.xml
archiva-jpox-database-refactor/archiva-reporting/archiva-report-manager/pom.xml
archiva-jpox-database-refactor/archiva-reporting/pom.xml [new file with mode: 0644]
archiva-jpox-database-refactor/archiva-web/archiva-applet/pom.xml
archiva-jpox-database-refactor/archiva-web/archiva-security/pom.xml
archiva-jpox-database-refactor/archiva-web/archiva-standalone/archiva-plexus-application/pom.xml
archiva-jpox-database-refactor/archiva-web/archiva-standalone/archiva-plexus-runtime/pom.xml
archiva-jpox-database-refactor/archiva-web/archiva-standalone/pom.xml [new file with mode: 0644]
archiva-jpox-database-refactor/archiva-web/archiva-webapp-test/pom.xml
archiva-jpox-database-refactor/archiva-web/archiva-webapp/pom.xml
archiva-jpox-database-refactor/archiva-web/pom.xml [new file with mode: 0644]
archiva-jpox-database-refactor/maven-meeper/pom.xml
archiva-jpox-database-refactor/pom.xml

index a1cec5ad3783cb96d176f7a535a2e6e17af8653c..ffbd086bb81a7a27da5e80905f9d75782d94b2c1 100644 (file)
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
-    <artifactId>archiva</artifactId>
     <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-parent</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
-  <artifactId>archiva-core</artifactId>
-  <name>Archiva Core</name>
+  <artifactId>archiva-api</artifactId>
+  <name>Archiva API</name>
   <dependencies>
     <dependency>
       <groupId>org.apache.maven.archiva</groupId>
index 47d3c6223b31efb138c1539be0667cbd939e1b0b..263206850919accae88850c70ee894af38d0e6b8 100644 (file)
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
-    <artifactId>archiva</artifactId>
     <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-base</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>archiva-common</artifactId>
-  <name>Archiva Common</name>
+  <name>Archiva Base :: Common</name>
   <dependencies>
     <!-- TO OTHER DEVELOPERS:
          This module should depend on NO OTHER ARCHIVA MODULES.
index 4a502130bf3d4ef5ef0e70daeb2c25953b0bd2f4..790d0cfa42b905b24cfa55d84bba03d76263cc73 100644 (file)
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
-    <artifactId>archiva</artifactId>
     <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-base</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>archiva-configuration</artifactId>
-  <name>Archiva Configuration</name>
+  <name>Archiva Base :: Configuration</name>
   <dependencies>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
diff --git a/archiva-jpox-database-refactor/archiva-base/archiva-consumers/archiva-consumer-api/pom.xml b/archiva-jpox-database-refactor/archiva-base/archiva-consumers/archiva-consumer-api/pom.xml
new file mode 100644 (file)
index 0000000..d5665db
--- /dev/null
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2005-2006 The Apache Software Foundation.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~      http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-consumers</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <artifactId>archiva-consumer-api</artifactId>
+  <name>Archiva Consumer API</name>
+  <packaging>jar</packaging>
+
+  <dependencies>
+    
+  </dependencies>
+</project>
diff --git a/archiva-jpox-database-refactor/archiva-base/archiva-consumers/archiva-core-consumers/pom.xml b/archiva-jpox-database-refactor/archiva-base/archiva-consumers/archiva-core-consumers/pom.xml
new file mode 100644 (file)
index 0000000..7054e54
--- /dev/null
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2005-2006 The Apache Software Foundation.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~      http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-consumers</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <artifactId>archiva-core-consumers</artifactId>
+  <name>Archiva Consumers :: Core Consumers</name>
+  <packaging>jar</packaging>
+
+  <dependencies>
+    
+  </dependencies>
+</project>
diff --git a/archiva-jpox-database-refactor/archiva-base/archiva-consumers/archiva-database-consumers/pom.xml b/archiva-jpox-database-refactor/archiva-base/archiva-consumers/archiva-database-consumers/pom.xml
new file mode 100644 (file)
index 0000000..b708f66
--- /dev/null
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2005-2006 The Apache Software Foundation.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~      http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-consumers</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <artifactId>archiva-database-consumers</artifactId>
+  <name>Archiva Consumers :: Database Consumers</name>
+  <packaging>jar</packaging>
+
+  <dependencies>
+    
+  </dependencies>
+</project>
diff --git a/archiva-jpox-database-refactor/archiva-base/archiva-consumers/archiva-lucene-consumers/pom.xml b/archiva-jpox-database-refactor/archiva-base/archiva-consumers/archiva-lucene-consumers/pom.xml
new file mode 100644 (file)
index 0000000..3ed2a36
--- /dev/null
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2005-2006 The Apache Software Foundation.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~      http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-consumers</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <artifactId>archiva-lucene-consumers</artifactId>
+  <name>Archiva Consumers :: Lucene Consumers</name>
+  <packaging>jar</packaging>
+
+  <dependencies>
+    
+  </dependencies>
+</project>
diff --git a/archiva-jpox-database-refactor/archiva-base/archiva-consumers/archiva-signature-consumers/pom.xml b/archiva-jpox-database-refactor/archiva-base/archiva-consumers/archiva-signature-consumers/pom.xml
new file mode 100644 (file)
index 0000000..8aef254
--- /dev/null
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2005-2006 The Apache Software Foundation.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~      http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-consumers</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <artifactId>archiva-signature-consumers</artifactId>
+  <name>Archiva Consumers :: GPG Signature Consumers</name>
+  <packaging>jar</packaging>
+
+  <dependencies>
+    
+  </dependencies>
+</project>
diff --git a/archiva-jpox-database-refactor/archiva-base/archiva-consumers/pom.xml b/archiva-jpox-database-refactor/archiva-base/archiva-consumers/pom.xml
new file mode 100644 (file)
index 0000000..8f1ab17
--- /dev/null
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2005-2006 The Apache Software Foundation.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~      http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-base</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <artifactId>archiva-consumers</artifactId>
+  <name>Archiva Consumers</name>
+  <packaging>pom</packaging>
+
+  <modules>
+    <module>archiva-consumer-api</module>
+    <module>archiva-core-consumers</module>
+    <module>archiva-database-consumers</module>
+    <module>archiva-lucene-consumers</module>
+    <module>archiva-signature-consumers</module>
+  </modules>
+</project>
index a8fefa7988e767f6c12e0a0f820e816ff372f7f7..c2932ad294de745675b10b30a717c34ef189251d 100644 (file)
@@ -27,7 +27,7 @@
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>archiva-converter</artifactId>
-  <name>Archiva Repository Converter</name>
+  <name>Archiva Base :: Repository Converter</name>
   <dependencies>
     <dependency>
       <groupId>org.apache.maven.archiva</groupId>
index 10d2c366eedc3fd3ddb461e495e5ced67c69550e..9b514134a091f846e74542e107799ac4aadec84c 100644 (file)
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
     <groupId>org.apache.maven.archiva</groupId>
-    <artifactId>archiva</artifactId>
+    <artifactId>archiva-base</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>archiva-indexer</artifactId>
-  <name>Archiva Indexer</name>
+  <name>Archiva Base :: Indexer</name>
   <dependencies>
     <dependency>
       <groupId>org.apache.maven</groupId>
index 3fcb6843f0eb02236ab45eb260f6fd496460fbaf..f0a4acd2a8367e8300e18bc3ad21333c849e92f1 100755 (executable)
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
     <groupId>org.apache.maven.archiva</groupId>
-    <artifactId>archiva</artifactId>
+    <artifactId>archiva-base</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>archiva-model</artifactId>
-  <name>Archiva Model</name>
+  <name>Archiva Base :: Model</name>
   <dependencies>
     <dependency>
       <groupId>org.apache.maven.archiva</groupId>
index 23488ee0a526ea450d4deddf331f76410ecd965b..7d2bdb3bb287edf4d57fde345b37a8d593d64e80 100644 (file)
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
     <groupId>org.apache.maven.archiva</groupId>
-    <artifactId>archiva</artifactId>
+    <artifactId>archiva-base</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>archiva-proxy</artifactId>
-  <name>Archiva Proxy</name>
+  <name>Archiva Base :: Proxy</name>
   <dependencies>
     <dependency>
       <groupId>org.apache.maven.archiva</groupId>
index 2105631242514c5491c40b595c46db376d07ae34..7b4db106a9cc09e6f47fd240bf32da22681bcafd 100644 (file)
@@ -21,8 +21,8 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
-    <artifactId>archiva</artifactId>
     <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-base</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
diff --git a/archiva-jpox-database-refactor/archiva-base/pom.xml b/archiva-jpox-database-refactor/archiva-base/pom.xml
new file mode 100644 (file)
index 0000000..32dc9f7
--- /dev/null
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2005-2006 The Apache Software Foundation.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~      http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-parent</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <artifactId>archiva-base</artifactId>
+  <name>Archiva Base</name>
+  <packaging>pom</packaging>
+
+  <modules>
+    <module>archiva-common</module>
+    <module>archiva-configuration</module>
+    <module>archiva-consumers</module>
+    <module>archiva-indexer</module>
+    <module>archiva-model</module>
+    <module>archiva-proxy</module>
+    <module>archiva-repository-layer</module>
+  </modules>
+</project>
index 17a2b9e5947b878490c51164de6fea97c589b5a5..24242e435664d22a22961110ee6718edcfd62ffc 100644 (file)
 
 <project>
   <parent>
-    <artifactId>archiva</artifactId>
     <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-parent</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>archiva-cli</artifactId>
-  <name>Archiva CLI</name>
+  <name>Archiva Command Line Client</name>
   <dependencies>
     <dependency>
       <groupId>org.apache.maven.archiva</groupId>
index e3f1be31cbd1341a3149279672afb4de7ded8989..99b24f701af16100f2691c01565dab93f266cc1a 100755 (executable)
@@ -22,7 +22,7 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
     <groupId>org.apache.maven.archiva</groupId>
-    <artifactId>archiva</artifactId>
+    <artifactId>archiva-parent</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
@@ -32,7 +32,6 @@
     <dependency>
       <groupId>org.apache.maven.archiva</groupId>
       <artifactId>archiva-model</artifactId>
-      <version>1.0-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
index 9d02313dc79c108bc0fa22bb34f7e27f81d8f10d..336e5787770ae6ccd619077d6e5953a1e5b1a7de 100755 (executable)
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
     <groupId>org.apache.maven.archiva</groupId>
-    <artifactId>archiva</artifactId>
+    <artifactId>archiva-reporting</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
-  <artifactId>archiva-reports-standard</artifactId>
-  <name>Archiva Standard Reports</name>
+  <artifactId>archiva-report-manager</artifactId>
+  <name>Archiva Reporting :: Report Manager</name>
   <dependencies>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
diff --git a/archiva-jpox-database-refactor/archiva-reporting/pom.xml b/archiva-jpox-database-refactor/archiva-reporting/pom.xml
new file mode 100644 (file)
index 0000000..1b4f443
--- /dev/null
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2005-2006 The Apache Software Foundation.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~      http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-parent</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <artifactId>archiva-reporting</artifactId>
+  <name>Archiva Reporting</name>
+  <packaging>pom</packaging>
+
+  <modules>
+    <module>archiva-report-manager</module>
+  </modules>
+</project>
index d48ebf7a8688281527c0d5fffa7a4eb20930672d..e16baaacd05b151d2eb6005af40af02e067ccfc5 100644 (file)
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.apache.maven.archiva</groupId>
-    <artifactId>archiva</artifactId>
+    <artifactId>archiva-web</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <artifactId>archiva-applet</artifactId>
-  <name>Archiva Applet</name>
+  <name>Archiva Web :: Applet</name>
   <description>
     Applet for performing local operations on files such as creating a checksum of an artifact
     before uploading it.
index c0064555329e0f4cb734d2ff3804fc93cc144b42..78e14a42df5326df6e7dc584ce52b38151b57eb5 100644 (file)
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
-    <artifactId>archiva</artifactId>
     <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-web</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>archiva-security</artifactId>
-  <name>Archiva Security Configuration</name>
+  <name>Archiva Web :: Security Configuration</name>
   <dependencies>
     <dependency>
       <groupId>org.codehaus.plexus.security</groupId>
index 29e01dd2897965da294516bb9f3b1f3a4b196381..1e0cd3bdf18b4cbbd57ad0ed7445e582fcfc7f76 100644 (file)
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
-    <artifactId>archiva</artifactId>
     <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-web-standalone</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>archiva-plexus-application</artifactId>
   <packaging>plexus-application</packaging>
-  <name>Archiva Plexus Application</name>
+  <name>Archiva Web :: Plexus Application</name>
   <build>
     <plugins>
       <plugin>
index 3e93c782d5da3e673478f60339dbddae4493d724..937a5ab4f0464698ee35b803aaaa9827540fd944 100644 (file)
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
     <groupId>org.apache.maven.archiva</groupId>
-    <artifactId>archiva</artifactId>
+    <artifactId>archiva-web-standalone</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>archiva-plexus-runtime</artifactId>
-  <name>Archiva Runtime Generator</name>
+  <name>Archiva Web :: Runtime Generator</name>
   <dependencies>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
diff --git a/archiva-jpox-database-refactor/archiva-web/archiva-standalone/pom.xml b/archiva-jpox-database-refactor/archiva-web/archiva-standalone/pom.xml
new file mode 100644 (file)
index 0000000..412f55b
--- /dev/null
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2005-2006 The Apache Software Foundation.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~      http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-web</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <artifactId>archiva-web-standalone</artifactId>
+  <name>Archiva Web :: Standalone</name>
+  <packaging>pom</packaging>
+
+  <modules>
+    <module>archiva-plexus-application</module>
+    <module>archiva-plexus-runtime</module>
+  </modules>
+</project>
index 264f6eff3f8f5b6387ae03b0fc34f956857f8769..bfaf14816fe1d3d7505b160a6e3ffc569d2cb6b9 100644 (file)
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.apache.maven.archiva</groupId>
-    <artifactId>archiva</artifactId>
+    <artifactId>archiva-web</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <artifactId>archiva-webapp-test</artifactId>
   <packaging>pom</packaging>
-  <name>Archiva Web Application Tests</name>
+  <name>Archiva Web :: Application Tests</name>
   <dependencies>
     <dependency>
       <groupId>org.apache.maven.archiva</groupId>
     </profile>
   </profiles>
 
-</project>
\ No newline at end of file
+</project>
index ac94a47e9364cf23df5a68b3fc198b70f55d14d4..ed13c3fb5d627f33b114012cd1b2b28c127609b4 100644 (file)
   <modelVersion>4.0.0</modelVersion>
   <parent>
     <groupId>org.apache.maven.archiva</groupId>
-    <artifactId>archiva</artifactId>
+    <artifactId>archiva-web</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <artifactId>archiva-webapp</artifactId>
   <packaging>war</packaging>
-  <name>Archiva Web Application</name>
+  <name>Archiva Web :: Application</name>
   <dependencies>
     <dependency>
       <groupId>javax.servlet</groupId>
diff --git a/archiva-jpox-database-refactor/archiva-web/pom.xml b/archiva-jpox-database-refactor/archiva-web/pom.xml
new file mode 100644 (file)
index 0000000..7d2e825
--- /dev/null
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2005-2006 The Apache Software Foundation.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~      http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-parent</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <artifactId>archiva-web</artifactId>
+  <name>Archiva Web</name>
+  <packaging>pom</packaging>
+
+  <modules>
+    <module>archiva-applet</module>
+    <module>archiva-security</module>
+    <module>archiva-webapp</module>
+    <module>archiva-standalone</module>
+  </modules>
+</project>
index af343cbdce7b72e7eabe2433c8abeba408002ef5..7843c9e464c2abe4d4475fb701eb5feb1f3ded9d 100644 (file)
@@ -18,8 +18,8 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
-    <artifactId>archiva</artifactId>
     <groupId>org.apache.maven.archiva</groupId>
+    <artifactId>archiva-parent</artifactId>
     <version>1.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
index b3acaa8a07d2c4a42de0c5f413ea8fbfaebcf8b7..db60e0488b633f6a0427a434debb4e116dabf42e 100644 (file)
@@ -25,7 +25,7 @@
     <relativePath>../pom/maven/pom.xml</relativePath>
   </parent>
   <groupId>org.apache.maven.archiva</groupId>
-  <artifactId>archiva</artifactId>
+  <artifactId>archiva-parent</artifactId>
   <packaging>pom</packaging>
   <name>Archiva</name>
   <version>1.0-SNAPSHOT</version>
     </pluginManagement>
   </build>
   <modules>
-    <module>archiva-applet</module>
-    <module>archiva-converter</module>
-    <module>archiva-common</module>
-    <module>archiva-reports-standard</module>
-    <module>archiva-indexer</module>
-    <module>archiva-webapp</module>
-    <module>archiva-proxy</module>
-    <module>archiva-core</module>
-    <module>archiva-configuration</module>
-    <module>maven-meeper</module>
-    <module>archiva-repository-layer</module>
-    <module>archiva-plexus-application</module>
-    <module>archiva-plexus-runtime</module>
-    <module>archiva-security</module>
+    <module>archiva-api</module>
+    <module>archiva-base</module>
+    <module>archiva-database</module>
+    <module>archiva-reporting</module>
+    <module>archiva-web</module>
     <module>archiva-cli</module>
+    <module>maven-meeper</module>
   </modules>
   <dependencies>
     <dependency>
         <artifactId>archiva-common</artifactId>
         <version>${archiva.version}</version>
       </dependency>
-      <!--
-      <dependency>
-        <groupId>org.apache.maven.archiva</groupId>
-        <artifactId>archiva-common</artifactId>
-        <version>${archiva.version}</version>
-        <classifier>tests</classifier>
-        <scope>test</scope>
-      </dependency>
-       -->
       <dependency>
         <groupId>org.apache.maven.archiva</groupId>
         <artifactId>archiva-core</artifactId>