use java6 for the jmx jars as these might get installed into java6 environments (such as tomcat7 blueprint)
Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/098b5a0a Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/098b5a0a Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/098b5a0a Branch: refs/heads/master Commit: 098b5a0a2c549c1f4ab51ac5e2282a1203c38939 Parents: 51ba0aa Author: Alex Heneveld <[email protected]> Authored: Thu Jun 11 22:20:58 2015 +0100 Committer: Alex Heneveld <[email protected]> Committed: Thu Jun 11 22:21:43 2015 +0100 ---------------------------------------------------------------------- utils/jmx/jmxmp-ssl-agent/pom.xml | 9 +++++++++ utils/jmx/jmxrmi-agent/pom.xml | 8 ++++++++ 2 files changed, 17 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/098b5a0a/utils/jmx/jmxmp-ssl-agent/pom.xml ---------------------------------------------------------------------- diff --git a/utils/jmx/jmxmp-ssl-agent/pom.xml b/utils/jmx/jmxmp-ssl-agent/pom.xml index d48ddd9..4a74598 100644 --- a/utils/jmx/jmxmp-ssl-agent/pom.xml +++ b/utils/jmx/jmxmp-ssl-agent/pom.xml @@ -142,6 +142,15 @@ </execution> </executions> </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.6</source> + <target>1.6</target> + </configuration> + </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/098b5a0a/utils/jmx/jmxrmi-agent/pom.xml ---------------------------------------------------------------------- diff --git a/utils/jmx/jmxrmi-agent/pom.xml b/utils/jmx/jmxrmi-agent/pom.xml index 11ed05d..3bfd993 100644 --- a/utils/jmx/jmxrmi-agent/pom.xml +++ b/utils/jmx/jmxrmi-agent/pom.xml @@ -57,6 +57,14 @@ </instructions> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.6</source> + <target>1.6</target> + </configuration> + </plugin> </plugins> </build>
