Skip to content

Fix imports and dependencies #96

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions sensors/video/sensorhub-driver-onvif/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
description = 'ONVIF Video Camera'
ext.details = 'Driver for IP video cameras using the ONFIV standard'
ext.details = 'Driver for IP video cameras using the ONVIF standard'
version = '0.0.2'

dependencies {
implementation 'org.sensorhub:sensorhub-core:' + oshCoreVersion
implementation project(':sensorhub-driver-rtpcam')
//implementation project(':sensorhub-driver-rtpcam')
implementation project(':sensorhub-driver-ffmpeg')
implementation project(':sensorhub-driver-videocam')
embeddedImpl 'org.apache.cxf.services.ws-discovery:cxf-services-ws-discovery-api:3.1.11'
embeddedImpl 'org.apache.cxf.services.ws-discovery:cxf-services-ws-discovery-service:3.1.11'
embeddedImpl 'org.apache.cxf:cxf-rt-transports-http-jetty:3.1.11'
Expand Down Expand Up @@ -45,7 +46,7 @@ dependencies {
}

embeddedImpl fileTree(dir: 'lib', include: ['*.jar'])
testImplementation project(path: ':sensorhub-driver-videocam', configuration: 'testArtifacts')
//testImplementation project(path: ':sensorhub-driver-videocam', configuration: 'testArtifacts')
}


Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ Developer are Copyright (C) 2014 the Initial Developer. All Rights Reserved.
import org.sensorhub.api.config.DisplayInfo;
import org.sensorhub.api.config.DisplayInfo.Required;
import org.sensorhub.api.sensor.SensorConfig;
import de.onvif.discovery.OnvifDiscovery;
//import de.onvif.discovery.OnvifDiscovery;
import org.sensorhub.impl.comm.TCPConfig;
import org.sensorhub.impl.sensor.rtpcam.RTPCameraConfig;
//import org.sensorhub.impl.sensor.rtpcam.RTPCameraConfig;

import java.net.URL;
import java.util.*;
Expand Down