Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,12 @@
node_modules
components
bower_components
nbproject
nbproject
/target
.classpath
.project
/.settings
/build
rebel.xml
.faces-config.xml.jsfdia
/doc
1 change: 1 addition & 0 deletions .tern-project
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"libs":["browser","ecma5"],"ide":{}}
8 changes: 8 additions & 0 deletions examples/AngularFaces-2.1/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/target
.classpath
.project
/.settings
/build
rebel.xml
.faces-config.xml.jsfdia
/doc
156 changes: 156 additions & 0 deletions examples/AngularFaces-2.1/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
<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>de.beyondjava.angularFaces</groupId>
<artifactId>angularfaces-jua-examples</artifactId>
<packaging>war</packaging>
<version>2.1.0-SNAPSHOT</version>
<name>angularfaces-2.0-examples</name>
<description>AngularFaces make JSF programming simpler. In particular, it adds AngularJS to JSF.</description>
<url>http://www.beyondjava.net</url>
<licenses>
<license>
<name>GNU General Public License (GPL) version 3.0</name>
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Stephan Rauh</name>
<email>[email protected]</email>
<organization>BeyondJava.net</organization>
<organizationUrl>http://www.beyondjava.net</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:[email protected]:stephanrauh/AngularFaces.git</connection>
<developerConnection>scm:git:[email protected]:stephanrauh/AngularFaces.git</developerConnection>
<url>[email protected]:stephanrauh/AngularFaces.git</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>
<repositories>
<repository>
<id>lib</id>
<url>file://${basedir}/../../dist</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>5.1</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
<version>2.2.1-b04</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<version>2.4.2</version>
</dependency>

<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>5.1.0.Final</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.1.0.Final</version>
</dependency>
<dependency>
<groupId>org.omnifaces</groupId>
<artifactId>omnifaces</artifactId>
<version>1.6</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>Mojarra 2.2.7</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>2.2.7</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-impl</artifactId>
<version>2.2.7</version>
<scope>compile</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>MyFaces 2.2.4</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>org.apache.myfaces.core</groupId>
<artifactId>myfaces-api</artifactId>
<version>2.2.4</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.core</groupId>
<artifactId>myfaces-impl</artifactId>
<version>2.2.4</version>
</dependency>
</dependencies>
</profile>
</profiles>

<build>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.4</version>
<configuration>
<outputDirectory>dist</outputDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading