You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by li...@apache.org on 2014/04/17 02:51:39 UTC

svn commit: r1588123 - /hbase/branches/0.89-fb/pom.xml

Author: liyin
Date: Thu Apr 17 00:51:38 2014
New Revision: 1588123

URL: http://svn.apache.org/r1588123
Log:
Remove duplicated jdk profile

Modified:
    hbase/branches/0.89-fb/pom.xml

Modified: hbase/branches/0.89-fb/pom.xml
URL: http://svn.apache.org/viewvc/hbase/branches/0.89-fb/pom.xml?rev=1588123&r1=1588122&r2=1588123&view=diff
==============================================================================
--- hbase/branches/0.89-fb/pom.xml (original)
+++ hbase/branches/0.89-fb/pom.xml Thu Apr 17 00:51:38 2014
@@ -257,96 +257,6 @@
              </plugins>
          </build>
      </profile>
-     <profile>
-         <id>usingJDK7</id>
-         <activation>
-             <jdk>1.7</jdk>
-         </activation>
-         <build>
-             <plugins>
-                <plugin>
-                    <groupId>org.jacoco</groupId>
-                    <artifactId>jacoco-maven-plugin</artifactId>
-                    <!-- <version>0.6.4-SNAPSHOT</version> -->
-                    <version>${jacoco.version}</version>
-                    <executions>
-                        <execution>
-                            <id>prepare-agent</id>
-                            <goals>
-                                <goal>prepare-agent</goal>
-                            </goals>
-                        </execution>
-                        <execution>
-                            <id>report</id>
-                            <phase>prepare-package</phase>
-                            <goals>
-                                <goal>report</goal>
-                            </goals>
-                        </execution>
-                    </executions>
-                    <configuration>
-                        <skip>${hbase.skip-jacoco}</skip>
-                        <excludes>
-                        <exclude>**/generated/**/*.class</exclude>
-                        <exclude>org/apache/hadoop/hbase/rest/**/*.class</exclude>
-                        </excludes>
-                    </configuration>
-                </plugin>
-                <plugin>
-                    <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-surefire-plugin</artifactId>
-                    <configuration>
-                        <forkMode>always</forkMode>
-                        <includes>
-                            <include>**/Test*.java</include>
-                        </includes>
-                        <excludes>
-                            <exclude>**/mapred/*.java</exclude>
-                            <exclude>**/replication/*.java</exclude>
-                            <exclude>**/rest/*.java</exclude>
-                            <exclude>**/rest/*/*.java</exclude>
-                            <exclude>**/*$*</exclude>
-                        </excludes>
-                        <argLine>${surefire.argLine}</argLine>
-                        <parallel>classes</parallel>
-                        <systemPropertyVariables>
-                            <jacoco-agent.destfile>target/jacoco.exec</jacoco-agent.destfile>
-                        </systemPropertyVariables>
-                    </configuration>
-                </plugin>
-             </plugins>
-         </build>
-     </profile>
-     <profile>
-         <id>usingJDK8</id>
-         <activation>
-             <jdk>1.8</jdk>
-         </activation>
-         <build>
-             <plugins>
-                 <plugin>
-                     <groupId>org.apache.maven.plugins</groupId>
-                     <artifactId>maven-surefire-plugin</artifactId>
-                     <configuration>
-                         <forkMode>always</forkMode>
-                         <includes>
-                             <include>**/Test*.java</include>
-                         </includes>
-                         <excludes>
-                             <exclude>**/mapred/*.java</exclude>
-                             <exclude>**/replication/*.java</exclude>
-                             <exclude>**/avro/*.java</exclude>
-                             <exclude>**/rest/*.java</exclude>
-                             <exclude>**/rest/*/*.java</exclude>
-                             <exclude>**/*$*</exclude>
-                         </excludes>
-                         <argLine>${surefire.argLine}</argLine>
-                         <parallel>classes</parallel>
-                     </configuration>
-                 </plugin>
-             </plugins>
-         </build>
-     </profile>
   </profiles>
   
   <repositories>