Skip to content

Commit d4791fe

Browse files
committed
Align pom with Accumulo 3.0.0 versions
1 parent a0ae89a commit d4791fe

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

conf/env.sh.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ conf_dir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
3232
# Versions set below will be what is included in the shaded jar
3333
export ACCUMULO_VERSION="`$ACCUMULO_HOME/bin/accumulo version`"
3434
export HADOOP_VERSION="`$HADOOP_HOME/bin/hadoop version | head -n1 | awk '{print $2}'`"
35-
export ZOOKEEPER_VERSION=3.7.0
35+
export ZOOKEEPER_VERSION=3.8.2
3636
# Path to shaded test jar
3737
ex_home=$( cd "$( dirname "$conf_dir" )" && pwd )
3838
export EXAMPLES_JAR_PATH="${ex_home}/target/accumulo-examples-shaded.jar"

pom.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,25 @@
2020
<parent>
2121
<groupId>org.apache</groupId>
2222
<artifactId>apache</artifactId>
23-
<version>31</version>
23+
<version>30</version>
2424
</parent>
2525
<groupId>org.apache.accumulo</groupId>
2626
<artifactId>accumulo-examples</artifactId>
27-
<version>3.0.0-SNAPSHOT</version>
27+
<version>3.0.0</version>
2828
<name>Apache Accumulo Examples</name>
2929
<description>Example code and corresponding documentation for using Apache Accumulo</description>
3030
<properties>
31-
<accumulo.version>3.1.0-SNAPSHOT</accumulo.version>
31+
<accumulo.version>3.0.0</accumulo.version>
3232
<eclipseFormatterStyle>contrib/Eclipse-Accumulo-Codestyle.xml</eclipseFormatterStyle>
3333
<hadoop.version>3.3.6</hadoop.version>
3434
<maven.compiler.release>11</maven.compiler.release>
3535
<maven.compiler.source>11</maven.compiler.source>
3636
<maven.compiler.target>11</maven.compiler.target>
3737
<minimalJavaBuildVersion>11</minimalJavaBuildVersion>
38+
<minimalMavenBuildVersion>3.6.0</minimalMavenBuildVersion>
3839
<!-- timestamp for reproducible outputs, updated on release by the release plugin -->
3940
<project.build.outputTimestamp>2020-12-17T22:06:50Z</project.build.outputTimestamp>
40-
<zookeeper.version>3.8.3</zookeeper.version>
41+
<zookeeper.version>3.8.2</zookeeper.version>
4142
</properties>
4243
<dependencyManagement>
4344
<dependencies>
@@ -178,6 +179,7 @@
178179
<!-- This was added to ensure project only uses public API -->
179180
<groupId>org.apache.maven.plugins</groupId>
180181
<artifactId>maven-checkstyle-plugin</artifactId>
182+
<version>3.3.0</version>
181183
<configuration>
182184
<configLocation>contrib/checkstyle.xml</configLocation>
183185
</configuration>

0 commit comments

Comments
 (0)