Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build against Fluo 1.2.0 and Accumulo 1.7.3 #146

Merged
merged 6 commits into from
Mar 1, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 20 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,32 @@
# copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the License. You may obtain a
# copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing, software distributed under the License
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
# or implied. See the License for the specific language governing permissions and limitations under
# the License.

language: java
jdk:
- oraclejdk8
script: mvn -U verify javadoc:jar
notifications:
irc:
channels:
- "chat.freenode.net#fluo"
use_notice: true
on_success: change
on_failure: always
skip_join: true
cache:
directories:
- $HOME/.m2
install: echo NOOP Skipping pre-fetch of Maven dependencies
jdk:
- openjdk8
before_script:
- unset _JAVA_OPTIONS
env:
- ADDITIONAL_MAVEN_OPTS=
- ADDITIONAL_MAVEN_OPTS=-Daccumulo.version=1.8.1
script:
- mvn clean verify javadoc:jar $ADDITIONAL_MAVEN_OPTS
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache Fluo Recipes
Copyright 2017 The Apache Software Foundation.
Copyright 2018 The Apache Software Foundation.

This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
16 changes: 2 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,22 +50,15 @@
<url>https://github.com/apache/fluo-recipes/issues</url>
</issueManagement>
<properties>
<accumulo.version>1.6.6</accumulo.version>
<accumulo.version>1.7.3</accumulo.version>
<curator.version>2.7.1</curator.version>
<findbugs.maxRank>13</findbugs.maxRank>
<fluo.version>1.1.0-incubating</fluo.version>
ctubbsii marked this conversation as resolved.
Show resolved Hide resolved
<fluo.version>1.2.0</fluo.version>
<hadoop.version>2.6.3</hadoop.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<releaseProfiles>fluo-recipes-release</releaseProfiles>
<spark.version>1.5.2</spark.version>
<!--
If attempting to build against Accumulo 1.8.X, then set the thrift version to 0.9.3.
Otherwise MiniAccumulo may hang. This may happen because Fluo 1.0.0 depends on thrift 0.9.1,
Accumulo 1.8.0 depends on Thrift 0.9.3, and Thrift made breaking changes in libthrift between
0.9.1 and 0.9.3.
-->
<thrift.version>0.9.1</thrift.version>
<zookeeper.version>3.4.8</zookeeper.version>
</properties>
<dependencyManagement>
Expand Down Expand Up @@ -200,11 +193,6 @@
<artifactId>spark-core_2.10</artifactId>
<version>${spark.version}</version>
</dependency>
<dependency>
ctubbsii marked this conversation as resolved.
Show resolved Hide resolved
<groupId>org.apache.thrift</groupId>
<artifactId>libthrift</artifactId>
<version>${thrift.version}</version>
</dependency>
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
Expand Down