Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Commit

Permalink
Merge pull request #15 from g4s8/14
Browse files Browse the repository at this point in the history
Downgrade jdk 8
  • Loading branch information
g4s8 authored Feb 25, 2020
2 parents 1bbbbfd + 0ef2b2e commit 84c5076
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ SOFTWARE.
<description>Parent POM of Artipie</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<junit-platform.version>5.4.2</junit-platform.version>
<vertx.version>3.8.5</vertx.version>
</properties>
Expand Down Expand Up @@ -115,6 +115,11 @@ SOFTWARE.
<artifactId>rxjava2-jdk8-interop</artifactId>
<version>0.3.7</version>
</dependency>
<dependency>
<groupId>org.reactivestreams</groupId>
<artifactId>reactive-streams</artifactId>
<version>1.0.3</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
Expand Down Expand Up @@ -153,6 +158,9 @@ SOFTWARE.
<optimize>true</optimize>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<useIncrementalCompilation>false</useIncrementalCompilation>
<compilerArgs>
<arg>-Xlint</arg>
<arg>-Werror</arg>
Expand Down

0 comments on commit 84c5076

Please sign in to comment.