Skip to content

Commit 2142e47

Browse files
author
Gaurav Aggarwal
committed
Azkaban-plugins 3.0.0
1 parent 91df8c2 commit 2142e47

File tree

14 files changed

+17
-12
lines changed

14 files changed

+17
-12
lines changed

build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
name=azkaban-plugins
2-
version=2.7.0
2+
version=3.0.0
33
spec.file=azkaban.spec
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
name=azkaban-hadoopsecuritymanager-common
2-
version=2.5
2+
version=3.0.0
33

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
name=azkaban-hadoopsecuritymanager-yarn
2-
version=2.6.3
2+
version=3.0.0
33

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
name=azkaban-hadoopsecuritymanager
2-
version=2.6.3
2+
version=3.0.0
33

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
name=azkaban-hdfs-viewer
2-
version=2.6.4
2+
version=3.0.0

plugins/hdfsviewer/build.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<property file="build.properties" />
55
<property name="base.dir" value="${basedir}/../.." />
66
<property name="dist.dir" value="${base.dir}/dist/hdfsviewer" />
7+
<property name="dist.log.dir" value="${dist.dir}/log" />
78
<property name="dist.conf.dir" value="${dist.dir}/conf" />
89
<property name="dist.classes.dir" value="${dist.dir}/classes" />
910
<property name="dist.tests.dir" value="${dist.dir}/tests" />
@@ -73,6 +74,9 @@
7374
<delete dir="${dist.classes.dir}" />
7475
<mkdir dir="${dist.classes.dir}" />
7576

77+
<delete dir="${dist.log.dir}" />
78+
<mkdir dir="${dist.log.dir}" />
79+
7680
<!-- copy non-java files to classes dir to load from classpath -->
7781
<copy todir="${dist.classes.dir}">
7882
<fileset dir="${java.src.dir}">
@@ -92,7 +96,7 @@
9296
<target name="test" depends="build" description="Run junit tests">
9397
<delete dir="${dist.tests.dir}" />
9498
<mkdir dir="${dist.tests.dir}" />
95-
99+
96100
<copy todir="${dist.tests.dir}">
97101
<fileset dir="${java.unit.dir}">
98102
<exclude name="**/*.java" />
@@ -105,7 +109,8 @@
105109
<classpath refid="main.classpath" />
106110
</javac>
107111

108-
<junit printsummary="yes" haltonfailure="yes">
112+
<junit printsummary="yes" haltonfailure="yes" fork="yes">
113+
<jvmarg value="-Dlog4j.log.dir=${dist.log.dir}"/>
109114
<classpath refid="main.classpath" /> <batchtest> <fileset dir="${dist.tests.dir}"> <include name="**/*Test*" /> </fileset> </batchtest> <formatter type="brief" usefile="false"/> </junit>
110115
</target>
111116

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
name=azkaban-javaviewer
2-
version=2.6.3
2+
version=3.0.0

0 commit comments

Comments
 (0)