133 lines
4.0 KiB
XML
133 lines
4.0 KiB
XML
<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>org.onvif</groupId>
|
|
<artifactId>onvif</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>onvif-java</artifactId>
|
|
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-rt-ws-security</artifactId>
|
|
<version>${cxf.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-rt-transports-http</artifactId>
|
|
<version>${cxf.version}</version>
|
|
</dependency>
|
|
<!-- <dependency> -->
|
|
<!-- <groupId>org.apache.cxf.services.ws-discovery</groupId> -->
|
|
<!-- <artifactId>cxf-services-ws-discovery-api</artifactId> -->
|
|
<!-- <version>${cxf.version}</version> -->
|
|
<!-- </dependency> -->
|
|
<!-- <dependency> -->
|
|
<!-- <groupId>org.apache.cxf.services.ws-discovery</groupId> -->
|
|
<!-- <artifactId>cxf-services-ws-discovery-service</artifactId> -->
|
|
<!-- <version>${cxf.version}</version> -->
|
|
<!-- </dependency> -->
|
|
|
|
<dependency>
|
|
<groupId>org.onvif</groupId>
|
|
<artifactId>onvif-ws-client</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>2.7</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>1.10</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.4</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.sun.xml.messaging.saaj/saaj-impl -->
|
|
<!-- For Discovery -->
|
|
<dependency>
|
|
<groupId>com.sun.xml.messaging.saaj</groupId>
|
|
<artifactId>saaj-impl</artifactId>
|
|
<version>1.5.1</version>
|
|
</dependency>
|
|
|
|
<!-- For discovery using cxf -->
|
|
<!-- https://mvnrepository.com/artifact/org.apache.cxf.services.ws-discovery/cxf-services-ws-discovery-api -->
|
|
<!--
|
|
<dependency>
|
|
<groupId>org.apache.cxf.services.ws-discovery</groupId>
|
|
<artifactId>cxf-services-ws-discovery-api</artifactId>
|
|
<version>${cxf.version}</version>
|
|
</dependency>
|
|
-->
|
|
|
|
<!-- Java 9+ javax dependencies start -->
|
|
<dependency>
|
|
<groupId>com.sun.activation</groupId>
|
|
<artifactId>javax.activation</artifactId>
|
|
<version>${javax.activation.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.xml.bind</groupId>
|
|
<artifactId>jaxb-api</artifactId>
|
|
<version>${jaxb.api.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
<artifactId>jaxb-core</artifactId>
|
|
<version>2.3.0.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
<artifactId>jaxb-impl</artifactId>
|
|
<version>${jaxb.api.version}</version>
|
|
</dependency>
|
|
<!-- Java 9+ javax dependencies end -->
|
|
|
|
|
|
<!-- LOGGINBG... for testing -->
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
<version>1.7.26</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.xml.soap</groupId>
|
|
<artifactId>javax.xml.soap-api</artifactId>
|
|
<version>1.4.0</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<!--
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
<configuration>
|
|
<release>${java.release}</release>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
-->
|
|
</project> |