-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from juanjmerono/jsfupdate
Jsfupdate
- Loading branch information
Showing
43 changed files
with
677 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
kickroster-classic/src/main/resources/demo/messages_es.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/target/ | ||
/.metadata/ | ||
/.settings/ | ||
/.classpath | ||
/.project | ||
/target/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
<?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"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<name>Sakai JSF2.2 TOOL IceFaces</name> | ||
<groupId>org.sakaiproject.jsfext</groupId> | ||
<artifactId>kickroster-ice</artifactId> | ||
<version>1.0</version> | ||
<organization> | ||
<name>Universidad de Murcia</name> | ||
<url>http://www.um.es/</url> | ||
</organization> | ||
<inceptionYear>2010</inceptionYear> | ||
<description>JSF2.2 Web Application</description> | ||
<packaging>war</packaging> | ||
|
||
<!-- the base is parent --> | ||
<parent> | ||
<groupId>org.sakaiproject</groupId> | ||
<artifactId>master</artifactId> | ||
<version>12-SNAPSHOT</version> | ||
<relativePath>../master/pom.xml</relativePath> | ||
</parent> | ||
|
||
<properties> | ||
<org.mojarra.version>2.2.14</org.mojarra.version> | ||
<org.icefaces.version>4.1.1</org.icefaces.version> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.sakaiproject.kernel</groupId> | ||
<artifactId>sakai-kernel-util</artifactId> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>commons-codec</groupId> | ||
<artifactId>commons-codec</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.sakaiproject.kernel</groupId> | ||
<artifactId>sakai-kernel-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.sakaiproject.kernel</groupId> | ||
<artifactId>sakai-component-manager</artifactId> | ||
</dependency> | ||
<!-- Faces Implementation --> | ||
<dependency> | ||
<groupId>org.glassfish</groupId> | ||
<artifactId>javax.faces</artifactId> | ||
<version>${org.mojarra.version}</version> | ||
</dependency> | ||
<!-- Icefaces Version --> | ||
<dependency> | ||
<groupId>org.icefaces</groupId> | ||
<artifactId>icefaces</artifactId> | ||
<version>${org.icefaces.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.icefaces</groupId> | ||
<artifactId>icefaces-ace</artifactId> | ||
<version>${org.icefaces.version}</version> | ||
</dependency> | ||
<!-- Sakai JSF --> | ||
<dependency> | ||
<groupId>org.sakaiproject.jsf</groupId> | ||
<artifactId>jsf-app</artifactId> | ||
<version>${sakai.version}</version> | ||
<classifier>jsf2</classifier> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>javax.faces</groupId> | ||
<artifactId>javax.faces-api</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>javax.faces</groupId> | ||
<artifactId>jsf-api</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>javax.faces</groupId> | ||
<artifactId>jsf-impl</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.sakaiproject.jsf</groupId> | ||
<artifactId>jsf-tool</artifactId> | ||
<version>${sakai.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>commons-codec</groupId> | ||
<artifactId>commons-codec</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.sakaiproject.jsf</groupId> | ||
<artifactId>jsf-widgets-sun-depend</artifactId> | ||
<version>${sakai.version}</version> | ||
<type>pom</type> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>javax.faces</groupId> | ||
<artifactId>jsf-api</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>javax.faces</groupId> | ||
<artifactId>jsf-impl</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<finalName>kickroster-ice</finalName> | ||
<sourceDirectory>${basedir}/src/main/java</sourceDirectory> | ||
<resources> | ||
<resource> | ||
<directory>${basedir}/src/main/bundle</directory> | ||
<includes> | ||
<include>**/*.properties</include> | ||
</includes> | ||
</resource> | ||
<resource> | ||
<directory>${basedir}/src/main/resources</directory> | ||
<includes> | ||
<include>**/*.*</include> | ||
</includes> | ||
</resource> | ||
</resources> | ||
</build> | ||
|
||
</project> |
Oops, something went wrong.