open-metadata-compliance-suite
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.odpi.egeria</groupId> <artifactId>open-metadata-compliance-suite</artifactId> <version>0.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- SPDX-License-Identifier: Apache-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"> <parent> <artifactId>egeria</artifactId> <groupId>org.odpi.egeria</groupId> <version>0.2</version> </parent> <name>Open Metadata Compliance Suite</name> <description> Test code and frameworks to enable a vendor to verify that their products can inter-operate with other technologies through the open metadata standards. </description> <modelVersion>4.0.0</modelVersion> <artifactId>open-metadata-compliance-suite</artifactId> <dependencies> <!-- File I/O processing --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons-io.version}</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>${commons-collections.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> </dependency> <!-- REST Repository Connector --> <dependency> <groupId>org.odpi.egeria</groupId> <artifactId>repository-services-implementation</artifactId> <version>${open-metadata.version}</version> </dependency> <dependency> <groupId>org.odpi.egeria</groupId> <artifactId>connector-configuration-factory</artifactId> <version>${open-metadata.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.0</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <addClasspath>true</addClasspath> <mainClass>org.odpi.openmetadata.compliance.OpenMetadataTestLab</mainClass> </manifest> </archive> </configuration> <executions> <execution> <id>assemble-all</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>