Skip to content

Commit

Permalink
Rename zeppelin-web to zeppelin-web-classic
Browse files Browse the repository at this point in the history
  • Loading branch information
tbonelee committed Aug 27, 2024
1 parent 137d371 commit f9fe986
Show file tree
Hide file tree
Showing 286 changed files with 77 additions and 76 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
restore-keys: |
${{ runner.os }}-zeppelin-
- name: install application with some interpreter
run: ./mvnw install -Pbuild-distr -DskipTests -pl zeppelin-server,zeppelin-web,spark-submit,spark/scala-2.12,spark/scala-2.13,markdown,angular,shell -am -Phelium-dev -Pexamples -P${{ matrix.hadoop }} ${MAVEN_ARGS}
run: ./mvnw install -Pbuild-distr -DskipTests -pl zeppelin-server,zeppelin-web-classic,spark-submit,spark/scala-2.12,spark/scala-2.13,markdown,angular,shell -am -Phelium-dev -Pexamples -P${{ matrix.hadoop }} ${MAVEN_ARGS}
- name: install and test plugins
run: ./mvnw package -pl zeppelin-plugins -amd ${MAVEN_ARGS}
- name: Setup conda environment with python 3.9 and R
Expand All @@ -85,7 +85,7 @@ jobs:
conda list
conda info
- name: run tests with ${{ matrix.hadoop }} # skip spark test because we would run them in other CI
run: ./mvnw verify -Pusing-packaged-distr -pl zeppelin-server,zeppelin-web,spark-submit,spark/scala-2.12,spark/scala-2.13,markdown,angular,shell -am -Phelium-dev -Pexamples -P${{ matrix.hadoop }} -Dtests.to.exclude=**/org/apache/zeppelin/spark/* -DfailIfNoTests=false
run: ./mvnw verify -Pusing-packaged-distr -pl zeppelin-server,zeppelin-web-classic,spark-submit,spark/scala-2.12,spark/scala-2.13,markdown,angular,shell -am -Phelium-dev -Pexamples -P${{ matrix.hadoop }} -Dtests.to.exclude=**/org/apache/zeppelin/spark/* -DfailIfNoTests=false

# test interpreter modules except spark, flink, python, rlang, jupyter
interpreter-test-non-core:
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
${{ runner.os }}-zeppelin-
- name: install environment
run: |
./mvnw install -DskipTests -Phadoop3 -Pintegration -pl zeppelin-interpreter-integration,zeppelin-web,spark-submit,spark/scala-2.12,spark/scala-2.13,markdown,flink-cmd,flink/flink-scala-2.12,jdbc,shell -am -Pflink-117 ${MAVEN_ARGS}
./mvnw install -DskipTests -Phadoop3 -Pintegration -pl zeppelin-interpreter-integration,zeppelin-web-classic,spark-submit,spark/scala-2.12,spark/scala-2.13,markdown,flink-cmd,flink/flink-scala-2.12,jdbc,shell -am -Pflink-117 ${MAVEN_ARGS}
./mvnw package -pl zeppelin-plugins -amd -DskipTests ${MAVEN_ARGS}
- name: Setup conda environment with python 3.9 and R
uses: conda-incubator/setup-miniconda@v3
Expand Down Expand Up @@ -328,7 +328,7 @@ jobs:
${{ runner.os }}-zeppelin-
- name: install environment
run: |
./mvnw install -DskipTests -pl zeppelin-interpreter-integration,zeppelin-web,spark-submit,spark/scala-2.12,spark/scala-2.13,markdown -am -Phadoop3 -Pintegration ${MAVEN_ARGS}
./mvnw install -DskipTests -pl zeppelin-interpreter-integration,zeppelin-web-classic,spark-submit,spark/scala-2.12,spark/scala-2.13,markdown -am -Phadoop3 -Pintegration ${MAVEN_ARGS}
./mvnw clean package -pl zeppelin-plugins -amd -DskipTests ${MAVEN_ARGS}
- name: Setup conda environment with python 3.9 and R
uses: conda-incubator/setup-miniconda@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ permissions:
contents: read # to fetch code (actions/checkout)

jobs:
run-e2e-tests-in-zeppelin-web:
run-e2e-tests-in-zeppelin-web-classic:
runs-on: ubuntu-20.04
steps:
- name: Checkout
Expand All @@ -53,9 +53,9 @@ jobs:
restore-keys: |
${{ runner.os }}-zeppelin-
- name: Install application
run: ./mvnw clean install -DskipTests -am -pl zeppelin-web -Pspark-scala-2.12 -Pspark-3.4 -Phadoop3 -Pweb-dist ${MAVEN_ARGS}
run: ./mvnw clean install -DskipTests -am -pl zeppelin-web-classic -Pspark-scala-2.12 -Pspark-3.4 -Phadoop3 -Pweb-dist ${MAVEN_ARGS}
- name: Run headless test
run: xvfb-run --auto-servernum --server-args="-screen 0 1024x768x24" ./mvnw verify -pl zeppelin-web -Pweb-classic -Pspark-scala-2.12 -Pspark-3.4 -Phadoop3 -Pweb-dist -Pweb-e2e ${MAVEN_ARGS}
run: xvfb-run --auto-servernum --server-args="-screen 0 1024x768x24" ./mvnw verify -pl zeppelin-web-classic -Pweb-classic -Pspark-scala-2.12 -Pspark-3.4 -Phadoop3 -Pweb-dist -Pweb-e2e ${MAVEN_ARGS}
- name: Print zeppelin logs
if: always()
run: if [ -d "logs" ]; then cat logs/*; fi
Expand Down
16 changes: 8 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ spark/dependency-reduced-pom.xml
reports

# webapp
zeppelin-web/node_modules
zeppelin-web/dist
zeppelin-web/.tmp
zeppelin-web/.sass-cache
zeppelin-web/npm-debug.log
zeppelin-web/yarn-error.log
zeppelin-web/bower_components
zeppelin-web/yarn.lock
zeppelin-web-classic/node_modules
zeppelin-web-classic/dist
zeppelin-web-classic/.tmp
zeppelin-web-classic/.sass-cache
zeppelin-web-classic/npm-debug.log
zeppelin-web-classic/yarn-error.log
zeppelin-web-classic/bower_components
zeppelin-web-classic/yarn.lock
**nbproject/
**node/

Expand Down
6 changes: 3 additions & 3 deletions bin/common.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ if not defined ZEPPELIN_PID_DIR (
)

if not defined ZEPPELIN_CLASSIC_WAR (
if exist "%ZEPPELIN_HOME%\zeppelin-web\dist" (
set ZEPPELIN_CLASSIC_WAR=%ZEPPELIN_HOME%\zeppelin-web\dist
if exist "%ZEPPELIN_HOME%\zeppelin-web-classic\dist" (
set ZEPPELIN_CLASSIC_WAR=%ZEPPELIN_HOME%\zeppelin-web-classic\dist
) else (
for %%d in ("%ZEPPELIN_HOME%\zeppelin-web*.war") do (
for %%d in ("%ZEPPELIN_HOME%\zeppelin-web-classic*.war") do (
set ZEPPELIN_CLASSIC_WAR=%%d
)
)
Expand Down
8 changes: 4 additions & 4 deletions bin/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,16 @@ if [[ -z "$ZEPPELIN_PID_DIR" ]]; then
fi

if [[ -z "${ZEPPELIN_CLASSIC_WAR}" ]]; then
if [[ -d "${ZEPPELIN_HOME}/zeppelin-web/dist" ]]; then
export ZEPPELIN_CLASSIC_WAR="${ZEPPELIN_HOME}/zeppelin-web/dist"
if [[ -d "${ZEPPELIN_HOME}/zeppelin-web-classic/dist" ]]; then
export ZEPPELIN_CLASSIC_WAR="${ZEPPELIN_HOME}/zeppelin-web-classic/dist"
else
ZEPPELIN_CLASSIC_WAR=$(find -L "${ZEPPELIN_HOME}" -name "zeppelin-web-[0-9]*.war")
ZEPPELIN_CLASSIC_WAR=$(find -L "${ZEPPELIN_HOME}" -name "zeppelin-web-classic-[0-9]*.war")
export ZEPPELIN_CLASSIC_WAR
fi
fi

if [[ -z "${ZEPPELIN_WAR}" ]]; then
if [[ -d "${ZEPPELIN_HOME}/zeppelin-web/dist" ]]; then
if [[ -d "${ZEPPELIN_HOME}/zeppelin-web-angular/dist" ]]; then
export ZEPPELIN_WAR="${ZEPPELIN_HOME}/zeppelin-web-angular/dist/zeppelin"
else
ZEPPELIN_WAR=$(find -L "${ZEPPELIN_HOME}" -name "zeppelin-web-angular*.war")
Expand Down
2 changes: 1 addition & 1 deletion bin/zeppelin-daemon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ addJarInDir "${ZEPPELIN_HOME}/lib/interpreter"
addJarInDir "${ZEPPELIN_HOME}/zeppelin-interpreter/target/lib"
addJarInDir "${ZEPPELIN_HOME}/zeppelin-zengine/target/lib"
addJarInDir "${ZEPPELIN_HOME}/zeppelin-server/target/lib"
addJarInDir "${ZEPPELIN_HOME}/zeppelin-web/target/lib"
addJarInDir "${ZEPPELIN_HOME}/zeppelin-web-classic/target/lib"
addJarInDir "${ZEPPELIN_HOME}/zeppelin-web-angular/target/lib"

## Add hadoop jars when env USE_HADOOP is true
Expand Down
3 changes: 2 additions & 1 deletion bin/zeppelin.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ call "%bin%\functions.cmd" ADDJARINDIR "%ZEPPELIN_HOME%\lib\interpreter"
call "%bin%\functions.cmd" ADDJARINDIR "%ZEPPELIN_HOME%\zeppelin-interpreter\target\lib"
call "%bin%\functions.cmd" ADDJARINDIR "%ZEPPELIN_HOME%\zeppelin-zengine\target\lib"
call "%bin%\functions.cmd" ADDJARINDIR "%ZEPPELIN_HOME%\zeppelin-server\target\lib"
call "%bin%\functions.cmd" ADDJARINDIR "%ZEPPELIN_HOME%\zeppelin-web\target\lib"
call "%bin%\functions.cmd" ADDJARINDIR "%ZEPPELIN_HOME%\zeppelin-web-classic\target\lib"
call "%bin%\functions.cmd" ADDJARINDIR "%ZEPPELIN_HOME%\zeppelin-web-angular\target\lib"

if not defined CLASSPATH (
set CLASSPATH=%ZEPPELIN_CLASSPATH%
Expand Down
2 changes: 1 addition & 1 deletion bin/zeppelin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ addJarInDir "${ZEPPELIN_HOME}/lib/interpreter"
addJarInDir "${ZEPPELIN_HOME}/zeppelin-interpreter/target/lib"
addJarInDir "${ZEPPELIN_HOME}/zeppelin-zengine/target/lib"
addJarInDir "${ZEPPELIN_HOME}/zeppelin-server/target/lib"
addJarInDir "${ZEPPELIN_HOME}/zeppelin-web/target/lib"
addJarInDir "${ZEPPELIN_HOME}/zeppelin-web-classic/target/lib"
addJarInDir "${ZEPPELIN_HOME}/zeppelin-web-angular/target/lib"

ZEPPELIN_CLASSPATH="$CLASSPATH:$ZEPPELIN_CLASSPATH"
Expand Down
6 changes: 3 additions & 3 deletions dev/change_zeppelin_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ is_maintenance_version() {

# Change version in example and package files
sed -i '' 's/-'"${FROM_VERSION}"'.jar",/-'"${TO_VERSION}"'.jar",/g' zeppelin-examples/zeppelin-example-clock/zeppelin-example-clock.json
sed -i '' 's/"version": "'"${FROM_VERSION}"'",/"version": "'"${TO_VERSION}"'",/g' zeppelin-web/src/app/tabledata/package.json
sed -i '' 's/"version": "'"${FROM_VERSION}"'",/"version": "'"${TO_VERSION}"'",/g' zeppelin-web/src/app/visualization/package.json
sed -i '' 's/"version": "'"${FROM_VERSION}"'",/"version": "'"${TO_VERSION}"'",/g' zeppelin-web/src/app/spell/package.json
sed -i '' 's/"version": "'"${FROM_VERSION}"'",/"version": "'"${TO_VERSION}"'",/g' zeppelin-web-classic/src/app/tabledata/package.json
sed -i '' 's/"version": "'"${FROM_VERSION}"'",/"version": "'"${TO_VERSION}"'",/g' zeppelin-web-classic/src/app/visualization/package.json
sed -i '' 's/"version": "'"${FROM_VERSION}"'",/"version": "'"${TO_VERSION}"'",/g' zeppelin-web-classic/src/app/spell/package.json

# Change version in Dockerfile
sed -i '' 's/Z_VERSION="'"${FROM_VERSION}"'"/Z_VERSION="'"${TO_VERSION}"'"/g' scripts/docker/zeppelin/bin/Dockerfile
Expand Down
8 changes: 4 additions & 4 deletions docs/development/contribution/useful_developer_tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ limitations under the License.

<div id="toc"></div>

### Developing `zeppelin-web`
### Developing `zeppelin-web-classic`

Check [zeppelin-web: Local Development](https://github.com/apache/zeppelin/tree/master/zeppelin-web#local-development).
Check [zeppelin-web-classic: Local Development](https://github.com/apache/zeppelin/tree/master/zeppelin-web-classic#local-development).

### Tools

Expand Down Expand Up @@ -60,8 +60,8 @@ you can use this function like `setjdk 1.8` / `setjdk 1.7`
### Building Submodules Selectively

```bash
# build `zeppelin-web` only
./mvnw clean -pl 'zeppelin-web' package -DskipTests;
# build `zeppelin-web-classic` only
./mvnw clean -pl 'zeppelin-web-classic' package -DskipTests;

# build `zeppelin-server` and its dependencies only
./mvnw clean package -pl 'spark,spark-dependencies,python,markdown,zeppelin-server' --am -DskipTests
Expand Down
4 changes: 2 additions & 2 deletions docs/development/helium/writing_spell.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Making a new spell is similar to [Helium Visualization#write-new-visualization](

Create a [package.json](https://docs.npmjs.com/files/package.json) in new directory for spell.

- You have to add a framework called `zeppelin-spell` as a dependency to create spell ([zeppelin-spell](https://github.com/apache/zeppelin/tree/master/zeppelin-web/src/app/spell))
- You have to add a framework called `zeppelin-spell` as a dependency to create spell ([zeppelin-spell](https://github.com/apache/zeppelin/tree/master/zeppelin-web-classic/src/app/spell))
- Also, you can add any dependencies you want to utilise.

Here's an example
Expand Down Expand Up @@ -203,7 +203,7 @@ It's automatically created when you publish to npm repository but in local case,
### 4. Run in dev mode

```bash
cd zeppelin-web
cd zeppelin-web-classic
yarn run dev:helium
```

Expand Down
14 changes: 7 additions & 7 deletions docs/development/helium/writing_visualization_basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ User can use just like any other built-in visualizations.

#### 1. Create a npm package

Create a [package.json](https://docs.npmjs.com/files/package.json) in your new Visualization directory. You can add any dependencies in package.json, but you **must include two dependencies: [zeppelin-vis](https://github.com/apache/zeppelin/tree/master/zeppelin-web/src/app/visualization) and [zeppelin-tabledata](https://github.com/apache/zeppelin/tree/master/zeppelin-web/src/app/tabledata).**
Create a [package.json](https://docs.npmjs.com/files/package.json) in your new Visualization directory. You can add any dependencies in package.json, but you **must include two dependencies: [zeppelin-vis](https://github.com/apache/zeppelin/tree/master/zeppelin-web-classic/src/app/visualization) and [zeppelin-tabledata](https://github.com/apache/zeppelin/tree/master/zeppelin-web-classic/src/app/tabledata).**

Here's an example

Expand All @@ -82,9 +82,9 @@ Here's an example

#### 2. Create your own visualization

To create your own visualization, you need to create a js file and import [Visualization](https://github.com/apache/zeppelin/blob/master/zeppelin-web/src/app/visualization/visualization.js) class from [zeppelin-vis](https://github.com/apache/zeppelin/tree/master/zeppelin-web/src/app/visualization) package and extend the class. [zeppelin-tabledata](https://github.com/apache/zeppelin/tree/master/zeppelin-web/src/app/tabledata) package provides some useful transformations, like pivot, you can use in your visualization. (you can create your own transformation, too).
To create your own visualization, you need to create a js file and import [Visualization](https://github.com/apache/zeppelin/blob/master/zeppelin-web-classic/src/app/visualization/visualization.js) class from [zeppelin-vis](https://github.com/apache/zeppelin/tree/master/zeppelin-web-classic/src/app/visualization) package and extend the class. [zeppelin-tabledata](https://github.com/apache/zeppelin/tree/master/zeppelin-web-classic/src/app/tabledata) package provides some useful transformations, like pivot, you can use in your visualization. (you can create your own transformation, too).

[Visualization](https://github.com/apache/zeppelin/blob/master/zeppelin-web/src/app/visualization/visualization.js) class, there're several methods that you need to override and implement. Here's simple visualization that just prints `Hello world`.
[Visualization](https://github.com/apache/zeppelin/blob/master/zeppelin-web-classic/src/app/visualization/visualization.js) class, there're several methods that you need to override and implement. Here's simple visualization that just prints `Hello world`.

```js
import Visualization from 'zeppelin-vis'
Expand All @@ -106,11 +106,11 @@ export default class helloworld extends Visualization {
}
```

To learn more about `Visualization` class, check [visualization.js](https://github.com/apache/zeppelin/blob/master/zeppelin-web/src/app/visualization/visualization.js).
To learn more about `Visualization` class, check [visualization.js](https://github.com/apache/zeppelin/blob/master/zeppelin-web-classic/src/app/visualization/visualization.js).

You can check complete visualization package example [here](https://github.com/apache/zeppelin/tree/master/zeppelin-examples/zeppelin-example-horizontalbar).

Zeppelin's built-in visualization uses the same API, so you can check [built-in visualizations](https://github.com/apache/zeppelin/tree/master/zeppelin-web/src/app/visualization/builtins) as additional examples.
Zeppelin's built-in visualization uses the same API, so you can check [built-in visualizations](https://github.com/apache/zeppelin/tree/master/zeppelin-web-classic/src/app/visualization/builtins) as additional examples.


#### 3. Create __Helium package file__ and locally deploy
Expand Down Expand Up @@ -191,10 +191,10 @@ e.g.
#### 4. Run in dev mode

Place your __Helium package file__ in local registry (`ZEPPELIN_HOME/helium`).
Run Zeppelin. And then run zeppelin-web in visualization dev mode.
Run Zeppelin. And then run zeppelin-web-classic in visualization dev mode.

```bash
cd zeppelin-web
cd zeppelin-web-classic
yarn run dev:helium
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,19 @@ Zeppelin provides 4 types of transformations.

`PassthroughTransformation` is the simple transformation which does not convert original tabledata at all.

See [passthrough.js](https://github.com/apache/zeppelin/blob/master/zeppelin-web/src/app/tabledata/passthrough.js)
See [passthrough.js](https://github.com/apache/zeppelin/blob/master/zeppelin-web-classic/src/app/tabledata/passthrough.js)

## 2. ColumnselectorTransformation

`ColumnselectorTransformation` is uses when you need `N` axes but do not need aggregation.

See [columnselector.js](https://github.com/apache/zeppelin/blob/master/zeppelin-web/src/app/tabledata/columnselector.js)
See [columnselector.js](https://github.com/apache/zeppelin/blob/master/zeppelin-web-classic/src/app/tabledata/columnselector.js)

## 3. PivotTransformation

`PivotTransformation` provides group by and aggregation. Every chart using `PivotTransformation` has 3 axes. `Keys`, `Groups` and `Values`.

See [pivot.js](https://github.com/apache/zeppelin/blob/master/zeppelin-web/src/app/tabledata/pivot.js)
See [pivot.js](https://github.com/apache/zeppelin/blob/master/zeppelin-web-classic/src/app/tabledata/pivot.js)

## 4. AdvancedTransformation

Expand Down
4 changes: 2 additions & 2 deletions docs/development/writing_zeppelin_interpreter.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,11 @@ You can add `editor` object to `interpreter-setting.json` file to specify paragr
### Language
If the interpreter uses a specific programming language (like Scala, Python, SQL), it is generally recommended to add a syntax highlighting supported for that to the note paragraph editor.

To check out the list of languages supported, see the `mode-*.js` files under `zeppelin-web/bower_components/ace-builds/src-noconflict` or from [github.com/ajaxorg/ace-builds](https://github.com/ajaxorg/ace-builds/tree/master/src-noconflict).
To check out the list of languages supported, see the `mode-*.js` files under `zeppelin-web-classic/bower_components/ace-builds/src-noconflict` or from [github.com/ajaxorg/ace-builds](https://github.com/ajaxorg/ace-builds/tree/master/src-noconflict).

If you want to add a new set of syntax highlighting,

1. Add the `mode-*.js` file to <code>[zeppelin-web/bower.json](https://github.com/apache/zeppelin/blob/master/zeppelin-web/bower.json)</code> (when built, <code>[zeppelin-web/src/index.html](https://github.com/apache/zeppelin/blob/master/zeppelin-web/src/index.html)</code> will be changed automatically).
1. Add the `mode-*.js` file to <code>[zeppelin-web-classic/bower.json](https://github.com/apache/zeppelin/blob/master/zeppelin-web-classic/bower.json)</code> (when built, <code>[zeppelin-web-classic/src/index.html](https://github.com/apache/zeppelin/blob/master/zeppelin-web-classic/src/index.html)</code> will be changed automatically).
2. Add `language` field to `editor` object. Note that if you don't specify language field, your interpreter will use plain text mode for syntax highlighting. Let's say you want to set your language to `java`, then add:

```json
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@
<profile>
<id>web-classic</id>
<modules>
<module>zeppelin-web</module>
<module>zeppelin-web-classic</module>
</modules>
</profile>

Expand Down Expand Up @@ -1041,7 +1041,7 @@
<exclude>**/**/*.log</exclude>
<exclude>**/**/logs/**</exclude>

<!-- bundled from zeppelin-web -->
<!-- bundled from zeppelin-web-classic -->
<exclude>**/test/karma.conf.js</exclude>
<exclude>**/test/spec/**</exclude>
<exclude>**/.babelrc</exclude>
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker/zeppelin-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ENV LANG=en_US.UTF-8 \
ZEPPELIN_WAR_TEMPDIR="/tmp/webapps"

# Copy Zeppelin related files
COPY --from=zeppelin-distribution /opt/zeppelin/zeppelin-web-${VERSION}.war ${ZEPPELIN_HOME}/
COPY --from=zeppelin-distribution /opt/zeppelin/zeppelin-web-classic-${VERSION}.war ${ZEPPELIN_HOME}/
COPY --from=zeppelin-distribution /opt/zeppelin/zeppelin-web-angular-${VERSION}.war ${ZEPPELIN_HOME}/
COPY --from=zeppelin-distribution /opt/zeppelin/conf ${ZEPPELIN_HOME}/conf
COPY --from=zeppelin-distribution /opt/zeppelin/bin ${ZEPPELIN_HOME}/bin
Expand Down
2 changes: 1 addition & 1 deletion zeppelin-distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>zeppelin-web</artifactId>
<artifactId>zeppelin-web-classic</artifactId>
<version>${project.version}</version>
<type>war</type>
</dependency>
Expand Down
Loading

0 comments on commit f9fe986

Please sign in to comment.