You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dj...@apache.org on 2008/09/17 01:55:31 UTC

svn commit: r696106 - in /geronimo/sandbox/djencks/assemblies: ./ controller-as-repo/ controller-as-repo/src/ controller-as-repo/src/main/ controller-as-repo/src/main/history/ controller-as-repo/src/main/plan/ controller-as-repo/src/main/resources/ ger...

Author: djencks
Date: Tue Sep 16 16:55:30 2008
New Revision: 696106

URL: http://svn.apache.org/viewvc?rev=696106&view=rev
Log:
sample farm controller assembly based on geronimo-tomcat-ee

Added:
    geronimo/sandbox/djencks/assemblies/
    geronimo/sandbox/djencks/assemblies/controller-as-repo/
    geronimo/sandbox/djencks/assemblies/controller-as-repo/pom.xml   (with props)
    geronimo/sandbox/djencks/assemblies/controller-as-repo/src/
    geronimo/sandbox/djencks/assemblies/controller-as-repo/src/main/
    geronimo/sandbox/djencks/assemblies/controller-as-repo/src/main/history/
    geronimo/sandbox/djencks/assemblies/controller-as-repo/src/main/history/dependencies.xml   (with props)
    geronimo/sandbox/djencks/assemblies/controller-as-repo/src/main/plan/
    geronimo/sandbox/djencks/assemblies/controller-as-repo/src/main/resources/
    geronimo/sandbox/djencks/assemblies/geronimo-tomcat-farm-controller/
    geronimo/sandbox/djencks/assemblies/geronimo-tomcat-farm-controller/pom.xml   (with props)
    geronimo/sandbox/djencks/assemblies/geronimo-tomcat-farm-controller/src/
    geronimo/sandbox/djencks/assemblies/geronimo-tomcat-farm-controller/src/main/

Added: geronimo/sandbox/djencks/assemblies/controller-as-repo/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/djencks/assemblies/controller-as-repo/pom.xml?rev=696106&view=auto
==============================================================================
--- geronimo/sandbox/djencks/assemblies/controller-as-repo/pom.xml (added)
+++ geronimo/sandbox/djencks/assemblies/controller-as-repo/pom.xml Tue Sep 16 16:55:30 2008
@@ -0,0 +1,55 @@
+<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.geronimo.configs</groupId>
+    <artifactId>controller-as-repo</artifactId>
+    <version>2.2-SNAPSHOT</version>
+    <packaging>car</packaging>
+
+    <properties>
+        <!-- This property is required by the car:package mojo -->
+        <geronimoVersion>2.2-SNAPSHOT</geronimoVersion>
+
+    </properties>
+
+
+    <dependencies>
+        <!-- if you are deploying a jee application, use scope provided -->
+        <!-- other dependencies will normally end up as dependencies in the plan and geronimo-plugin.xml -->
+        <!-- include dependencies on all deployer modules needed, with scope provided -->
+
+    </dependencies>
+
+    <build>
+        <pluginManagement>
+            <plugins>
+
+                <plugin>
+                    <groupId>org.apache.geronimo.buildsupport</groupId>
+                    <artifactId>car-maven-plugin</artifactId>
+                    <version>${geronimoVersion}</version>
+                    <extensions>true</extensions>
+                    <configuration>
+                        <category>farm</category>
+                    </configuration>
+                </plugin>
+
+            </plugins>
+        </pluginManagement>
+
+        <plugins>
+            <plugin>
+                <groupId>org.apache.geronimo.buildsupport</groupId>
+                <artifactId>car-maven-plugin</artifactId>
+                <configuration>
+                    <instance>
+                        <plugin-artifact>
+                            <config-substitution key="DefaultPluginRepository">http://localhost:8080/plugin/maven-repo</config-substitution>
+                        </plugin-artifact>
+                    </instance>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Propchange: geronimo/sandbox/djencks/assemblies/controller-as-repo/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/djencks/assemblies/controller-as-repo/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/djencks/assemblies/controller-as-repo/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/sandbox/djencks/assemblies/controller-as-repo/src/main/history/dependencies.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/djencks/assemblies/controller-as-repo/src/main/history/dependencies.xml?rev=696106&view=auto
==============================================================================
--- geronimo/sandbox/djencks/assemblies/controller-as-repo/src/main/history/dependencies.xml (added)
+++ geronimo/sandbox/djencks/assemblies/controller-as-repo/src/main/history/dependencies.xml Tue Sep 16 16:55:30 2008
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<plugin-artifact xmlns:ns2="http://geronimo.apache.org/xml/ns/attributes-1.2" xmlns="http://geronimo.apache.org/xml/ns/plugins-1.3">
+    <module-id>
+        <groupId>org.apache.geronimo.configs</groupId>
+        <artifactId>controller-as-repo</artifactId>
+        <version>2.2-SNAPSHOT</version>
+        <type>car</type>
+    </module-id>
+</plugin-artifact>

Propchange: geronimo/sandbox/djencks/assemblies/controller-as-repo/src/main/history/dependencies.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/djencks/assemblies/controller-as-repo/src/main/history/dependencies.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/djencks/assemblies/controller-as-repo/src/main/history/dependencies.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/sandbox/djencks/assemblies/geronimo-tomcat-farm-controller/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/djencks/assemblies/geronimo-tomcat-farm-controller/pom.xml?rev=696106&view=auto
==============================================================================
--- geronimo/sandbox/djencks/assemblies/geronimo-tomcat-farm-controller/pom.xml (added)
+++ geronimo/sandbox/djencks/assemblies/geronimo-tomcat-farm-controller/pom.xml Tue Sep 16 16:55:30 2008
@@ -0,0 +1,211 @@
+<?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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<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>
+        <artifactId>clustering</artifactId>
+        <groupId>org.apache.geronimo.plugins</groupId>
+        <version>2.2-SNAPSHOT</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.geronimo.assemblies</groupId>
+    <artifactId>geronimo-tomcat-farm-controller</artifactId>
+    <name>Geronim Plugin Farm Controller Server Assembly for Tomcat</name>
+    <packaging>server-assembly</packaging>
+
+    <description>An assembly that extends the tomcat javaee assembly with the plugin farm controller plugin.</description>
+
+    <properties>
+        <!-- This property is required by the car:package mojo -->
+        <geronimoVersion>2.2-SNAPSHOT</geronimoVersion>
+    </properties>
+
+
+    <dependencies>
+
+        <dependency>
+            <groupId>org.apache.geronimo.plugingroups</groupId>
+            <artifactId>framework</artifactId>
+            <version>${geronimoVersion}</version>
+            <type>jar</type>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.plugingroups</groupId>
+            <artifactId>web-tomcat</artifactId>
+            <version>${version}</version>
+            <type>jar</type>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.plugingroups</groupId>
+            <artifactId>jms</artifactId>
+            <version>${version}</version>
+            <type>jar</type>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.plugingroups</groupId>
+            <artifactId>ejb</artifactId>
+            <version>${version}</version>
+            <type>jar</type>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.plugingroups</groupId>
+            <artifactId>webservices-axis2</artifactId>
+            <version>${version}</version>
+            <type>jar</type>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.plugingroups</groupId>
+            <artifactId>webservices-cxf</artifactId>
+            <version>${version}</version>
+            <type>jar</type>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.plugingroups</groupId>
+            <artifactId>persistence</artifactId>
+            <version>${version}</version>
+            <type>jar</type>
+        </dependency>
+<!--
+        <dependency>
+            <groupId>org.apache.geronimo.plugingroups</groupId>
+            <artifactId>clustering</artifactId>
+            <version>${version}</version>
+            <type>jar</type>
+        </dependency>
+-->
+        <dependency>
+            <groupId>org.apache.geronimo.configs</groupId>
+            <artifactId>plugin-farm</artifactId>
+            <version>${version}</version>
+            <type>car</type>
+        </dependency>
+
+<!-- stuff not from above plugingroups, yet in tomcat-javaee5 assembly -->
+    <dependency>
+        <groupId>org.apache.geronimo.plugins</groupId>
+        <artifactId>activemq-console-tomcat</artifactId>
+            <version>${version}</version>
+        <type>car</type>
+    </dependency>
+    <dependency>
+        <groupId>org.apache.geronimo.plugins</groupId>
+        <artifactId>debugviews-console-tomcat</artifactId>
+            <version>${version}</version>
+        <type>car</type>
+    </dependency>
+    <dependency>
+        <groupId>org.apache.geronimo.plugins</groupId>
+        <artifactId>plugin-console-tomcat</artifactId>
+            <version>${version}</version>
+        <type>car</type>
+    </dependency>
+    <dependency>
+        <groupId>org.apache.geronimo.plugins</groupId>
+        <artifactId>sysdb-console-tomcat</artifactId>
+            <version>${version}</version>
+        <type>car</type>
+    </dependency>
+    <dependency>
+        <groupId>org.apache.geronimo.plugins</groupId>
+        <artifactId>mconsole-tomcat</artifactId>
+            <version>${version}</version>
+        <type>car</type>
+    </dependency>
+    <dependency>
+        <groupId>org.apache.geronimo.plugins</groupId>
+        <artifactId>plancreator-console-tomcat</artifactId>
+            <version>${version}</version>
+        <type>car</type>
+    </dependency>
+
+    <dependency>
+        <groupId>org.apache.geronimo.configs</groupId>
+        <artifactId>mejb</artifactId>
+            <version>${version}</version>
+        <type>car</type>
+    </dependency>
+
+    <dependency>
+    <groupId>org.apache.geronimo.configs</groupId>
+    <artifactId>controller-as-repo</artifactId>
+            <version>${version}</version>
+        <type>car</type>
+    </dependency>
+
+    </dependencies>
+
+    <build>
+        <pluginManagement>
+            <plugins>
+
+                <plugin>
+                    <groupId>org.apache.geronimo.buildsupport</groupId>
+                    <artifactId>car-maven-plugin</artifactId>
+                    <version>${geronimoVersion}</version>
+                    <extensions>true</extensions>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+
+        <plugins>
+            <plugin>
+                <groupId>org.apache.geronimo.buildsupport</groupId>
+                <artifactId>car-maven-plugin</artifactId>
+                <configuration>
+                    <servers>
+                        <serverInstance>
+                            <name>default</name>
+                            <configFile>var/config/config.xml</configFile>
+                            <configSubstitutionsFile>var/config/config-substitutions.properties</configSubstitutionsFile>
+                            <configSubstitutionsPrefix>org.apache.geronimo.config.substitution.</configSubstitutionsPrefix>
+                            <artifactAliasesFile>var/config/artifact_aliases.properties</artifactAliasesFile>
+                        </serverInstance>
+                        <serverInstance>
+                            <name>client</name>
+                            <attributeManagerFrom>default</attributeManagerFrom>
+                            <artifactAliasesFile>var/config/client_artifact_aliases.properties</artifactAliasesFile>
+                        </serverInstance>
+                        <serverInstance>
+                            <name>offline</name>
+                            <configFile>var/config/offline-deployer-config.xml</configFile>
+                            <configSubstitutionsFile>var/config/config-substitutions.properties</configSubstitutionsFile>
+                            <configSubstitutionsPrefix>org.apache.geronimo.config.substitution.</configSubstitutionsPrefix>
+                            <artifactAliasesFile>var/config/artifact_aliases.properties</artifactAliasesFile>
+                        </serverInstance>
+                        <serverInstance>
+                            <name>jsr88</name>
+                            <configFile>var/config/jsr88-configurer-config.xml</configFile>
+                            <configSubstitutionsFile>var/config/config-substitutions.properties</configSubstitutionsFile>
+                            <configSubstitutionsPrefix>org.apache.geronimo.config.substitution.</configSubstitutionsPrefix>
+                            <artifactAliasesFile>var/config/artifact_aliases.properties</artifactAliasesFile>
+                        </serverInstance>
+                    </servers>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Propchange: geronimo/sandbox/djencks/assemblies/geronimo-tomcat-farm-controller/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/djencks/assemblies/geronimo-tomcat-farm-controller/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/djencks/assemblies/geronimo-tomcat-farm-controller/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml