You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2010/03/11 16:28:58 UTC

svn commit: r921896 - in /directory/sandbox/pamarcelot/release_testing/trunk: module1/ module1/pom.xml module2/ module2/pom.xml module3/ module3/pom.xml pom.xml

Author: pamarcelot
Date: Thu Mar 11 15:28:57 2010
New Revision: 921896

URL: http://svn.apache.org/viewvc?rev=921896&view=rev
Log:
Added basic project structure (one parent with 3 sub-modules).

Added:
    directory/sandbox/pamarcelot/release_testing/trunk/module1/
    directory/sandbox/pamarcelot/release_testing/trunk/module1/pom.xml
    directory/sandbox/pamarcelot/release_testing/trunk/module2/
    directory/sandbox/pamarcelot/release_testing/trunk/module2/pom.xml
    directory/sandbox/pamarcelot/release_testing/trunk/module3/
    directory/sandbox/pamarcelot/release_testing/trunk/module3/pom.xml
    directory/sandbox/pamarcelot/release_testing/trunk/pom.xml

Added: directory/sandbox/pamarcelot/release_testing/trunk/module1/pom.xml
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/release_testing/trunk/module1/pom.xml?rev=921896&view=auto
==============================================================================
--- directory/sandbox/pamarcelot/release_testing/trunk/module1/pom.xml (added)
+++ directory/sandbox/pamarcelot/release_testing/trunk/module1/pom.xml Thu Mar 11 15:28:57 2010
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+  
+  http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!--
+  @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+-->
+<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.directory.testing</groupId>
+    <artifactId>parent</artifactId>
+    <version>1.0.0-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>module1</artifactId>
+  <version>1.0.0-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  
+  <name>Apache Directory Testing Module 1</name>
+
+</project>

Added: directory/sandbox/pamarcelot/release_testing/trunk/module2/pom.xml
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/release_testing/trunk/module2/pom.xml?rev=921896&view=auto
==============================================================================
--- directory/sandbox/pamarcelot/release_testing/trunk/module2/pom.xml (added)
+++ directory/sandbox/pamarcelot/release_testing/trunk/module2/pom.xml Thu Mar 11 15:28:57 2010
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+  
+  http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!--
+  @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+-->
+<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.directory.testing</groupId>
+    <artifactId>parent</artifactId>
+    <version>1.0.0-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>module2</artifactId>
+  <version>1.0.0-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  
+  <name>Apache Directory Testing Module 2</name>
+
+</project>

Added: directory/sandbox/pamarcelot/release_testing/trunk/module3/pom.xml
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/release_testing/trunk/module3/pom.xml?rev=921896&view=auto
==============================================================================
--- directory/sandbox/pamarcelot/release_testing/trunk/module3/pom.xml (added)
+++ directory/sandbox/pamarcelot/release_testing/trunk/module3/pom.xml Thu Mar 11 15:28:57 2010
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+  
+  http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!--
+  @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+-->
+<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.directory.testing</groupId>
+    <artifactId>parent</artifactId>
+    <version>1.0.0-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>module3</artifactId>
+  <version>1.0.0-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  
+  <name>Apache Directory Testing Module 3</name>
+
+</project>

Added: directory/sandbox/pamarcelot/release_testing/trunk/pom.xml
URL: http://svn.apache.org/viewvc/directory/sandbox/pamarcelot/release_testing/trunk/pom.xml?rev=921896&view=auto
==============================================================================
--- directory/sandbox/pamarcelot/release_testing/trunk/pom.xml (added)
+++ directory/sandbox/pamarcelot/release_testing/trunk/pom.xml Thu Mar 11 15:28:57 2010
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+  
+  http://www.apache.org/licenses/LICENSE-2.0
+  
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!--
+  @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+-->
+<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.directory.project</groupId>
+    <artifactId>project</artifactId>
+    <version>17</version>
+  </parent>
+
+  <groupId>org.apache.directory.testing</groupId>
+  <artifactId>parent</artifactId>
+  <version>1.0.0-SNAPSHOT</version>
+  <name>Apache Directory Testing Parent</name>
+  <description />
+  <packaging>pom</packaging>
+
+  <organization>
+    <name>Apache Software Foundation</name>
+    <url>http://www.apache.org</url>
+  </organization>
+
+  <scm>
+    <connection>scm:svn:https://svn.apache.org/repos/asf/directory/sandbox/pamarcelot/release_testing/trunk</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/directory/sandbox/pamarcelot/release_testing/trunk</developerConnection>
+    <url>https://svn.apache.org/viewvc/directory/sandbox/pamarcelot/release_testing/trunk</url>
+  </scm>
+
+  <distributionManagement>
+    <site>
+      <id>apache.directory.studio</id>
+      <url>${distMgmtSiteUrl}</url>
+    </site>
+  </distributionManagement>
+
+  <modules>
+    <module>module1</module>
+    <module>module2</module>
+    <module>module3</module>
+  </modules>
+
+</project>