Skip to content

Commit

Permalink
Compile on java 8 and 11
Browse files Browse the repository at this point in the history
  • Loading branch information
jalisson committed Aug 21, 2020
1 parent e1e9e03 commit f40b387
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<groupId>cz.startnet</groupId>
<artifactId>apgdiff</artifactId>
<name>Another PostgreSQL Diff Tool</name>
<version>2.6.0-SNAPSHOT</version>
<version>2.6.1-SNAPSHOT</version>
<description>Simple PostgreSQL diff tool that is useful for schema upgrades. The tool compares two schema dump files and creates output file that is (after some hand-made modifications) suitable for upgrade of old schema.</description>

<url>http://www.apgdiff.com/</url>
Expand Down Expand Up @@ -115,8 +115,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>11</source>
<target>11</target>
<source>1.8</source>
<target>1.8</target>
<encoding>${project.build.sourceEncoding}</encoding>
<showDeprecation>true</showDeprecation>
<debug>false</debug>
Expand Down Expand Up @@ -181,6 +181,7 @@
<head>To do something:</head>
</tag>
</tags>
<source>8</source>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -281,7 +282,7 @@
<version>3.13.0</version>
<configuration>
<sourceEncoding>utf-8</sourceEncoding>
<targetJdk>1.6</targetJdk>
<targetJdk>1.8</targetJdk>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit f40b387

Please sign in to comment.