https://javaserverfaces.github.io/download.html


Michael Müller
 

Hi,

The project page (see below) displays the Java EE 7 coordinates, and later on for Java EE 7 the same. I guess, the first coordinates mentioned here shall refer to Java EE 8?

--

Herzliche Grüße - Best Regards,

Michael Müller
Brühl, Germany
blog.mueller-bruehl.de
it-rezension.de
@muellermi


Read my books
  "Web Development with Java and JSF": https://leanpub.com/jsf
  "Java Lambdas and Parallel Streams": http://www.apress.com/de/book/9781484224861
  "Visitors" a photographic image book: https://leanpub.com/visitors


The Best Way to Satisfy A Dependency on JSF

The recommend way to use JSF with Maven is to develop on a Java EE certified container and declare a <provided> scope dependency on the appropriate version of the Java EE API jar. For example:

<dependency>
  <groupId>javax</groupId>
  <artifactId>javaee-api</artifactId>
  <version>7.0</version>
  <scope>provided</scope>
</dependency>

[snip] 
Java EE 7 (also satisfies JSF 2.2 compile-time dependencies)
<dependency>
  <groupId>javax</groupId>
  <artifactId>javaee-api</artifactId>
  <version>7.0</version>
  <scope>provided</scope>
</dependency>


Arjan Tijms
 

The JSF homepage is quite out of date, mentioning EE 7 is probably one of the least outdated parts :(

I've had it on my TODO to at least somewhat update it for well over 4 months now, but haven't found the time yet...


Edward Burns
 

On Sun, 08 Oct 2017 04:06:34 -0700, "Arjan Tijms" <arjan.tijms@...> said:
AT> The JSF homepage is quite out of date, mentioning EE 7 is probably one of the least outdated parts :(
AT> I've had it on my TODO to at least somewhat update it for well over 4 months now, but haven't found the time yet...

Yes that's an important PR!

Ed

--
| 33 business days until CodeEurope Poland 2017
| 79 business days until JavaLand 2018
| edward.burns@... | office: +1 407 458 0017


Dennis Kieselhorst
 

Just did some changes: https://github.com/javaserverfaces/javaserverfaces.github.io/pull/2

users@... and dev@... are both replaced by https://javaee.groups.io/g/mojarra/ right?

The "Contribute - How to get involved" link still needs an update. Seems that the Wiki no longer exists...

Regards
Dennis