Update to add some m2e settings for those using Eclipse

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1391217 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Timothy A. Bish 2012-09-27 21:03:18 +00:00
parent 746585e8d7
commit 6d6c237b53
1 changed files with 62 additions and 9 deletions

View File

@ -6,9 +6,9 @@
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@ -58,7 +58,7 @@
<artifactId>hawtdispatch-scala</artifactId>
<version>${hawtdispatch-version}</version>
</dependency>
<dependency>
<groupId>org.iq80.leveldb</groupId>
<artifactId>leveldb</artifactId>
@ -181,7 +181,7 @@
</exclusions>
</dependency>
<!-- Testing Dependencies -->
<!-- Testing Dependencies -->
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-core</artifactId>
@ -363,7 +363,7 @@
<include>org.fusesource.hawtdispatch:hawtdispatch-scala</include>
<include>org.fusesource.hawtbuf:hawtbuf</include>
<include>org.fusesource.hawtbuf:hawtbuf-proto</include>
<include>org.iq80.leveldb:leveldb-api</include>
<!--
@ -383,10 +383,10 @@
<include>org.apache.hadoop:hadoop-core</include>
<include>commons-configuration:commons-configuration</include>
<include>org.codehaus.jackson:jackson-mapper-asl</include>
<include>org.codehaus.jackson:jackson-core-asl</include>
<include>org.codehaus.jackson:jackson-core-asl</include>
</includes>
</artifactSet>
</artifactSet>
</configuration>
</plugin>
<plugin>
@ -420,5 +420,58 @@
</executions>
</plugin>
</plugins>
</build>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only.
It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.fusesource.hawtbuf
</groupId>
<artifactId>
hawtbuf-protoc
</artifactId>
<versionRange>[1.9,)</versionRange>
<goals>
<goal>compile</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.scala-tools</groupId>
<artifactId>
maven-scala-plugin
</artifactId>
<versionRange>
[2.15.1,)
</versionRange>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>