You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by da...@apache.org on 2006/10/02 14:24:32 UTC

svn commit: r451996 - in /cocoon/trunk/blocks/cocoon-flowscript: ./ cocoon-flowscript-impl/ cocoon-flowscript-impl/src/main/java/org/apache/cocoon/components/flow/javascript/ cocoon-flowscript-impl/src/main/java/org/apache/cocoon/components/flow/javasc...

Author: danielf
Date: Mon Oct  2 05:24:31 2006
New Revision: 451996

URL: http://svn.apache.org/viewvc?view=rev&rev=451996
Log:
Moving flowscript to an own block (patch from Lars Trieloff):
Modifying POMs and moving the code. Part I

Added:
    cocoon/trunk/blocks/cocoon-flowscript/cocoon-flowscript-impl/pom.xml
    cocoon/trunk/blocks/cocoon-flowscript/cocoon-flowscript-impl/src/main/java/org/apache/cocoon/components/flow/javascript/
      - copied from r451910, cocoon/trunk/core/cocoon-core/src/main/java/org/apache/cocoon/components/flow/javascript/
    cocoon/trunk/blocks/cocoon-flowscript/cocoon-flowscript-impl/src/main/java/org/apache/cocoon/components/flow/javascript/fom/FOM_JavaScriptInterpreter.java
      - copied unchanged from r451962, cocoon/trunk/core/cocoon-core/src/main/java/org/apache/cocoon/components/flow/javascript/fom/FOM_JavaScriptInterpreter.java
    cocoon/trunk/blocks/cocoon-flowscript/pom.xml

Added: cocoon/trunk/blocks/cocoon-flowscript/cocoon-flowscript-impl/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-flowscript/cocoon-flowscript-impl/pom.xml?view=auto&rev=451996
==============================================================================
--- cocoon/trunk/blocks/cocoon-flowscript/cocoon-flowscript-impl/pom.xml (added)
+++ cocoon/trunk/blocks/cocoon-flowscript/cocoon-flowscript-impl/pom.xml Mon Oct  2 05:24:31 2006
@@ -0,0 +1,53 @@
+<?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.
+-->
+<!--+
+    | @version $Id: pom.xml 448825 2006-09-22 06:19:55Z reinhard $
+    |
+    +-->
+<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>
+  <packaging>jar</packaging>
+  <parent>
+    <groupId>org.apache.cocoon</groupId>
+    <artifactId>cocoon-flowscript</artifactId>
+  <version>1-SNAPSHOT</version>
+  </parent>
+  <artifactId>cocoon-flowscript-impl</artifactId>
+  <version>1.0.0-M2-SNAPSHOT</version>
+  <name>Flowscript Block</name>
+  <dependencies>
+    <dependency>
+      <groupId>rhino</groupId>
+      <artifactId>js</artifactId>
+      <version>1.6R2</version>
+    </dependency>
+    <dependency>
+    	<groupId>org.apache.cocoon</groupId>
+	<artifactId>cocoon-core</artifactId>
+	<version>2.2.0-M2-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+      <version>2.4</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+</project>

Added: cocoon/trunk/blocks/cocoon-flowscript/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-flowscript/pom.xml?view=auto&rev=451996
==============================================================================
--- cocoon/trunk/blocks/cocoon-flowscript/pom.xml (added)
+++ cocoon/trunk/blocks/cocoon-flowscript/pom.xml Mon Oct  2 05:24:31 2006
@@ -0,0 +1,39 @@
+<?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.
+-->
+<!--+
+    | @version $Id: pom.xml 440151 2006-09-04 18:59:33Z jheymans $
+    |
+    +-->
+<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>
+    <groupId>org.apache.cocoon</groupId>
+    <artifactId>cocoon-blocks-modules</artifactId>
+    <version>2-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>cocoon-flowscript</artifactId>
+  <version>1-SNAPSHOT</version>
+  <packaging>pom</packaging>
+  <name>Flowscript Block [modules]</name>
+  <description/>
+  <modules>
+    <module>cocoon-flowscript-impl</module>
+  </modules>
+</project>