Skip to content

Jsf version #296

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Oct 2, 2020
Merged
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
24 changes: 20 additions & 4 deletions etc/TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,25 @@ Caused by: org.postgresql.util.PSQLException: ERROR: relation "spring_session" d
## 2.3.26
* fixed #249 TaskRepository: move the JQL Query-String to Entity as Prepared Statement

## 2.3.27
* Issue #234 Taskstate: Task Edit Form -> change Project via DropDown
* Issue #235 Project/Root: Task Edit Form -> change Project via DropDown
* Issue #236 Project/id: Task Edit Form -> change Project via DropDown
## 3.0.0
* 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 #291 Evaluate Joinfaces
* Issue #292 app starts with joinfaces
* Issue #293 app run with joinfaces but with MVC Templates
* Issue #294 Logging with logback only

## Joinfaces
* https://github.com/joinfaces/joinfaces
* http://joinfaces.org/
* https://docs.joinfaces.org/4.3.4/reference/
* https://docs.joinfaces.org/current/reference/




76 changes: 75 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.woehlke</groupId>
<artifactId>simpleworklist</artifactId>
<version>2.3.27-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<parent>
Expand Down Expand Up @@ -67,6 +67,8 @@
</distributionManagement>

<properties>
<joinfaces.version>4.3.4</joinfaces.version>

<java.version>13</java.version>
<version.maven>3.6.3</version.maven>

Expand Down Expand Up @@ -139,16 +141,20 @@

<spring-data-releasetrain.version>Neumann-SR4</spring-data-releasetrain.version>
<spring-session-bom.version>Dragonfruit-SR1</spring-session-bom.version>
<!--
<spring-framework.version>5.2.9.RELEASE</spring-framework.version>
<spring-security.version>5.3.4.RELEASE</spring-security.version>
-->

<!-- Unit and Integration Testing -->
<junit-jupiter.version>5.6.2</junit-jupiter.version>
<xmlunit2.version>2.6.4</xmlunit2.version>
<xmlunit.version>2.6.4</xmlunit.version>
<htmlunit.version>2.43.0</htmlunit.version>
<hamcrest.version>2.2</hamcrest.version>
<!--
<lombok.version>1.18.12</lombok.version>
-->
<jsoup.version>1.13.1</jsoup.version>

<skipTests>true</skipTests>
Expand Down Expand Up @@ -289,6 +295,13 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.joinfaces</groupId>
<artifactId>joinfaces-dependencies</artifactId>
<version>${joinfaces.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
Expand All @@ -303,6 +316,13 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-bom</artifactId>
<version>${spring-security.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- webjars -->
<dependency>
<groupId>org.webjars</groupId>
Expand Down Expand Up @@ -342,6 +362,7 @@
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<optional>false</optional>
<scope>provided</scope>
</dependency>

<dependency>
Expand Down Expand Up @@ -481,6 +502,13 @@
<artifactId>htmlunit</artifactId>
<version>${htmlunit.version}</version>
</dependency>

<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>8.0</version>
</dependency>

</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -542,6 +570,10 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
Expand Down Expand Up @@ -579,7 +611,18 @@
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>false</optional>
<scope>provided</scope>
</dependency>
<!--
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-access</artifactId>
</dependency>
-->
<dependency>
<groupId>org.webjars</groupId>
<artifactId>font-awesome</artifactId>
Expand Down Expand Up @@ -734,6 +777,14 @@
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-module-markdown</artifactId>
</dependency>
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
</dependency>
<dependency>
<groupId>org.joinfaces</groupId>
<artifactId>jsf-spring-boot-starter</artifactId>
</dependency>
</dependencies>

<build>
Expand Down Expand Up @@ -838,6 +889,18 @@
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.joinfaces</groupId>
<artifactId>joinfaces-maven-plugin</artifactId>
<version>${joinfaces.version}</version>
<executions>
<execution>
<goals>
<goal>classpath-scan</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand Down Expand Up @@ -1242,6 +1305,10 @@
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
<plugin>
<groupId>org.joinfaces</groupId>
<artifactId>joinfaces-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down Expand Up @@ -1364,6 +1431,13 @@
</compilerArgs>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.woehlke.simpleworklist.domain.task;

import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
Expand All @@ -15,6 +14,7 @@
import org.woehlke.simpleworklist.services.TaskStateControllerService;
import org.woehlke.simpleworklist.user.session.UserSessionBean;

import lombok.extern.slf4j.Slf4j;
import javax.validation.constraints.NotNull;
import java.util.Locale;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.woehlke.simpleworklist.domain.task;

import lombok.extern.slf4j.Slf4j;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.validation.BindingResult;
Expand All @@ -19,6 +19,7 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.woehlke.simpleworklist.user.account.UserAccount;

import lombok.extern.slf4j.Slf4j;
import javax.validation.Valid;
import javax.validation.constraints.NotNull;
import java.util.List;
Expand Down