seemed to need this to build for me
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/aea3780b Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/aea3780b Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/aea3780b Branch: refs/heads/develop Commit: aea3780b4a24e4f95117763f67a5764fd6091e39 Parents: 1268b2c Author: Alex Harui <[email protected]> Authored: Mon Aug 21 12:34:15 2017 -0700 Committer: Carlos Rovira <[email protected]> Committed: Thu Sep 7 00:24:02 2017 +0200 ---------------------------------------------------------------------- examples/amf/SampleAmfWebApp/pom.xml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/aea3780b/examples/amf/SampleAmfWebApp/pom.xml ---------------------------------------------------------------------- diff --git a/examples/amf/SampleAmfWebApp/pom.xml b/examples/amf/SampleAmfWebApp/pom.xml index 091e087..1c9c268 100644 --- a/examples/amf/SampleAmfWebApp/pom.xml +++ b/examples/amf/SampleAmfWebApp/pom.xml @@ -24,8 +24,22 @@ <version>0.9.0-SNAPSHOT</version> <packaging>war</packaging> + <properties> + <java.version>1.7</java.version> + </properties> + <build> <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.5.1</version> + <configuration> + <source>${java.version}</source> + <target>${java.version}</target> + </configuration> + </plugin> + <!-- Make Spring-Boot build an executable war --> <plugin> <groupId>org.springframework.boot</groupId> @@ -77,7 +91,7 @@ <dependency> <groupId>org.apache.flex.blazeds</groupId> <artifactId>blazeds-spring-boot-starter</artifactId> - <version>4.7.3-SNAPSHOT</version> + <version>4.7.3</version> </dependency> <dependency>
