Skip to content

Commit 2e4f429

Browse files
committed
updated for 1.2.3
1 parent 1218c16 commit 2e4f429

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
OWASP Java Encoder Project
22
==========================
33

4-
[![Build Status](https://travis-ci.org/OWASP/owasp-java-encoder.svg?branch=master)](https://travis-ci.org/OWASP/owasp-java-encoder) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
4+
[![Build Status](https://travis-ci.org/OWASP/owasp-java-encoder.svg?branch=main)](https://travis-ci.org/OWASP/owasp-java-encoder) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
55

66
Contextual Output Encoding is a computer programming technique necessary to stop
77
Cross-Site Scripting. This project is a Java 1.5+ simple-to-use drop-in high-performance
@@ -11,28 +11,28 @@ Start using the OWASP Java Encoders
1111
-----------------------------------
1212
You can download a JAR from [Maven Central](https://search.maven.org/#search|ga|1|g%3A%22org.owasp.encoder%22%20a%3A%22encoder%22).
1313

14-
JSP tags and EL functions are available in the encoder-jsp, also available in [Central](http://search.maven.org/remotecontent?filepath=org/owasp/encoder/encoder-jsp/1.2/encoder-jsp-1.2.jar).
14+
JSP tags and EL functions are available in the encoder-jsp, also available in [Central](http://search.maven.org/remotecontent?filepath=org/owasp/encoder/encoder-jsp/1.2.3/encoder-jsp-1.2.3.jar).
1515

1616
The jars are also available in Maven:
1717

1818
```xml
1919
<dependency>
2020
<groupId>org.owasp.encoder</groupId>
2121
<artifactId>encoder</artifactId>
22-
<version>1.2.2</version>
22+
<version>1.2.3</version>
2323
</dependency>
2424

2525
<dependency>
2626
<groupId>org.owasp.encoder</groupId>
2727
<artifactId>encoder-jsp</artifactId>
28-
<version>1.2.2</version>
28+
<version>1.2.3</version>
2929
</dependency>
3030
```
3131

3232
Quick Overview
3333
--------------
3434
The OWASP Java Encoder library is intended for quick contextual encoding with very little
35-
overhead, either in performance or usage. To get started, simply add the encoder-1.2.jar,
35+
overhead, either in performance or usage. To get started, simply add the encoder-1.2.3.jar,
3636
import org.owasp.encoder.Encode and start using.
3737

3838
Example usage:

0 commit comments

Comments
 (0)