Updated Branches: refs/heads/master 0f0150efe -> b0251ee16
DELTASPIKE-503 added skeleton Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/b0251ee1 Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/b0251ee1 Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/b0251ee1 Branch: refs/heads/master Commit: b0251ee16bfc7be945261a0b5da8938409d1979d Parents: 0f0150e Author: tommy <tommy@tommy-notebook> Authored: Thu Jan 16 19:23:32 2014 +0100 Committer: tommy <tommy@tommy-notebook> Committed: Thu Jan 16 19:23:32 2014 +0100 ---------------------------------------------------------------------- deltaspike/examples/jsf-playground/pom.xml | 118 +++++++++++++++++++ .../src/main/resources/META-INF/beans.xml | 23 ++++ .../src/main/webapp/WEB-INF/beans.xml | 23 ++++ .../src/main/webapp/WEB-INF/faces-config.xml | 25 ++++ .../src/main/webapp/WEB-INF/web.xml | 41 +++++++ .../jsf-playground/src/main/webapp/index.xhtml | 37 ++++++ 6 files changed, 267 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/deltaspike/blob/b0251ee1/deltaspike/examples/jsf-playground/pom.xml ---------------------------------------------------------------------- diff --git a/deltaspike/examples/jsf-playground/pom.xml b/deltaspike/examples/jsf-playground/pom.xml new file mode 100644 index 0000000..e4cfb10 --- /dev/null +++ b/deltaspike/examples/jsf-playground/pom.xml @@ -0,0 +1,118 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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"> +<!-- + 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. +--> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.deltaspike.examples</groupId> + <artifactId>examples-project</artifactId> + <version>0.6-SNAPSHOT</version> + </parent> + + <artifactId>deltaspike-jsf-playground</artifactId> + + <name>Apache DeltaSpike JSF Playground</name> + + <packaging>war</packaging> + + <properties> + <deploy.skip>true</deploy.skip> + </properties> + + <profiles> + <profile> + <!-- + * Run it with: mvn clean package tomee:run -PtomeeConfig + * + * For debugging add: -Dopenejb.server.debug=true + * + * The application can be browsed under http://localhost:8080/ds + --> + <id>tomeeConfig</id> + <build> + <defaultGoal>install</defaultGoal> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.0</version> + <configuration> + <source>1.6</source> + <target>1.6</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.openejb.maven</groupId> + <artifactId>tomee-maven-plugin</artifactId> + <version>1.0.1</version> + <configuration> + <tomeeVersion>${tomee.version}</tomeeVersion> + </configuration> + + </plugin> + </plugins> + </build> + </profile> + + </profiles> + + <dependencies> + + <dependency> + <groupId>org.apache.myfaces.core</groupId> + <artifactId>myfaces-api</artifactId> + <version>${myfaces2.version}</version> + <scope>provided</scope> + </dependency> + + <!-- DeltaSpike modules --> + <dependency> + <groupId>org.apache.deltaspike.core</groupId> + <artifactId>deltaspike-core-api</artifactId> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>org.apache.deltaspike.core</groupId> + <artifactId>deltaspike-core-impl</artifactId> + <scope>compile</scope> + <!-- compile since we extends DefaultMessageResolver --> + </dependency> + + <dependency> + <groupId>org.apache.deltaspike.modules</groupId> + <artifactId>deltaspike-jsf-module-api</artifactId> + <scope>compile</scope> + </dependency> + + <dependency> + <groupId>org.apache.deltaspike.modules</groupId> + <artifactId>deltaspike-jsf-module-impl</artifactId> + <scope>runtime</scope> + + </dependency> + + </dependencies> + + <build> + <finalName>ds</finalName> + </build> +</project> + http://git-wip-us.apache.org/repos/asf/deltaspike/blob/b0251ee1/deltaspike/examples/jsf-playground/src/main/resources/META-INF/beans.xml ---------------------------------------------------------------------- diff --git a/deltaspike/examples/jsf-playground/src/main/resources/META-INF/beans.xml b/deltaspike/examples/jsf-playground/src/main/resources/META-INF/beans.xml new file mode 100644 index 0000000..4070730 --- /dev/null +++ b/deltaspike/examples/jsf-playground/src/main/resources/META-INF/beans.xml @@ -0,0 +1,23 @@ +<?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. +--> +<beans xmlns="http://java.sun.com/xml/ns/javaee" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/beans_1_0.xsd"> +</beans> http://git-wip-us.apache.org/repos/asf/deltaspike/blob/b0251ee1/deltaspike/examples/jsf-playground/src/main/webapp/WEB-INF/beans.xml ---------------------------------------------------------------------- diff --git a/deltaspike/examples/jsf-playground/src/main/webapp/WEB-INF/beans.xml b/deltaspike/examples/jsf-playground/src/main/webapp/WEB-INF/beans.xml new file mode 100644 index 0000000..75d0933 --- /dev/null +++ b/deltaspike/examples/jsf-playground/src/main/webapp/WEB-INF/beans.xml @@ -0,0 +1,23 @@ +<?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. +--> +<beans xmlns="http://java.sun.com/xml/ns/javaee" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/beans_1_0.xsd"> +</beans> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/deltaspike/blob/b0251ee1/deltaspike/examples/jsf-playground/src/main/webapp/WEB-INF/faces-config.xml ---------------------------------------------------------------------- diff --git a/deltaspike/examples/jsf-playground/src/main/webapp/WEB-INF/faces-config.xml b/deltaspike/examples/jsf-playground/src/main/webapp/WEB-INF/faces-config.xml new file mode 100644 index 0000000..a0f7461 --- /dev/null +++ b/deltaspike/examples/jsf-playground/src/main/webapp/WEB-INF/faces-config.xml @@ -0,0 +1,25 @@ +<?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. +--> +<faces-config xmlns="http://java.sun.com/xml/ns/javaee" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd" + version="2.0"> + +</faces-config> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/deltaspike/blob/b0251ee1/deltaspike/examples/jsf-playground/src/main/webapp/WEB-INF/web.xml ---------------------------------------------------------------------- diff --git a/deltaspike/examples/jsf-playground/src/main/webapp/WEB-INF/web.xml b/deltaspike/examples/jsf-playground/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..8f43fff --- /dev/null +++ b/deltaspike/examples/jsf-playground/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,41 @@ +<?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. +--> +<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" + version="3.0"> + + <context-param> + <param-name>javax.faces.DEFAULT_SUFFIX</param-name> + <param-value>.xhtml</param-value> + </context-param> + + <servlet> + <servlet-name>Faces Servlet</servlet-name> + <servlet-class>javax.faces.webapp.FacesServlet</servlet-class> + <load-on-startup>1</load-on-startup> + </servlet> + + <servlet-mapping> + <servlet-name>Faces Servlet</servlet-name> + <url-pattern>*.xhtml</url-pattern> + </servlet-mapping> + + <welcome-file-list> + <welcome-file>index.xhtml</welcome-file> + </welcome-file-list> +</web-app> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/deltaspike/blob/b0251ee1/deltaspike/examples/jsf-playground/src/main/webapp/index.xhtml ---------------------------------------------------------------------- diff --git a/deltaspike/examples/jsf-playground/src/main/webapp/index.xhtml b/deltaspike/examples/jsf-playground/src/main/webapp/index.xhtml new file mode 100644 index 0000000..7b5fc0a --- /dev/null +++ b/deltaspike/examples/jsf-playground/src/main/webapp/index.xhtml @@ -0,0 +1,37 @@ +<?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. +--> +<!DOCTYPE html + PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<html xmlns="http://www.w3.org/1999/xhtml" + xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"> + +<h:head> + <title>DeltaSpike JSF Playground</title> +</h:head> + +<h:body> + <h1>Deltaspike JSF Playground</h1> + <h:link value="Scopes" outcome="pages/scopes/scopePage1.jsf" /> <br/> + <h:link value="Messages" outcome="pages/message/jsfMessage.jsf" /> +</h:body> + +</html> \ No newline at end of file
