parent
dbbd61621c
commit
18e1717a13
|
@ -9,7 +9,7 @@ ext {
|
|||
|
||||
def javacpp = [version: "1.5.6", presetsVersion: "1.5.6"]
|
||||
def hdf5 = [version: "1.12.1"]
|
||||
def jackson = [version: "2.10.5.20201202"]
|
||||
def jackson = [version: "2.13.4"]
|
||||
def cuda = [version: "11.4"]
|
||||
def cudnn = [version: "8.2"]
|
||||
def openblas = [version: "0.3.17"]
|
||||
|
@ -35,12 +35,13 @@ dependencies {
|
|||
|
||||
api enforcedPlatform("io.netty:netty-bom:${netty.version}")
|
||||
api enforcedPlatform("com.fasterxml.jackson:jackson-bom:${jackson.version}")
|
||||
//api enforcedPlatform("com.fasterxml.jackson.core:jackson-annotations:${jackson.version}")
|
||||
|
||||
|
||||
constraints {
|
||||
|
||||
api enforcedPlatform("io.netty:netty-bom:${netty.version}")
|
||||
api enforcedPlatform("com.fasterxml.jackson:jackson-bom:${jackson.version}")
|
||||
//api enforcedPlatform("com.fasterxml.jackson.core:jackson-annotations:${jackson.version}")
|
||||
|
||||
api 'com.google.guava:guava:30.1-jre'
|
||||
api "com.google.protobuf:protobuf-java:3.15.6"
|
||||
|
|
|
@ -18,9 +18,18 @@
|
|||
* *****************************************************************************
|
||||
*
|
||||
*/
|
||||
apply from: "${project.rootProject.projectDir}/createTestBackends.gradle"
|
||||
|
||||
dependencies {
|
||||
implementation projects.cavisDatavec.cavisDatavecApi
|
||||
implementation projects.cavisDnn.cavisDnnCommon
|
||||
implementation "org.apache.poi:poi:3.17"
|
||||
implementation "org.apache.poi:poi-ooxml:3.17"
|
||||
implementation "com.fasterxml.jackson.core:jackson-annotations"
|
||||
|
||||
implementation "org.slf4j:slf4j-api"
|
||||
|
||||
testRuntimeOnly 'net.brutex.ai:dl4j-test-resources:1.0.1-SNAPSHOT'
|
||||
|
||||
testImplementation projects.cavisNd4j.cavisNd4jCommonTests
|
||||
}
|
|
@ -1,59 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
~ /* ******************************************************************************
|
||||
~ *
|
||||
~ *
|
||||
~ * 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
|
||||
~ ******************************************************************************/
|
||||
-->
|
||||
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>net.brutex.ai</groupId>
|
||||
<artifactId>datavec-parent</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>datavec-excel</artifactId>
|
||||
|
||||
<name>datavec-excel</name>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>net.brutex.ai</groupId>
|
||||
<artifactId>datavec-api</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
|
||||
<dependency>
|
||||
<groupId>org.apache.poi</groupId>
|
||||
<artifactId>poi</artifactId>
|
||||
<version>${poi.version}</version>
|
||||
</dependency>
|
||||
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
|
||||
<dependency>
|
||||
<groupId>org.apache.poi</groupId>
|
||||
<artifactId>poi-ooxml</artifactId>
|
||||
<version>${poi.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
||||
</project>
|
|
@ -30,6 +30,7 @@ dependencies {
|
|||
implementation 'org.apache.commons:commons-lang3'
|
||||
implementation 'commons-io:commons-io'
|
||||
implementation 'org.slf4j:slf4j-api'
|
||||
implementation 'com.fasterxml.jackson.core:jackson-core'
|
||||
implementation 'com.fasterxml.jackson.core:jackson-annotations'
|
||||
implementation 'com.fasterxml.jackson.core:jackson-databind'
|
||||
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml'
|
||||
|
|
|
@ -121,6 +121,7 @@ include ':cavis-datavec:cavis-datavec-data'
|
|||
include ':cavis-datavec:cavis-datavec-data:cavis-datavec-data-image'
|
||||
include ':cavis-datavec:cavis-datavec-data:cavis-datavec-data-audio'
|
||||
include ':cavis-datavec:cavis-datavec-data:cavis-datavec-data-codec'
|
||||
include ':cavis-datavec:cavis-datavec-data:cavis-datavec-data-excel'
|
||||
include ':cavis-datavec:cavis-datavec-data:cavis-datavec-data-nlp'
|
||||
include ':cavis-datavec:cavis-datavec-data:cavis-datavec-data-geo'
|
||||
include ':cavis-datavec:cavis-datavec-data:cavis-datavec-data-hadoop'
|
||||
|
|
Loading…
Reference in New Issue