Skip to content

Commit 445e291

Browse files
committed
Rolling back to compile it to java 8
1 parent c8b76dc commit 445e291

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.mvn/jvm.config

-1
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
--add-opens java.base/java.lang=ALL-UNNAMED

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Based on [facebook's Jest framework](https://facebook.github.io/jest/docs/en/sna
1818

1919

2020

21-
#### How to install using [Maven](https://mvnrepository.com/artifact/io.github.json-snapshot/json-snapshot/1.0.14)
21+
#### How to install using [Maven](https://mvnrepository.com/artifact/io.github.json-snapshot/json-snapshot/1.0.15)
2222

2323

2424

@@ -28,7 +28,7 @@ Add to your pom.xml dependencies section:
2828
<dependency>
2929
<groupId>io.github.json-snapshot</groupId>
3030
<artifactId>json-snapshot</artifactId>
31-
<version>1.0.14</version>
31+
<version>1.0.15</version>
3232
</dependency>
3333
```
3434

pom.xml

+3-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>io.github.json-snapshot</groupId>
77
<artifactId>json-snapshot</artifactId>
8-
<version>1.0.14</version>
8+
<version>1.0.15</version>
99
<packaging>jar</packaging>
1010

1111
<name>json-snapshot</name>
@@ -125,7 +125,8 @@
125125
<artifactId>maven-compiler-plugin</artifactId>
126126
<version>3.8.0</version>
127127
<configuration>
128-
<release>11</release>
128+
<source>1.8</source>
129+
<target>1.8</target>
129130
</configuration>
130131
</plugin>
131132
<plugin>
@@ -145,9 +146,6 @@
145146
<groupId>org.apache.maven.plugins</groupId>
146147
<artifactId>maven-javadoc-plugin</artifactId>
147148
<version>3.0.0</version>
148-
<configuration>
149-
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
150-
</configuration>
151149
<executions>
152150
<execution>
153151
<id>attach-javadocs</id>

0 commit comments

Comments
 (0)