[
https://issues.apache.org/jira/browse/PLUTO-769?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Neil Griffin updated PLUTO-769:
-------------------------------
Description:
Commit
[385e2e08ee94546aab5dbf3238766974d39b7411|https://github.com/ngriffin7a/portals-pluto/commit/385e2e08ee94546aab5dbf3238766974d39b7411]
in the previous release of Pluto (PLUTO-716 version 3.0.1) introduced the
requirement to build and release with JDK 8/1.8 since Java 7/1.7 is no longer
supported by Oracle.
This issue serves as a task for upgrading the Maven pom.xml descriptor to use
{{1.8}} within the configuration of the maven-compiler-plugin in order to
permit Java 8 syntax in the source such as lambdas:
{code:xml|title=pom.xml}
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
{code}
was:
Commit
[385e2e08ee94546aab5dbf3238766974d39b7411|https://github.com/ngriffin7a/portals-pluto/commit/385e2e08ee94546aab5dbf3238766974d39b7411]
in the previous release of Pluto (version 3.0.1) introduced the requirement to
build and release with JDK 8/1.8 since Java 7/1.7 is no longer supported by
Oracle.
This issue serves as a task for upgrading the Maven pom.xml descriptor to use
{{1.8}} within the configuration of the maven-compiler-plugin in order to
permit Java 8 syntax in the source such as lambdas:
{code:xml|title=pom.xml}
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
{code}
> Upgrade the maven-compiler-plugin configuration to JDK 8
> --------------------------------------------------------
>
> Key: PLUTO-769
> URL: https://issues.apache.org/jira/browse/PLUTO-769
> Project: Pluto
> Issue Type: Task
> Components: build system
> Reporter: Neil Griffin
> Assignee: Neil Griffin
> Priority: Major
> Fix For: 3.0.2
>
>
> Commit
> [385e2e08ee94546aab5dbf3238766974d39b7411|https://github.com/ngriffin7a/portals-pluto/commit/385e2e08ee94546aab5dbf3238766974d39b7411]
> in the previous release of Pluto (PLUTO-716 version 3.0.1) introduced the
> requirement to build and release with JDK 8/1.8 since Java 7/1.7 is no longer
> supported by Oracle.
> This issue serves as a task for upgrading the Maven pom.xml descriptor to use
> {{1.8}} within the configuration of the maven-compiler-plugin in order to
> permit Java 8 syntax in the source such as lambdas:
> {code:xml|title=pom.xml}
> <plugin>
> <groupId>org.apache.maven.plugins</groupId>
> <artifactId>maven-compiler-plugin</artifactId>
> <version>3.1</version>
> <configuration>
> <source>1.8</source>
> <target>1.8</target>
> </configuration>
> </plugin>
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)