opc-ua-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.milo</groupId> <artifactId>opc-ua-sdk</artifactId> <version>0.6.16</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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.eclipse.milo</groupId> <artifactId>milo</artifactId> <version>0.6.16</version> </parent> <artifactId>opc-ua-sdk</artifactId> <packaging>pom</packaging> <properties> <annotations.version>22.0.0</annotations.version> <slf4j.version>1.7.36</slf4j.version> <testng.version>6.11</testng.version> <mockito.version>2.25.1</mockito.version> </properties> <modules> <module>dictionary-manager</module> <module>dictionary-reader</module> <module>sdk-client</module> <module>sdk-core</module> <module>sdk-server</module> <module>sdk-tests</module> <module>integration-tests</module> </modules> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <!-- configuration inherited from pluginManagement --> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <!-- configuration inherited from pluginManagement --> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <!-- configuration inherited from pluginManagement --> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> <manifestEntries> <X-SDK-Version>${project.version}</X-SDK-Version> </manifestEntries> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>3.0.5</version> <configuration> <excludeFilterFile>${basedir}/../findbugs-exclude.xml</excludeFilterFile> </configuration> </plugin> </plugins> </build> <pluginRepositories> <pluginRepository> <id>sonatype-oss-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> </project>