You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@omid.apache.org by yo...@apache.org on 2018/12/03 13:46:14 UTC

[19/50] [abbrv] incubator-omid git commit: Test to see if removing wagon profile fixes build (will revert)

Test to see if removing wagon profile fixes build (will revert)


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

Branch: refs/heads/master
Commit: a7dd8870e5f83d63c9ee313609f95821fed1ce16
Parents: fd76f7d
Author: James Taylor <ja...@apache.org>
Authored: Sat Sep 29 07:58:27 2018 -0700
Committer: Yonatan Gottesman <yo...@gmail.com>
Committed: Tue Nov 13 10:08:54 2018 +0200

----------------------------------------------------------------------
 pom.xml | 66 ------------------------------------------------------------
 1 file changed, 66 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-omid/blob/a7dd8870/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 4a97a47..5ee2127 100644
--- a/pom.xml
+++ b/pom.xml
@@ -357,72 +357,6 @@
             </plugin>
 
 
-            <!-- ============================================================================================== -->
-            <!-- License Management plugins                                                                     -->
-            <!-- ============================================================================================== -->
-            <plugin>
-                <groupId>com.mycila</groupId>
-                <artifactId>license-maven-plugin</artifactId>
-                <version>${maven-license-plugin.version}</version>
-                <inherited>true</inherited> <!-- for multi-module config -->
-                <configuration>
-                    <header>${license.header}</header>
-                    <aggregate>true</aggregate> <!-- for multi-module config -->
-                    <skipExistingHeaders>false</skipExistingHeaders>
-                    <includes>
-                        <!-- Add files where to include licensing -->
-                        <include>src/**/*.java</include>
-                        <include>src/**/*.xml</include>
-                        <include>src/**/*.proto</include>
-                        <include>**/*.css</include>
-                        <include>**/*.sh</include>
-                    </includes>
-                    <excludes>
-                        <!-- Add files to exclude from licensing -->
-
-                        <!-- Exclude pom -->
-                        <exclude>**/pom.xml</exclude>
-
-                        <!-- Exclude config and scripts -->
-                        <exclude>**/dev-utils/*</exclude>
-
-                        <!-- Exclude assembly -->
-                        <exclude>**/maven/assembly/*</exclude>
-
-                        <!-- Project specific exclusions (e.g. they've been copied/modified from other open-source projects -->
-
-                        <!-- Protocol buffers generated classes -->
-                        <exclude>**/src/main/java/org/apache/omid/proto/TSOProto.java</exclude>
-
-                        <!-- Taken from https://github.com/brianfrankcooper/YCSB -->
-                        <exclude>**/src/main/java/org/apache/omid/benchmarks/utils/Generator.java</exclude>
-                        <exclude>**/src/main/java/org/apache/omid/benchmarks/utils/IntegerGenerator.java</exclude>
-                        <exclude>**/src/main/java/org/apache/omid/benchmarks/utils/ZipfianGenerator.java</exclude>
-                        <exclude>**/src/main/java/org/apache/omid/benchmarks/utils/ScrambledZipfianGenerator.java
-                        </exclude>
-
-                        <!-- Taken from https://github.com/apache/hbase -->
-                        <exclude>**/src/main/java/org/apache/omid/committable/hbase/RegionSplitter.java</exclude>
-
-                    </excludes>
-                    <!-- Add comment style for protocol buffers -->
-                    <mapping>
-                        <java>SLASHSTAR_STYLE</java>
-                        <proto>DOUBLESLASH_STYLE</proto>
-                    </mapping>
-                </configuration>
-                <executions>
-                    <execution>
-                        <id>check-license</id>
-                        <phase>verify</phase>
-                        <goals>
-                            <goal>check</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-
-
         </plugins>
 
         <extensions>