Updated Branches: refs/heads/trunk 3105e4d91 -> 117f86e10
Get mvn eclipse:eclipse work for the leveldb stuff Project: http://git-wip-us.apache.org/repos/asf/activemq/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/43a88a93 Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/43a88a93 Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/43a88a93 Branch: refs/heads/trunk Commit: 43a88a9367e3680ed427f6bcbe03f87f3f7bac91 Parents: 146fb12 Author: Daniel Kulp <[email protected]> Authored: Wed Feb 5 11:41:22 2014 -0500 Committer: Daniel Kulp <[email protected]> Committed: Wed Feb 5 11:41:22 2014 -0500 ---------------------------------------------------------------------- activemq-leveldb-store/pom.xml | 47 +++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq/blob/43a88a93/activemq-leveldb-store/pom.xml ---------------------------------------------------------------------- diff --git a/activemq-leveldb-store/pom.xml b/activemq-leveldb-store/pom.xml index 1b7bbaa..6f68731 100644 --- a/activemq-leveldb-store/pom.xml +++ b/activemq-leveldb-store/pom.xml @@ -331,6 +331,7 @@ </dependencies> <build> + <plugins> <plugin> <groupId>net.alchim31.maven</groupId> @@ -406,6 +407,36 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <executions> + <execution> + <id>add-source</id> + <phase>generate-sources</phase> + <goals> + <goal>add-source</goal> + </goals> + <configuration> + <sources> + <source>${basedir}/src/main/scala</source> + </sources> + </configuration> + </execution> + <execution> + <id>add-test-source</id> + <phase>generate-test-sources</phase> + <goals> + <goal>add-test-source</goal> + </goals> + <configuration> + <sources> + <source>${basedir}/src/test/scala</source> + </sources> + </configuration> + </execution> + </executions> + </plugin> </plugins> <pluginManagement> <plugins> @@ -435,6 +466,22 @@ </lifecycleMappingMetadata> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-eclipse-plugin</artifactId> + <configuration> + <buildcommands> + <java.lang.String>org.scala-ide.sdt.core.scalabuilder</java.lang.String> + </buildcommands> + <projectnatures> + <nature>org.scala-ide.sdt.core.scalanature</nature> + <nature>org.eclipse.jdt.core.javanature</nature> + </projectnatures> + <sourceIncludes> + <sourceInclude>**/*.scala</sourceInclude> + </sourceIncludes> + </configuration> + </plugin> </plugins> </pluginManagement> </build>
