forked from loafle/openapi-generator-original
Switch to Java 8 (#124)
* Set java version 1.8 * Remove "joda-time" usage * Remove 'com.google.common.base.Function' usage * Remove "LinkedListMultimap" usage * Add guava to the dependencies
This commit is contained in:
@@ -87,9 +87,9 @@
|
||||
</execution>
|
||||
</executions> -->
|
||||
<configuration>
|
||||
<compilerSource>1.7</compilerSource>
|
||||
<compilerCompliance>1.7</compilerCompliance>
|
||||
<compilerTargetPlatform>1.7</compilerTargetPlatform>
|
||||
<compilerSource>1.8</compilerSource>
|
||||
<compilerCompliance>1.8</compilerCompliance>
|
||||
<compilerTargetPlatform>1.8</compilerTargetPlatform>
|
||||
<lineEnding>LF</lineEnding>
|
||||
</configuration>
|
||||
</plugin>
|
||||
@@ -163,8 +163,8 @@
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.6.1</version>
|
||||
<configuration>
|
||||
<source>1.7</source>
|
||||
<target>1.7</target>
|
||||
<source>1.8</source>
|
||||
<target>1.8</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
@@ -199,7 +199,7 @@
|
||||
<version>2.10.4</version>
|
||||
<configuration>
|
||||
<aggregate>true</aggregate>
|
||||
<source>1.7</source>
|
||||
<source>1.8</source>
|
||||
<encoding>UTF-8</encoding>
|
||||
<maxmemory>1g</maxmemory>
|
||||
<excludePackageNames>${javadoc.package.exclude}</excludePackageNames>
|
||||
|
||||
Reference in New Issue
Block a user