You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+36-1Lines changed: 36 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ specific Jakarta version of ESAPI, in Maven, you would specify your ESAPI depend
30
30
<dependency>
31
31
<groupId>org.owasp.esapi</groupId>
32
32
<artifactId>esapi</artifactId>
33
-
<version>2.5.3.0-SNAPSHOT</version>
33
+
<version>2.5.4.0</version>
34
34
<classifier>jakarta</classifier>
35
35
</dependency>
36
36
```
@@ -46,6 +46,41 @@ fact, without the
46
46
```
47
47
that's the version that will be used by default.
48
48
49
+
# Quickstart - Maven Example
50
+
### Step 1: Add the required maven dependencies.
51
+
```xml
52
+
<dependency>
53
+
<groupId>org.owasp.esapi</groupId>
54
+
<artifactId>esapi</artifactId>
55
+
<version>2.5.3.0 [or later]</version>
56
+
<classifier>jakarta</classifier>
57
+
</dependency>
58
+
<!-- Add the below dependency if the not using JakartaEE -->
59
+
<dependency>
60
+
<groupId>jakarta.servlet</groupId>
61
+
<artifactId>jakarta.servlet-api</artifactId>
62
+
<version>6.1.0</version>
63
+
<scope>provided</scope>
64
+
</dependency>
65
+
```
66
+
### Step 2: Create 2 properties file namely: ESAPI.properties and validation.properties and add them to your classpath. You can refer to below for boilerplate configurations.
0 commit comments