Skip to content

Commit 72e415a

Browse files
authored
fix: java.lang.NoSuchMethodError when running on Java 8 (#80)
* fix: java.lang.NoSuchMethodError when running on Java 8 resolves #79 * build: bump version
1 parent d1a0294 commit 72e415a

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<parent>
4343
<groupId>org.owasp.encoder</groupId>
4444
<artifactId>encoder-parent</artifactId>
45-
<version>1.3.0</version>
45+
<version>1.3.1</version>
4646
</parent>
4747

4848
<artifactId>encoder</artifactId>

esapi/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<parent>
4343
<groupId>org.owasp.encoder</groupId>
4444
<artifactId>encoder-parent</artifactId>
45-
<version>1.3.0</version>
45+
<version>1.3.1</version>
4646
</parent>
4747

4848
<artifactId>encoder-esapi</artifactId>

jakarta-test/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>org.owasp.encoder</groupId>
2323
<artifactId>encoder-jakarta-jsp</artifactId>
24-
<version>1.3.0</version>
24+
<version>1.3.1</version>
2525
</dependency>
2626
<dependency>
2727
<groupId>org.springframework.boot</groupId>

jakarta/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<parent>
4343
<groupId>org.owasp.encoder</groupId>
4444
<artifactId>encoder-parent</artifactId>
45-
<version>1.3.0</version>
45+
<version>1.3.1</version>
4646
</parent>
4747

4848
<artifactId>encoder-jakarta-jsp</artifactId>

jsp/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<parent>
4343
<groupId>org.owasp.encoder</groupId>
4444
<artifactId>encoder-parent</artifactId>
45-
<version>1.3.0</version>
45+
<version>1.3.1</version>
4646
</parent>
4747

4848
<artifactId>encoder-jsp</artifactId>

pom.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
<groupId>org.owasp.encoder</groupId>
4343
<artifactId>encoder-parent</artifactId>
44-
<version>1.3.0</version>
44+
<version>1.3.1</version>
4545
<packaging>pom</packaging>
4646

4747
<name>OWASP Java Encoder Project</name>
@@ -273,8 +273,7 @@
273273
<goal>compile</goal>
274274
</goals>
275275
<configuration>
276-
<source>1.8</source>
277-
<target>1.8</target>
276+
<release>8</release>
278277
</configuration>
279278
</execution>
280279
<execution>

0 commit comments

Comments
 (0)