Files
onvif/pom.xml
bhlowe 67a68f2ffc java 12 changes
Changes used to compile on java 12. Should be changed to a maven profile to allow selecting java 8 or higher... but appears to work. I do see some Illegal reflective access
warnings that appear harmless, for instance: Illegal reflective access by org.apache.ws.commons.schema.utils.DOMUtil
2019-07-10 09:35:37 -07:00

43 lines
1.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>
<groupId>org.onvif</groupId>
<artifactId>onvif</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<java.version>1.12</java.version>
<cxf.version>3.1.10</cxf.version>
<javax.activation.version>1.2.0</javax.activation.version>
<jaxb.api.version>2.3.0</jaxb.api.version> <!-- 2.3.0, 2.3.1 or 2.4.0-b180830.0359 -->
</properties>
<modules>
<module>onvif-ws-client</module>
<module>onvif-java</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
</project>