DataCleaner-monitor-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eobjects.datacleaner</groupId> <artifactId>DataCleaner-monitor-api</artifactId> <version>5.2.1</version> </dependency>
<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.eobjects.datacleaner</groupId> <artifactId>DataCleaner-monitor</artifactId> <version>5.2.1</version> </parent> <artifactId>DataCleaner-monitor-api</artifactId> <build> <plugins> <plugin> <groupId>org.jvnet.jaxb2.maven2</groupId> <artifactId>maven-jaxb2-plugin</artifactId> <executions> <execution> <id>generate-jaxb-sources</id> <goals> <goal>generate</goal> </goals> </execution> </executions> <configuration> <schemaDirectory>src/main/resources</schemaDirectory> <generatePackage>org.datacleaner.monitor.jaxb</generatePackage> <generateDirectory>${project.build.directory}/generated-sources/jaxb</generateDirectory> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${project.build.directory}/generated-sources/jaxb</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. --> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.codehaus.mojo</groupId> <artifactId>jaxb2-maven-plugin</artifactId> <versionRange> [1.3.1,) </versionRange> <goals> <goal>xjc</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <dependencies> <!-- DataCleaner core / environment --> <dependency> <groupId>org.eobjects.datacleaner</groupId> <artifactId>DataCleaner-engine-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eobjects.datacleaner</groupId> <artifactId>DataCleaner-xml-config</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eobjects.datacleaner</groupId> <artifactId>DataCleaner-rest-client</artifactId> <version>${project.version}</version> </dependency> <!-- Middleware: Spring, Quartz etc. --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> </dependency> <!-- Freemarker (for Wizard plugins) --> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> </dependency> </dependencies> </project>