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/11 22:08:14 UTC

svn commit: r280173 - in /cocoon: blocks/asciiart/trunk/ blocks/bsf/trunk/ blocks/chaperon/trunk/ blocks/deli/trunk/ blocks/fop/trunk/ trunk/

Author: jheymans
Date: Sun Sep 11 13:08:05 2005
New Revision: 280173

URL: http://svn.apache.org/viewcvs?rev=280173&view=rev
Log:
Adding asciiart, bsf, chaperon, deli and fop block for compilation to maven2 build. I have uploaded the necessary dependencies to the cvs.apache.org repository

Added:
    cocoon/blocks/asciiart/trunk/pom.xml   (with props)
    cocoon/blocks/bsf/trunk/pom.xml   (with props)
    cocoon/blocks/chaperon/trunk/pom.xml   (with props)
    cocoon/blocks/deli/trunk/pom.xml   (with props)
    cocoon/blocks/fop/trunk/pom.xml   (with props)
Modified:
    cocoon/blocks/asciiart/trunk/   (props changed)
    cocoon/blocks/bsf/trunk/   (props changed)
    cocoon/blocks/chaperon/trunk/   (props changed)
    cocoon/blocks/deli/trunk/   (props changed)
    cocoon/blocks/fop/trunk/   (props changed)
    cocoon/trunk/pom.xml

Propchange: cocoon/blocks/asciiart/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Sep 11 13:08:05 2005
@@ -0,0 +1,4 @@
+build
+.project
+.classpath
+target

Added: cocoon/blocks/asciiart/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/blocks/asciiart/trunk/pom.xml?rev=280173&view=auto
==============================================================================
--- cocoon/blocks/asciiart/trunk/pom.xml (added)
+++ cocoon/blocks/asciiart/trunk/pom.xml Sun Sep 11 13:08:05 2005
@@ -0,0 +1,67 @@
+<?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>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>apache-cocoon</groupId>
+  <artifactId>cocoon-asciiart</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>
+  <repositories>
+    <repository>
+      <id>apache</id>
+      <name>Apache Java Repository</name>
+      <url>http://www.apache.org/dist/java-repository</url>
+      <layout>legacy</layout>
+    </repository>
+    <repository>
+      <id>apache-cvs</id>
+      <name>Apache CVS Repository</name>
+      <url>http://cvs.apache.org/repository</url>
+      <layout>legacy</layout>
+    </repository>
+  </repositories>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

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

Propchange: cocoon/blocks/bsf/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Sep 11 13:08:05 2005
@@ -0,0 +1,4 @@
+build
+.project
+.classpath
+target

Added: cocoon/blocks/bsf/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/blocks/bsf/trunk/pom.xml?rev=280173&view=auto
==============================================================================
--- cocoon/blocks/bsf/trunk/pom.xml (added)
+++ cocoon/blocks/bsf/trunk/pom.xml Sun Sep 11 13:08:05 2005
@@ -0,0 +1,72 @@
+<?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>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>apache-cocoon</groupId>
+  <artifactId>cocoon-bsf</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>bsf</groupId>
+      <artifactId>bsf</artifactId>
+      <version>2.3.0</version>
+    </dependency>
+  </dependencies>
+  <repositories>
+    <repository>
+      <id>apache</id>
+      <name>Apache Java Repository</name>
+      <url>http://www.apache.org/dist/java-repository</url>
+      <layout>legacy</layout>
+    </repository>
+    <repository>
+      <id>apache-cvs</id>
+      <name>Apache CVS Repository</name>
+      <url>http://cvs.apache.org/repository</url>
+      <layout>legacy</layout>
+    </repository>
+  </repositories>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

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

Propchange: cocoon/blocks/chaperon/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Sep 11 13:08:05 2005
@@ -0,0 +1,4 @@
+build
+.project
+.classpath
+target

Added: cocoon/blocks/chaperon/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/blocks/chaperon/trunk/pom.xml?rev=280173&view=auto
==============================================================================
--- cocoon/blocks/chaperon/trunk/pom.xml (added)
+++ cocoon/blocks/chaperon/trunk/pom.xml Sun Sep 11 13:08:05 2005
@@ -0,0 +1,77 @@
+<?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>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>apache-cocoon</groupId>
+  <artifactId>cocoon-chaperon</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>chaperon</groupId>
+      <artifactId>chaperon</artifactId>
+      <version>20040205</version>
+    </dependency>
+    <dependency>
+      <groupId>castor</groupId>
+      <artifactId>castor</artifactId>
+      <version>0.9.6-xml</version>
+    </dependency>
+  </dependencies>
+  <repositories>
+    <repository>
+      <id>apache</id>
+      <name>Apache Java Repository</name>
+      <url>http://www.apache.org/dist/java-repository</url>
+      <layout>legacy</layout>
+    </repository>
+    <repository>
+      <id>apache-cvs</id>
+      <name>Apache CVS Repository</name>
+      <url>http://cvs.apache.org/repository</url>
+      <layout>legacy</layout>
+    </repository>
+  </repositories>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

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

Propchange: cocoon/blocks/deli/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Sep 11 13:08:05 2005
@@ -0,0 +1,4 @@
+build
+.project
+.classpath
+target

Added: cocoon/blocks/deli/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/blocks/deli/trunk/pom.xml?rev=280173&view=auto
==============================================================================
--- cocoon/blocks/deli/trunk/pom.xml (added)
+++ cocoon/blocks/deli/trunk/pom.xml Sun Sep 11 13:08:05 2005
@@ -0,0 +1,82 @@
+<?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>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>apache-cocoon</groupId>
+  <artifactId>cocoon-deli</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>jena</groupId>
+      <artifactId>jena</artifactId>
+      <version>2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>deli</groupId>
+      <artifactId>deli</artifactId>
+      <version>x050330</version>
+    </dependency>
+    <dependency>
+      <groupId>servletapi</groupId>
+      <artifactId>servletapi</artifactId>
+      <version>2.3</version>
+    </dependency>
+  </dependencies>
+  <repositories>
+    <repository>
+      <id>apache</id>
+      <name>Apache Java Repository</name>
+      <url>http://www.apache.org/dist/java-repository</url>
+      <layout>legacy</layout>
+    </repository>
+    <repository>
+      <id>apache-cvs</id>
+      <name>Apache CVS Repository</name>
+      <url>http://cvs.apache.org/repository</url>
+      <layout>legacy</layout>
+    </repository>
+  </repositories>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

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

Propchange: cocoon/blocks/fop/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Sep 11 13:08:05 2005
@@ -0,0 +1,4 @@
+build
+.project
+.classpath
+target

Added: cocoon/blocks/fop/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/blocks/fop/trunk/pom.xml?rev=280173&view=auto
==============================================================================
--- cocoon/blocks/fop/trunk/pom.xml (added)
+++ cocoon/blocks/fop/trunk/pom.xml Sun Sep 11 13:08:05 2005
@@ -0,0 +1,72 @@
+<?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>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>apache-cocoon</groupId>
+  <artifactId>cocoon-fop</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>fop</groupId>
+      <artifactId>fop</artifactId>
+      <version>0.20.5</version>
+    </dependency>
+  </dependencies>
+  <repositories>
+    <repository>
+      <id>apache</id>
+      <name>Apache Java Repository</name>
+      <url>http://www.apache.org/dist/java-repository</url>
+      <layout>legacy</layout>
+    </repository>
+    <repository>
+      <id>apache-cvs</id>
+      <name>Apache CVS Repository</name>
+      <url>http://cvs.apache.org/repository</url>
+      <layout>legacy</layout>
+    </repository>
+  </repositories>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

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

Modified: cocoon/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/trunk/pom.xml?rev=280173&r1=280172&r2=280173&view=diff
==============================================================================
--- cocoon/trunk/pom.xml (original)
+++ cocoon/trunk/pom.xml Sun Sep 11 13:08:05 2005
@@ -38,5 +38,10 @@
     <module>src/blocks/axis/trunk</module>
     <module>src/blocks/forms/trunk</module>
     <module>src/blocks/apples/trunk</module>
+    <module>src/blocks/asciiart/trunk</module>
+    <module>src/blocks/bsf/trunk</module>
+    <module>src/blocks/chaperon/trunk</module>
+    <module>src/blocks/deli/trunk</module>
+    <module>src/blocks/fop/trunk</module>
   </modules>
 </project>