Skip to content

Commit 2062673

Browse files
authored
Update Readme.md (#232)
1 parent 70ed4b2 commit 2062673

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,20 @@
1919
- [Quickstart](https://auth0.com/docs/quickstart/webapp/java) - our interactive guide for quickly adding login, logout and user information to a Java Servlet application using Auth0.
2020
- [Sample App](https://github.com/auth0-samples/auth0-servlet-sample/tree/master/01-Login) - a sample Java Servlet application integrated with Auth0.
2121
- [Examples](./EXAMPLES.md) - code samples for common scenarios.
22+
- [Migration Guide](./MIGRATION_GUIDE.md) - migrating from v1.x to v2.0.0.
2223
- [Docs site](https://www.auth0.com/docs) - explore our docs site and learn more about Auth0.
2324

2425
## Getting Started
2526

2627
### Requirements
2728

28-
Java 8 or above and `javax.servlet` version 3.
29+
Java 17 or above and `jakarta.servlet` version 6.0 (Jakarta EE 10).
30+
31+
Compatible containers: Tomcat 10.1+, Jetty 12+, WildFly 27+.
2932

3033
> If you are using Spring, we recommend leveraging Spring's OIDC and OAuth2 support, as demonstrated by the [Spring Boot Quickstart](https://auth0.com/docs/quickstart/webapp/java-spring-boot).
34+
>
35+
> **Upgrading from v1.x?** See the [Migration Guide](./MIGRATION_GUIDE.md) for a complete list of breaking changes.
3136
3237
### Installation
3338

@@ -37,14 +42,14 @@ Add the dependency via Maven:
3742
<dependency>
3843
<groupId>com.auth0</groupId>
3944
<artifactId>mvc-auth-commons</artifactId>
40-
<version>1.12.0</version>
45+
<version>2.0.0-beta.0</version>
4146
</dependency>
4247
```
4348

4449
or Gradle:
4550

4651
```gradle
47-
implementation 'com.auth0:mvc-auth-commons:1.12.0'
52+
implementation 'com.auth0:mvc-auth-commons:2.0.0-beta.0'
4853
```
4954

5055
### Configure Auth0

0 commit comments

Comments
 (0)