You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2010/03/09 15:49:11 UTC

svn commit: r920902 - in /myfaces/extensions/scripting/trunk/bundles: ./ myfaces12/ myfaces12/pom.xml myfaces20/ myfaces20/pom.xml pom.xml

Author: werpu
Date: Tue Mar  9 14:49:10 2010
New Revision: 920902

URL: http://svn.apache.org/viewvc?rev=920902&view=rev
Log:
finalizing the bundles

Added:
    myfaces/extensions/scripting/trunk/bundles/
    myfaces/extensions/scripting/trunk/bundles/myfaces12/
    myfaces/extensions/scripting/trunk/bundles/myfaces12/pom.xml   (with props)
    myfaces/extensions/scripting/trunk/bundles/myfaces20/
    myfaces/extensions/scripting/trunk/bundles/myfaces20/pom.xml   (with props)
    myfaces/extensions/scripting/trunk/bundles/pom.xml   (with props)

Added: myfaces/extensions/scripting/trunk/bundles/myfaces12/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/scripting/trunk/bundles/myfaces12/pom.xml?rev=920902&view=auto
==============================================================================
--- myfaces/extensions/scripting/trunk/bundles/myfaces12/pom.xml (added)
+++ myfaces/extensions/scripting/trunk/bundles/myfaces12/pom.xml Tue Mar  9 14:49:10 2010
@@ -0,0 +1,70 @@
+<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>
+    <groupId>org.apache.myfaces.extension-scripting</groupId>
+    <artifactId>extscript-myfaces12-bundle</artifactId>
+    <packaging>jar</packaging>
+    <name>MyFaces Extension Scripting MyFaces 2.0 meta bundle</name>
+    <version>1.0-SNAPSHOT</version>
+
+    <description>
+        The meta bundle bundeling all needed core runtimes
+        for a full myfaces 1.2.8+ build
+    </description>
+
+    <parent>
+        <groupId>org.apache.myfaces.extension-scripting</groupId>
+        <artifactId>extscript-bundles</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.myfaces.extension-scripting</groupId>
+            <artifactId>extscript-core</artifactId>
+            <version>1.0-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.myfaces.extension-scripting</groupId>
+            <artifactId>extscript-core-java6</artifactId>
+            <version>1.0-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.myfaces.extension-scripting</groupId>
+            <artifactId>extscript-myfaces12-extensions</artifactId>
+            <version>1.0-SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+
+    <!-- we use the maven shade plugin to bundle our subprojects into bundles -->
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <version>1.3.1</version>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <artifactSet>
+                        <includes>
+                            <artifact>org.apache.myfaces.extension-scripting:extscript-core</artifact>
+                            <artifact>org.apache.myfaces.extension-scripting:extscript-core-java6</artifact>
+                            <artifact>org.apache.myfaces.extension-scripting:extscript-myfaces12-extensions</artifact>
+                        </includes>
+                    </artifactSet>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+
+</project>
\ No newline at end of file

Propchange: myfaces/extensions/scripting/trunk/bundles/myfaces12/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/extensions/scripting/trunk/bundles/myfaces12/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/extensions/scripting/trunk/bundles/myfaces20/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/scripting/trunk/bundles/myfaces20/pom.xml?rev=920902&view=auto
==============================================================================
--- myfaces/extensions/scripting/trunk/bundles/myfaces20/pom.xml (added)
+++ myfaces/extensions/scripting/trunk/bundles/myfaces20/pom.xml Tue Mar  9 14:49:10 2010
@@ -0,0 +1,70 @@
+<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>
+    <groupId>org.apache.myfaces.extension-scripting</groupId>
+    <artifactId>extscript-myfaces20-bundle</artifactId>
+    <packaging>jar</packaging>
+    <name>MyFaces Extension Scripting MyFaces 2.0 meta bundle</name>
+    <version>1.0-SNAPSHOT</version>
+
+    <description>
+        The meta bundle bundeling all needed core runtimes
+        for a full myfaces 2.0 build
+    </description>
+
+    <parent>
+        <groupId>org.apache.myfaces.extension-scripting</groupId>
+        <artifactId>extscript-bundles</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.myfaces.extension-scripting</groupId>
+            <artifactId>extscript-core</artifactId>
+            <version>1.0-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.myfaces.extension-scripting</groupId>
+            <artifactId>extscript-core-java6</artifactId>
+            <version>1.0-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.myfaces.extension-scripting</groupId>
+            <artifactId>extscript-myfaces2-extensions</artifactId>
+            <version>1.0-SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+
+    <!-- we use the maven shade plugin to bundle our subprojects into bundles -->
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <version>1.3.1</version>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <artifactSet>
+                        <includes>
+                            <artifact>org.apache.myfaces.extension-scripting:extscript-core</artifact>
+                            <artifact>org.apache.myfaces.extension-scripting:extscript-core-java6</artifact>
+                            <artifact>org.apache.myfaces.extension-scripting:extscript-myfaces2-extensions</artifact>
+                        </includes>
+                    </artifactSet>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+
+</project>
\ No newline at end of file

Propchange: myfaces/extensions/scripting/trunk/bundles/myfaces20/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/extensions/scripting/trunk/bundles/myfaces20/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/extensions/scripting/trunk/bundles/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/extensions/scripting/trunk/bundles/pom.xml?rev=920902&view=auto
==============================================================================
--- myfaces/extensions/scripting/trunk/bundles/pom.xml (added)
+++ myfaces/extensions/scripting/trunk/bundles/pom.xml Tue Mar  9 14:49:10 2010
@@ -0,0 +1,29 @@
+<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>
+    <groupId>org.apache.myfaces.extension-scripting</groupId>
+    <artifactId>extscript-bundles</artifactId>
+    <packaging>pom</packaging>
+    <name>MyFaces Extension Scripting meta bundles</name>
+    <version>1.0-SNAPSHOT</version>
+
+    <description>
+        Meta bundles bundeling the various ext-script
+        combinations into one coherent package per
+        jsf version
+    </description>
+
+    <parent>
+        <groupId>org.apache.myfaces.extension-scripting</groupId>
+        <artifactId>extscript-root</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+
+    <modules>
+        <module>myfaces12</module>
+        <module>myfaces20</module>
+    </modules>
+
+   
+</project>
\ No newline at end of file

Propchange: myfaces/extensions/scripting/trunk/bundles/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/extensions/scripting/trunk/bundles/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL