Skip to content

Commit 798c335

Browse files
committed
* fixed #97 evaluate JSF PrimeFaces Spring Boot AutoConfigure
* fixed #96 add JSF PrimeFaces Spring Boot AutoConfigure * fixed #95 evaluate JSF JavaxFaces Spring Boot AutoConfigure * fixed #94 add JSF JavaxFaces Spring Boot AutoConfigure * fixed #93 add JSF JavaxFaces Spring Boot AutoConfigure * fixed #92 try jars * fixed #288 create Branch JSF_Version from Release 2.3.26 * Issue #291Evaluate Joinfaces
1 parent e352da6 commit 798c335

File tree

2 files changed

+67
-6
lines changed

2 files changed

+67
-6
lines changed

etc/TODO.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,13 +136,20 @@ Caused by: org.postgresql.util.PSQLException: ERROR: relation "spring_session" d
136136
* fixed #249 TaskRepository: move the JQL Query-String to Entity as Prepared Statement
137137

138138
## 3.0.0
139+
* fixed #97 evaluate JSF PrimeFaces Spring Boot AutoConfigure
140+
* fixed #96 add JSF PrimeFaces Spring Boot AutoConfigure
141+
* fixed #95 evaluate JSF JavaxFaces Spring Boot AutoConfigure
142+
* fixed #94 add JSF JavaxFaces Spring Boot AutoConfigure
143+
* fixed #93 add JSF JavaxFaces Spring Boot AutoConfigure
144+
* fixed #92 try jars
139145
* fixed #288 create Branch JSF_Version from Release 2.3.26
140-
* Issue #97 evaluate JSF PrimeFaces Spring Boot AutoConfigure
141-
* Issue #96 add JSF PrimeFaces Spring Boot AutoConfigure
142-
* Issue #95 evaluate JSF JavaxFaces Spring Boot AutoConfigure
143-
* Issue #94 add JSF JavaxFaces Spring Boot AutoConfigure
144-
* Issue #93 add JSF JavaxFaces Spring Boot AutoConfigure
145-
* Issue #92 try jars
146+
* Issue #291Evaluate Joinfaces
147+
148+
## Joinfaces
149+
* https://github.com/joinfaces/joinfaces
150+
* http://joinfaces.org/
151+
* https://docs.joinfaces.org/4.3.4/reference/
152+
* https://docs.joinfaces.org/current/reference/
146153

147154

148155

pom.xml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@
6767
</distributionManagement>
6868

6969
<properties>
70+
<joinfaces.version>4.3.4</joinfaces.version>
71+
7072
<java.version>13</java.version>
7173
<version.maven>3.6.3</version.maven>
7274

@@ -481,6 +483,23 @@
481483
<artifactId>htmlunit</artifactId>
482484
<version>${htmlunit.version}</version>
483485
</dependency>
486+
487+
<dependency>
488+
<groupId>org.primefaces</groupId>
489+
<artifactId>primefaces</artifactId>
490+
<version>8.0</version>
491+
</dependency>
492+
<dependency>
493+
<groupId>org.joinfaces</groupId>
494+
<artifactId>joinfaces-dependencies</artifactId>
495+
<version>${joinfaces.version}</version>
496+
<type>pom</type>
497+
<scope>import</scope>
498+
</dependency>
499+
<dependency>
500+
<groupId>org.joinfaces</groupId>
501+
<artifactId>jsf-spring-boot-starter</artifactId>
502+
</dependency>
484503
</dependencies>
485504
</dependencyManagement>
486505

@@ -734,6 +753,25 @@
734753
<groupId>org.apache.maven.doxia</groupId>
735754
<artifactId>doxia-module-markdown</artifactId>
736755
</dependency>
756+
<dependency>
757+
<groupId>org.primefaces</groupId>
758+
<artifactId>primefaces</artifactId>
759+
</dependency>
760+
<dependency>
761+
<groupId>org.primefaces</groupId>
762+
<artifactId>primefaces</artifactId>
763+
<version>8.0</version>
764+
</dependency>
765+
<dependency>
766+
<groupId>com.sun.faces</groupId>
767+
<artifactId>jsf-api</artifactId>
768+
<version>2.2.20</version>
769+
</dependency>
770+
<dependency>
771+
<groupId>com.sun.faces</groupId>
772+
<artifactId>jsf-impl</artifactId>
773+
<version>2.2.20</version>
774+
</dependency>
737775
</dependencies>
738776

739777
<build>
@@ -838,6 +876,18 @@
838876
</dependency>
839877
</dependencies>
840878
</plugin>
879+
<plugin>
880+
<groupId>org.joinfaces</groupId>
881+
<artifactId>joinfaces-maven-plugin</artifactId>
882+
<version>${joinfaces.version}</version>
883+
<executions>
884+
<execution>
885+
<goals>
886+
<goal>classpath-scan</goal>
887+
</goals>
888+
</execution>
889+
</executions>
890+
</plugin>
841891
</plugins>
842892
</pluginManagement>
843893
<plugins>
@@ -1242,6 +1292,10 @@
12421292
<showDeprecation>true</showDeprecation>
12431293
</configuration>
12441294
</plugin>
1295+
<plugin>
1296+
<groupId>org.joinfaces</groupId>
1297+
<artifactId>joinfaces-maven-plugin</artifactId>
1298+
</plugin>
12451299
<plugin>
12461300
<groupId>org.apache.maven.plugins</groupId>
12471301
<artifactId>maven-javadoc-plugin</artifactId>

0 commit comments

Comments
 (0)