You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by jh...@apache.org on 2005/09/14 02:14:27 UTC

svn commit: r280724 - in /cocoon: blocks/databases/trunk/ blocks/hsqldb/trunk/ blocks/html/trunk/ blocks/itext/trunk/ blocks/javaflow/trunk/ blocks/jcr/trunk/ blocks/jfor/trunk/ blocks/jms/trunk/ blocks/linkrewriter/trunk/ blocks/lucene/trunk/ blocks/m...

Author: jheymans
Date: Tue Sep 13 17:14:08 2005
New Revision: 280724

URL: http://svn.apache.org/viewcvs?rev=280724&view=rev
Log:
Adding hsqldb, html, itext, javaflow, jfor, linkrewriter, lucene, mail and midi block for compilation to maven2 build. I have uploaded the necessary dependencies to the cvs.apache.org repository.
Added mocks as separate module for inclusion by other blocks.


Added:
    cocoon/blocks/hsqldb/trunk/pom.xml   (with props)
    cocoon/blocks/html/trunk/pom.xml   (with props)
    cocoon/blocks/itext/trunk/pom.xml   (with props)
    cocoon/blocks/javaflow/trunk/pom.xml   (with props)
    cocoon/blocks/jcr/trunk/pom.xml   (with props)
    cocoon/blocks/jfor/trunk/pom.xml   (with props)
    cocoon/blocks/linkrewriter/trunk/pom.xml   (with props)
    cocoon/blocks/lucene/trunk/pom.xml   (with props)
    cocoon/blocks/mail/trunk/pom.xml   (with props)
    cocoon/blocks/midi/trunk/pom.xml   (with props)
    cocoon/trunk/src/mocks/pom.xml   (with props)
Modified:
    cocoon/blocks/databases/trunk/   (props changed)
    cocoon/blocks/hsqldb/trunk/   (props changed)
    cocoon/blocks/html/trunk/   (props changed)
    cocoon/blocks/itext/trunk/   (props changed)
    cocoon/blocks/javaflow/trunk/   (props changed)
    cocoon/blocks/jfor/trunk/   (props changed)
    cocoon/blocks/jms/trunk/   (props changed)
    cocoon/blocks/linkrewriter/trunk/   (props changed)
    cocoon/blocks/lucene/trunk/   (props changed)
    cocoon/blocks/mail/trunk/   (props changed)
    cocoon/blocks/midi/trunk/   (props changed)
    cocoon/trunk/pom.xml

Propchange: cocoon/blocks/databases/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Sep 13 17:14:08 2005
@@ -0,0 +1,4 @@
+build
+.project
+.classpath
+target

Propchange: cocoon/blocks/hsqldb/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Sep 13 17:14:08 2005
@@ -0,0 +1,4 @@
+build
+.project
+.classpath
+target

Added: cocoon/blocks/hsqldb/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/blocks/hsqldb/trunk/pom.xml?rev=280724&view=auto
==============================================================================
--- cocoon/blocks/hsqldb/trunk/pom.xml (added)
+++ cocoon/blocks/hsqldb/trunk/pom.xml Tue Sep 13 17:14:08 2005
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2005 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.
+-->
+<!--+
+    | @version $Id:$
+    |
+    +-->
+<project>
+  <parent>
+    <groupId>apache-cocoon</groupId>
+    <artifactId>cocoon</artifactId>
+    <version>2.2-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>apache-cocoon</groupId>
+  <artifactId>cocoon-hsqldb</artifactId>
+  <version>2.2-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <build>
+    <sourceDirectory>java</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>java</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </resource>
+    </resources>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>apache-cocoon</groupId>
+      <artifactId>cocoon-core</artifactId>
+      <version>2.2-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>hsqldb</groupId>
+      <artifactId>hsqldb</artifactId>
+      <version>1.8.0.2</version>
+    </dependency>
+  </dependencies>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Propchange: cocoon/blocks/hsqldb/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/blocks/html/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Sep 13 17:14:08 2005
@@ -0,0 +1,4 @@
+build
+.project
+.classpath
+target

Added: cocoon/blocks/html/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/blocks/html/trunk/pom.xml?rev=280724&view=auto
==============================================================================
--- cocoon/blocks/html/trunk/pom.xml (added)
+++ cocoon/blocks/html/trunk/pom.xml Tue Sep 13 17:14:08 2005
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2005 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.
+-->
+<!--+
+    | @version $Id:$
+    |
+    +-->
+<project>
+  <parent>
+    <groupId>apache-cocoon</groupId>
+    <artifactId>cocoon</artifactId>
+    <version>2.2-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>apache-cocoon</groupId>
+  <artifactId>cocoon-html</artifactId>
+  <version>2.2-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <build>
+    <sourceDirectory>java</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>java</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </resource>
+    </resources>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>apache-cocoon</groupId>
+      <artifactId>cocoon-core</artifactId>
+      <version>2.2-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>nekohtml</groupId>
+      <artifactId>nekohtml</artifactId>
+      <version>0.9.5</version>
+    </dependency>
+  </dependencies>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Propchange: cocoon/blocks/html/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/blocks/itext/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Sep 13 17:14:08 2005
@@ -0,0 +1,4 @@
+build
+.project
+.classpath
+target

Added: cocoon/blocks/itext/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/blocks/itext/trunk/pom.xml?rev=280724&view=auto
==============================================================================
--- cocoon/blocks/itext/trunk/pom.xml (added)
+++ cocoon/blocks/itext/trunk/pom.xml Tue Sep 13 17:14:08 2005
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2005 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.
+-->
+<!--+
+    | @version $Id:$
+    |
+    +-->
+<project>
+  <parent>
+    <groupId>apache-cocoon</groupId>
+    <artifactId>cocoon</artifactId>
+    <version>2.2-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>apache-cocoon</groupId>
+  <artifactId>cocoon-itext</artifactId>
+  <version>2.2-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <build>
+    <sourceDirectory>java</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>java</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </resource>
+    </resources>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>apache-cocoon</groupId>
+      <artifactId>cocoon-core</artifactId>
+      <version>2.2-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>itext</groupId>
+      <artifactId>itext</artifactId>
+      <version>1.1</version>
+    </dependency>
+  </dependencies>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Propchange: cocoon/blocks/itext/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/blocks/javaflow/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Sep 13 17:14:08 2005
@@ -0,0 +1,4 @@
+build
+.project
+.classpath
+target

Added: cocoon/blocks/javaflow/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/blocks/javaflow/trunk/pom.xml?rev=280724&view=auto
==============================================================================
--- cocoon/blocks/javaflow/trunk/pom.xml (added)
+++ cocoon/blocks/javaflow/trunk/pom.xml Tue Sep 13 17:14:08 2005
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2005 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.
+-->
+<!--+
+    | @version $Id:$
+    |
+    +-->
+<project>
+  <parent>
+    <groupId>apache-cocoon</groupId>
+    <artifactId>cocoon</artifactId>
+    <version>2.2-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>apache-cocoon</groupId>
+  <artifactId>cocoon-javaflow</artifactId>
+  <version>2.2-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <build>
+    <sourceDirectory>java</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>java</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </resource>
+    </resources>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>apache-cocoon</groupId>
+      <artifactId>cocoon-core</artifactId>
+      <version>2.2-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-javaflow</groupId>
+      <artifactId>commons-javaflow</artifactId>
+      <version>0.1-dev</version>
+    </dependency>
+  </dependencies>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Propchange: cocoon/blocks/javaflow/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: cocoon/blocks/jcr/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/blocks/jcr/trunk/pom.xml?rev=280724&view=auto
==============================================================================
--- cocoon/blocks/jcr/trunk/pom.xml (added)
+++ cocoon/blocks/jcr/trunk/pom.xml Tue Sep 13 17:14:08 2005
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2005 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.
+-->
+<!--+
+    | @version $Id:$
+    |
+    +-->
+<project>
+  <parent>
+    <groupId>apache-cocoon</groupId>
+    <artifactId>cocoon</artifactId>
+    <version>2.2-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>apache-cocoon</groupId>
+  <artifactId>cocoon-jcr</artifactId>
+  <version>2.2-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <build>
+    <sourceDirectory>java</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>java</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </resource>
+    </resources>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>apache-cocoon</groupId>
+      <artifactId>cocoon-core</artifactId>
+      <version>2.2-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>slide</groupId>
+      <artifactId>slide-kernel</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>slide</groupId>
+      <artifactId>slide-stores</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>jackrabbit</groupId>
+      <artifactId>jackrabbit</artifactId>
+      <version>20050422T153417</version>
+    </dependency>
+  </dependencies>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Propchange: cocoon/blocks/jcr/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/blocks/jfor/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Sep 13 17:14:08 2005
@@ -0,0 +1,4 @@
+build
+.project
+.classpath
+target

Added: cocoon/blocks/jfor/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/blocks/jfor/trunk/pom.xml?rev=280724&view=auto
==============================================================================
--- cocoon/blocks/jfor/trunk/pom.xml (added)
+++ cocoon/blocks/jfor/trunk/pom.xml Tue Sep 13 17:14:08 2005
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2005 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.
+-->
+<!--+
+    | @version $Id:$
+    |
+    +-->
+<project>
+  <parent>
+    <groupId>apache-cocoon</groupId>
+    <artifactId>cocoon</artifactId>
+    <version>2.2-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>apache-cocoon</groupId>
+  <artifactId>cocoon-jfor</artifactId>
+  <version>2.2-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <build>
+    <sourceDirectory>java</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>java</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </resource>
+    </resources>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>apache-cocoon</groupId>
+      <artifactId>cocoon-core</artifactId>
+      <version>2.2-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>jfor</groupId>
+      <artifactId>jfor</artifactId>
+      <version>0.7.1</version>
+    </dependency>
+  </dependencies>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Propchange: cocoon/blocks/jfor/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/blocks/jms/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Sep 13 17:14:08 2005
@@ -0,0 +1,4 @@
+build
+.project
+.classpath
+target

Propchange: cocoon/blocks/linkrewriter/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Sep 13 17:14:08 2005
@@ -0,0 +1,4 @@
+build
+.project
+.classpath
+target

Added: cocoon/blocks/linkrewriter/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/blocks/linkrewriter/trunk/pom.xml?rev=280724&view=auto
==============================================================================
--- cocoon/blocks/linkrewriter/trunk/pom.xml (added)
+++ cocoon/blocks/linkrewriter/trunk/pom.xml Tue Sep 13 17:14:08 2005
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2005 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.
+-->
+<!--+
+    | @version $Id:$
+    |
+    +-->
+<project>
+  <parent>
+    <groupId>apache-cocoon</groupId>
+    <artifactId>cocoon</artifactId>
+    <version>2.2-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>apache-cocoon</groupId>
+  <artifactId>cocoon-linkrewriter</artifactId>
+  <version>2.2-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <build>
+    <sourceDirectory>java</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>java</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </resource>
+    </resources>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>apache-cocoon</groupId>
+      <artifactId>cocoon-core</artifactId>
+      <version>2.2-SNAPSHOT</version>
+    </dependency>
+  </dependencies>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Propchange: cocoon/blocks/linkrewriter/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/blocks/lucene/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Sep 13 17:14:08 2005
@@ -0,0 +1,4 @@
+build
+.project
+.classpath
+target

Added: cocoon/blocks/lucene/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/blocks/lucene/trunk/pom.xml?rev=280724&view=auto
==============================================================================
--- cocoon/blocks/lucene/trunk/pom.xml (added)
+++ cocoon/blocks/lucene/trunk/pom.xml Tue Sep 13 17:14:08 2005
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2005 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.
+-->
+<!--+
+    | @version $Id:$
+    |
+    +-->
+<project>
+  <parent>
+    <groupId>apache-cocoon</groupId>
+    <artifactId>cocoon</artifactId>
+    <version>2.2-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>apache-cocoon</groupId>
+  <artifactId>cocoon-lucene</artifactId>
+  <version>2.2-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <build>
+    <sourceDirectory>java</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>java</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </resource>
+    </resources>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>apache-cocoon</groupId>
+      <artifactId>cocoon-core</artifactId>
+      <version>2.2-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>lucene</groupId>
+      <artifactId>lucene</artifactId>
+      <version>1.4.3</version>
+    </dependency>
+  </dependencies>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Propchange: cocoon/blocks/lucene/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/blocks/mail/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Sep 13 17:14:08 2005
@@ -0,0 +1,4 @@
+build
+.project
+.classpath
+target

Added: cocoon/blocks/mail/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/blocks/mail/trunk/pom.xml?rev=280724&view=auto
==============================================================================
--- cocoon/blocks/mail/trunk/pom.xml (added)
+++ cocoon/blocks/mail/trunk/pom.xml Tue Sep 13 17:14:08 2005
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2005 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.
+-->
+<!--+
+    | @version $Id:$
+    |
+    +-->
+<project>
+  <parent>
+    <groupId>apache-cocoon</groupId>
+    <artifactId>cocoon</artifactId>
+    <version>2.2-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>apache-cocoon</groupId>
+  <artifactId>cocoon-mail</artifactId>
+  <version>2.2-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <build>
+    <sourceDirectory>java</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>java</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </resource>
+    </resources>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>apache-cocoon</groupId>
+      <artifactId>cocoon-core</artifactId>
+      <version>2.2-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>jaf</groupId>
+      <artifactId>activation</artifactId>
+      <version>1.0.2upd2</version>
+    </dependency>
+  </dependencies>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Propchange: cocoon/blocks/mail/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/blocks/midi/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Sep 13 17:14:08 2005
@@ -0,0 +1,4 @@
+build
+.project
+.classpath
+target

Added: cocoon/blocks/midi/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/blocks/midi/trunk/pom.xml?rev=280724&view=auto
==============================================================================
--- cocoon/blocks/midi/trunk/pom.xml (added)
+++ cocoon/blocks/midi/trunk/pom.xml Tue Sep 13 17:14:08 2005
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2005 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.
+-->
+<!--+
+    | @version $Id:$
+    |
+    +-->
+<project>
+  <parent>
+    <groupId>apache-cocoon</groupId>
+    <artifactId>cocoon</artifactId>
+    <version>2.2-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>apache-cocoon</groupId>
+  <artifactId>cocoon-midi</artifactId>
+  <version>2.2-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <build>
+    <sourceDirectory>java</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>java</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </resource>
+    </resources>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>apache-cocoon</groupId>
+      <artifactId>cocoon-core</artifactId>
+      <version>2.2-SNAPSHOT</version>
+    </dependency>
+  </dependencies>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Propchange: cocoon/blocks/midi/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: cocoon/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/trunk/pom.xml?rev=280724&r1=280723&r2=280724&view=diff
==============================================================================
--- cocoon/trunk/pom.xml (original)
+++ cocoon/trunk/pom.xml Tue Sep 13 17:14:08 2005
@@ -41,11 +41,23 @@
     <module>src/blocks/faces/trunk</module>
     <module>src/blocks/fop/trunk</module>
     <module>src/blocks/forms/trunk</module>
+    <module>src/blocks/hsqldb/trunk</module>
+    <module>src/blocks/html/trunk</module>
+    <module>src/blocks/itext/trunk</module>
+    <module>src/blocks/javaflow/trunk</module>
+    <module>src/blocks/jfor/trunk</module>
+    <!--<module>src/blocks/jms/trunk</module>-->
+    <module>src/blocks/linkrewriter/trunk</module>
+    <module>src/blocks/lucene/trunk</module>
+    <module>src/blocks/mail/trunk</module>
+    <module>src/blocks/midi/trunk</module>
+    <module>src/mocks</module>
     <module>src/blocks/portal/trunk</module>
     <module>src/blocks/session-fw/trunk</module>
     <module>src/blocks/spring-app/trunk</module>
     <module>src/blocks/taglib/trunk</module>
     <module>src/blocks/template/trunk</module>
+    <!--<module>src/blocks/xsp/trunk</module>-->
   </modules>
   <repositories>
     <!-- Apache specific maven repositories available to all blocks -->

Added: cocoon/trunk/src/mocks/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/mocks/pom.xml?rev=280724&view=auto
==============================================================================
--- cocoon/trunk/src/mocks/pom.xml (added)
+++ cocoon/trunk/src/mocks/pom.xml Tue Sep 13 17:14:08 2005
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2005 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.
+-->
+<!--+
+    | @version $Id:$
+    |
+    +-->
+<project>
+  <parent>
+    <groupId>apache-cocoon</groupId>
+    <artifactId>cocoon</artifactId>
+    <version>2.2-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>apache-cocoon</groupId>
+  <artifactId>cocoon-mocks</artifactId>
+  <version>2.2-SNAPSHOT</version>
+  <packaging>jar</packaging>
+  <build>
+    <sourceDirectory>.</sourceDirectory>
+  </build>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Propchange: cocoon/trunk/src/mocks/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native