You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@reef.apache.org by bg...@apache.org on 2014/12/06 00:57:31 UTC

incubator-reef git commit: [REEF-56]: Removed the shaded and test jar creation in reef-tests The prior addition of the `-test-jar-with-dependencies` replaces both of them. Hence, their creation has become redundant

Repository: incubator-reef
Updated Branches:
  refs/heads/master 7492d26b5 -> f87b96ec3


[REEF-56]: Removed the shaded and test jar creation in reef-tests The prior
  addition of the `-test-jar-with-dependencies` replaces both of them. Hence,
  their creation has become redundant

JIRA:
  [REEF-56]: https://issues.apache.org/jira/browse/REEF-56

Pull Request:
  Closes #29

Author:
  Markus Weimer weimer@apache.org


Project: http://git-wip-us.apache.org/repos/asf/incubator-reef/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-reef/commit/f87b96ec
Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/f87b96ec
Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/f87b96ec

Branch: refs/heads/master
Commit: f87b96ec306a5f7e417f444760e40bd01cab5283
Parents: 7492d26
Author: Markus Weimer <we...@apache.org>
Authored: Tue Dec 2 16:51:10 2014 -0800
Committer: Byung-Gon Chun <bg...@apache.org>
Committed: Sat Dec 6 08:53:16 2014 +0900

----------------------------------------------------------------------
 reef-tests/pom.xml | 42 ------------------------------------------
 1 file changed, 42 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/f87b96ec/reef-tests/pom.xml
----------------------------------------------------------------------
diff --git a/reef-tests/pom.xml b/reef-tests/pom.xml
index 533ed8d..7f95a40 100644
--- a/reef-tests/pom.xml
+++ b/reef-tests/pom.xml
@@ -74,17 +74,6 @@ under the License.
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-jar-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <goals>
-                            <goal>test-jar</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-assembly-plugin</artifactId>
                 <configuration>
                     <descriptors>
@@ -100,37 +89,6 @@ under the License.
                     </execution>
                 </executions>
             </plugin>
-
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-shade-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <phase>package</phase>
-                        <goals>
-                            <goal>shade</goal>
-                        </goals>
-                    </execution>
-                </executions>
-                <configuration>
-
-                    <outputFile>
-                        ${project.build.directory}/${project.artifactId}-${project.version}-shaded.jar
-                    </outputFile>
-                    <filters>
-                        <filter>
-                            <artifact>*:*</artifact>
-                            <excludes>
-                                <exclude>yarn-default.xml</exclude>
-                                <exclude>yarn-version-info.properties</exclude>
-                                <exclude>core-default.xml</exclude>
-                                <exclude>LICENSE</exclude>
-                                <exclude>META-INF/*</exclude>
-                            </excludes>
-                        </filter>
-                    </filters>
-                </configuration>
-            </plugin>
         </plugins>
     </build>