You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gora.apache.org by al...@apache.org on 2017/05/30 22:18:35 UTC

[1/2] gora git commit: Excluding package-info.java from test compile because m2e in Eclipse does not support duplicated package-info.java both in main and test.

Repository: gora
Updated Branches:
  refs/heads/master 58df5a4b6 -> 1b20b1072


Excluding package-info.java from test compile because m2e in Eclipse does not support duplicated package-info.java both in main and test.


Project: http://git-wip-us.apache.org/repos/asf/gora/repo
Commit: http://git-wip-us.apache.org/repos/asf/gora/commit/6e001393
Tree: http://git-wip-us.apache.org/repos/asf/gora/tree/6e001393
Diff: http://git-wip-us.apache.org/repos/asf/gora/diff/6e001393

Branch: refs/heads/master
Commit: 6e00139362d75c755f311ffffc2236998aaf237f
Parents: 1242a61
Author: Alfonso Nishikawa Muñumer <al...@gmail.com>
Authored: Sun May 28 10:35:48 2017 -0100
Committer: Alfonso Nishikawa Muñumer <al...@gmail.com>
Committed: Sun May 28 10:35:48 2017 -0100

----------------------------------------------------------------------
 pom.xml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/gora/blob/6e001393/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index f1c1133..f3f3058 100644
--- a/pom.xml
+++ b/pom.xml
@@ -470,6 +470,22 @@
             <!-- executable>{JAVA_HOME_1_7}/bin/javac</executable -->
             <fork>true</fork>
           </configuration>
+          <executions>
+            <!-- Eclipse do not support duplicated package-info.java, in both main and test. -->
+            <!-- https://stackoverflow.com/questions/11246223/eclipse-javadoc-the-type-package-info-is-already-defined/35101574#35101574 -->
+            <execution>
+              <id>default-testCompile</id>
+              <phase>test-compile</phase>
+              <configuration>
+                <testExcludes>
+                  <exclude>**/package-info.java</exclude>
+                </testExcludes>
+              </configuration>
+              <goals>
+                <goal>testCompile</goal>
+              </goals>
+            </execution>
+          </executions>
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>


[2/2] gora git commit: Merge branch 'GORA-511' of https://github.com/alfonsonishikawa/gora

Posted by al...@apache.org.
Merge branch 'GORA-511' of https://github.com/alfonsonishikawa/gora


Project: http://git-wip-us.apache.org/repos/asf/gora/repo
Commit: http://git-wip-us.apache.org/repos/asf/gora/commit/1b20b107
Tree: http://git-wip-us.apache.org/repos/asf/gora/tree/1b20b107
Diff: http://git-wip-us.apache.org/repos/asf/gora/diff/1b20b107

Branch: refs/heads/master
Commit: 1b20b1072c6a05276519115973b37ae8de8f8325
Parents: 58df5a4 6e00139
Author: Alfonso Nishikawa <al...@apache.org>
Authored: Tue May 30 21:18:04 2017 -0100
Committer: Alfonso Nishikawa <al...@apache.org>
Committed: Tue May 30 21:18:04 2017 -0100

----------------------------------------------------------------------
 pom.xml | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
----------------------------------------------------------------------