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 2009/12/21 10:34:48 UTC

svn commit: r892742 - in /geronimo/server/trunk/plugins/myfaces: myfaces-jetty-server/ myfaces-jetty-server/pom.xml myfaces-jetty-server/src/ myfaces-jetty-server/src/main/ myfaces-jetty-server/src/main/resources/ pom.xml

Author: djencks
Date: Mon Dec 21 09:34:47 2009
New Revision: 892742

URL: http://svn.apache.org/viewvc?rev=892742&view=rev
Log:
GERONIMO-4996 initial myfaces 2 integration, with tests server.  After you fix the myfaces osgi metadata, the server will start

Added:
    geronimo/server/trunk/plugins/myfaces/myfaces-jetty-server/
    geronimo/server/trunk/plugins/myfaces/myfaces-jetty-server/pom.xml   (with props)
    geronimo/server/trunk/plugins/myfaces/myfaces-jetty-server/src/
    geronimo/server/trunk/plugins/myfaces/myfaces-jetty-server/src/main/
    geronimo/server/trunk/plugins/myfaces/myfaces-jetty-server/src/main/resources/
Modified:
    geronimo/server/trunk/plugins/myfaces/pom.xml

Added: geronimo/server/trunk/plugins/myfaces/myfaces-jetty-server/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/plugins/myfaces/myfaces-jetty-server/pom.xml?rev=892742&view=auto
==============================================================================
--- geronimo/server/trunk/plugins/myfaces/myfaces-jetty-server/pom.xml (added)
+++ geronimo/server/trunk/plugins/myfaces/myfaces-jetty-server/pom.xml Mon Dec 21 09:34:47 2009
@@ -0,0 +1,109 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <artifactId>myfaces</artifactId>
+    <groupId>org.apache.geronimo.plugins</groupId>
+    <version>3.0-SNAPSHOT</version>
+  </parent>
+  <groupId>org.apache.geronimo.plugins</groupId>
+  <artifactId>myfaces-jetty-server</artifactId>
+  <version>3.0-SNAPSHOT</version>
+  <packaging>server-assembly</packaging>
+  <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>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.geronimo.framework</groupId>
+      <artifactId>karaf-framework</artifactId>
+      <version>${geronimoVersion}</version>
+      <type>car</type>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.geronimo.configs</groupId>
+      <artifactId>jetty8</artifactId>
+      <version>${geronimoVersion}</version>
+      <type>car</type>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.geronimo.configs</groupId>
+      <artifactId>jetty8-deployer</artifactId>
+      <version>${geronimoVersion}</version>
+      <type>car</type>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.geronimo.configs</groupId>
+      <artifactId>jasper</artifactId>
+      <version>${geronimoVersion}</version>
+      <type>car</type>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.geronimo.configs</groupId>
+      <artifactId>jasper-deployer</artifactId>
+      <version>${geronimoVersion}</version>
+      <type>car</type>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.geronimo.configs</groupId>
+      <artifactId>myfaces</artifactId>
+      <version>${geronimoVersion}</version>
+      <type>car</type>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.geronimo.configs</groupId>
+      <artifactId>myfaces-deployer</artifactId>
+      <version>${geronimoVersion}</version>
+      <type>car</type>
+    </dependency>
+  </dependencies>
+  <properties>
+    <geronimoVersion>3.0-SNAPSHOT</geronimoVersion>
+  </properties>
+</project>

Propchange: geronimo/server/trunk/plugins/myfaces/myfaces-jetty-server/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/server/trunk/plugins/myfaces/myfaces-jetty-server/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/server/trunk/plugins/myfaces/myfaces-jetty-server/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: geronimo/server/trunk/plugins/myfaces/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/plugins/myfaces/pom.xml?rev=892742&r1=892741&r2=892742&view=diff
==============================================================================
--- geronimo/server/trunk/plugins/myfaces/pom.xml (original)
+++ geronimo/server/trunk/plugins/myfaces/pom.xml Mon Dec 21 09:34:47 2009
@@ -14,10 +14,7 @@
     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$ -->
-
+--><!-- $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">
 
     <modelVersion>4.0.0</modelVersion>
@@ -41,6 +38,7 @@
         <module>geronimo-myfaces-builder</module>
         <module>myfaces</module>
         <module>myfaces-deployer</module>
+        <module>myfaces-jetty-server</module>
     </modules>
 
-</project>
+</project>
\ No newline at end of file