55 lines
2.4 KiB
Groovy
55 lines
2.4 KiB
Groovy
|
/*
|
||
|
*
|
||
|
* ******************************************************************************
|
||
|
* *
|
||
|
* * This program and the accompanying materials are made available under the
|
||
|
* * terms of the Apache License, Version 2.0 which is available at
|
||
|
* * https://www.apache.org/licenses/LICENSE-2.0.
|
||
|
* *
|
||
|
* * See the NOTICE file distributed with this work for additional
|
||
|
* * information regarding copyright ownership.
|
||
|
* * 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.
|
||
|
* *
|
||
|
* * SPDX-License-Identifier: Apache-2.0
|
||
|
* *****************************************************************************
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
ext {
|
||
|
scalaVersion = rootProject.ext.scalaVersion
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation projects.cavisDnn.cavisDnnCore
|
||
|
implementation projects.cavisDnn.cavisDnnNn
|
||
|
implementation projects.cavisDnn.cavisDnnApi
|
||
|
implementation projects.cavisDnn.cavisDnnCommon
|
||
|
implementation projects.cavisDnn.cavisDnnData.cavisDnnDataDatasets
|
||
|
implementation projects.cavisDnn.cavisDnnData.cavisDnnDataDatavecIterators
|
||
|
implementation projects.cavisDnn.cavisDnnData.cavisDnnDataUtilityIterators
|
||
|
implementation "org.apache.hadoop:hadoop-common:3.2.0"
|
||
|
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml"
|
||
|
implementation projects.cavisDatavec.cavisDatavecApi
|
||
|
implementation projects.cavisDatavec.cavisDatavecSpark.cavisDatavecSparkCore
|
||
|
implementation "commons-io:commons-io"
|
||
|
|
||
|
implementation projects.cavisUi.cavisUiComponents
|
||
|
|
||
|
implementation projects.cavisUi.cavisUiModel
|
||
|
|
||
|
testImplementation 'ch.qos.logback:logback-classic'
|
||
|
|
||
|
compileOnly "org.apache.spark:spark-core_${scalaVersion}"
|
||
|
compileOnly "org.apache.spark:spark-mllib_${scalaVersion}"
|
||
|
testCompileOnly "org.apache.spark:spark-core_${scalaVersion}"
|
||
|
testCompileOnly "org.apache.spark:spark-mllib_${scalaVersion}"
|
||
|
testRuntimeOnly projects.cavisDnn.cavisDnnCommonTests
|
||
|
testImplementation projects.cavisDnn.cavisDnnCommonTests
|
||
|
testImplementation "net.java.dev.jna:jna:5.9.0"
|
||
|
testImplementation projects.cavisDatavec.cavisDatavecData.cavisDatavecDataImage
|
||
|
testCompileOnly "org.scala-lang:scala-library"
|
||
|
}
|