Skip to content

Commit

Permalink
Fix compiler target language (#61)
Browse files Browse the repository at this point in the history
* change compiler target language to 8
  • Loading branch information
tamir-michaeli authored Aug 2, 2022
1 parent 33a75a9 commit e511988
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This appender uses [BigQueue](https://github.com/bulldog2011/bigqueue) implement
If you use Gradle, add the dependency to your project as follows:

```java
implementation 'io.logz.sender:logzio-java-sender:V1.1.2'
implementation 'io.logz.sender:logzio-java-sender:1.1.4'
```

### Parameters
Expand Down
4 changes: 2 additions & 2 deletions logzio-sender/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit e511988

Please sign in to comment.