HBASE-4419 Resolve build warning messages
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1172038 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b86f8dff19
commit
b2f97dc4e3
|
@ -282,6 +282,7 @@ Release 0.91.0 - Unreleased
|
||||||
possible performance improvement (nkeywal)
|
possible performance improvement (nkeywal)
|
||||||
HBASE-4420 MasterObserver preMove() and postMove() should throw
|
HBASE-4420 MasterObserver preMove() and postMove() should throw
|
||||||
IOException instead of UnknownRegionException
|
IOException instead of UnknownRegionException
|
||||||
|
HBASE-4419 Resolve build warning messages (Praveen Patibandia)
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)
|
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)
|
||||||
|
|
12
pom.xml
12
pom.xml
|
@ -480,7 +480,7 @@
|
||||||
<id>generate</id>
|
<id>generate</id>
|
||||||
<phase>generate-sources</phase>
|
<phase>generate-sources</phase>
|
||||||
<configuration>
|
<configuration>
|
||||||
<tasks>
|
<target>
|
||||||
<property name="build.webapps"
|
<property name="build.webapps"
|
||||||
location="${project.build.directory}/hbase-webapps"/>
|
location="${project.build.directory}/hbase-webapps"/>
|
||||||
<property name="src.webapps"
|
<property name="src.webapps"
|
||||||
|
@ -515,7 +515,7 @@
|
||||||
<exec executable="sh">
|
<exec executable="sh">
|
||||||
<arg line="${basedir}/src/saveVersion.sh ${project.version} ${generated.sources}/java"/>
|
<arg line="${basedir}/src/saveVersion.sh ${project.version} ${generated.sources}/java"/>
|
||||||
</exec>
|
</exec>
|
||||||
</tasks>
|
</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>run</goal>
|
<goal>run</goal>
|
||||||
|
@ -524,7 +524,7 @@
|
||||||
<execution>
|
<execution>
|
||||||
<phase>process-resources</phase>
|
<phase>process-resources</phase>
|
||||||
<configuration>
|
<configuration>
|
||||||
<tasks>
|
<target>
|
||||||
<replace file="${project.build.outputDirectory}/hbase-default.xml"
|
<replace file="${project.build.outputDirectory}/hbase-default.xml"
|
||||||
token="@@@VERSION@@@" value="${project.version}" />
|
token="@@@VERSION@@@" value="${project.version}" />
|
||||||
<mkdir dir="${project.build.directory}/nativelib"/>
|
<mkdir dir="${project.build.directory}/nativelib"/>
|
||||||
|
@ -532,7 +532,7 @@
|
||||||
<arg value="xf"/>
|
<arg value="xf"/>
|
||||||
<arg value="hadoop-snappy-nativelibs.tar"/>
|
<arg value="hadoop-snappy-nativelibs.tar"/>
|
||||||
</exec>
|
</exec>
|
||||||
</tasks>
|
</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>run</goal>
|
<goal>run</goal>
|
||||||
|
@ -613,6 +613,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-eclipse-plugin</artifactId>
|
<artifactId>maven-eclipse-plugin</artifactId>
|
||||||
|
<version>2.8</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<additionalProjectnatures>
|
<additionalProjectnatures>
|
||||||
<projectnature>org.jamon.project.jamonnature</projectnature>
|
<projectnature>org.jamon.project.jamonnature</projectnature>
|
||||||
|
@ -674,7 +675,7 @@
|
||||||
<package.release>1</package.release>
|
<package.release>1</package.release>
|
||||||
<!-- also must update this when we bump version -->
|
<!-- also must update this when we bump version -->
|
||||||
<package.version>0.91.0</package.version>
|
<package.version>0.91.0</package.version>
|
||||||
<final.name>${artifactId}-${version}</final.name>
|
<final.name>${project.artifactId}-${project.version}</final.name>
|
||||||
|
|
||||||
<!-- For flaky tests exclusion -->
|
<!-- For flaky tests exclusion -->
|
||||||
<test.exclude></test.exclude>
|
<test.exclude></test.exclude>
|
||||||
|
@ -849,7 +850,6 @@
|
||||||
<groupId>org.slf4j</groupId>
|
<groupId>org.slf4j</groupId>
|
||||||
<artifactId>slf4j-log4j12</artifactId>
|
<artifactId>slf4j-log4j12</artifactId>
|
||||||
<version>${slf4j.version}</version>
|
<version>${slf4j.version}</version>
|
||||||
<scope>runtime</scope>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<!--If this is not in the runtime lib, we get odd
|
<!--If this is not in the runtime lib, we get odd
|
||||||
|
|
Loading…
Reference in New Issue