You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by cs...@apache.org on 2016/06/24 12:49:20 UTC

aries-rsa git commit: Maven improvement for IDEs

Repository: aries-rsa
Updated Branches:
  refs/heads/master 99f1571ef -> edd70d54f


Maven improvement for IDEs


Project: http://git-wip-us.apache.org/repos/asf/aries-rsa/repo
Commit: http://git-wip-us.apache.org/repos/asf/aries-rsa/commit/edd70d54
Tree: http://git-wip-us.apache.org/repos/asf/aries-rsa/tree/edd70d54
Diff: http://git-wip-us.apache.org/repos/asf/aries-rsa/diff/edd70d54

Branch: refs/heads/master
Commit: edd70d54f218879bcd2579ca4f4a7ad2dee4b139
Parents: 99f1571
Author: Dmytro Pishchukhin <dm...@gmail.com>
Authored: Fri Jun 24 09:22:07 2016 +0200
Committer: Christian Schneider <ch...@die-schneider.net>
Committed: Fri Jun 24 14:47:48 2016 +0200

----------------------------------------------------------------------
 provider/fastbin/pom.xml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/aries-rsa/blob/edd70d54/provider/fastbin/pom.xml
----------------------------------------------------------------------
diff --git a/provider/fastbin/pom.xml b/provider/fastbin/pom.xml
index f813c08..e946ca6 100644
--- a/provider/fastbin/pom.xml
+++ b/provider/fastbin/pom.xml
@@ -57,6 +57,25 @@
                 </executions>
             </plugin>
             <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+                <version>1.10</version>
+                <executions>
+                    <execution>
+                        <id>add-test-source</id>
+                        <phase>generate-test-sources</phase>
+                        <goals>
+                            <goal>add-test-source</goal>
+                        </goals>
+                        <configuration>
+                            <sources>
+                                <source>${project.build.directory}/test-generated-sources/proto</source>
+                            </sources>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
                 <artifactId>maven-surefire-plugin</artifactId>
                 <configuration>
                     <redirectTestOutputToFile>true</redirectTestOutputToFile>