milo-dtd-reader
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.milo</groupId> <artifactId>milo-dtd-reader</artifactId> <version>1.0.0-M2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2025 the Eclipse Milo Authors ~ ~ This program and the accompanying materials are made ~ available under the terms of the Eclipse Public License 2.0 ~ which is available at https://www.eclipse.org/legal/epl-2.0/ ~ ~ SPDX-License-Identifier: EPL-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>org.eclipse.milo</groupId> <artifactId>milo-opc-ua-sdk</artifactId> <version>1.0.0-M2</version> </parent> <artifactId>milo-dtd-reader</artifactId> <properties> <javaModuleName>org.eclipse.milo.opcua.sdk.dtd.reader</javaModuleName> </properties> <dependencies> <dependency> <groupId>org.eclipse.milo</groupId> <artifactId>milo-dtd-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.milo</groupId> <artifactId>milo-sdk-client</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jspecify</groupId> <artifactId>jspecify</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> </plugin> </plugins> </build> </project>