DataCleaner-monitor-documentation
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eobjects.datacleaner</groupId> <artifactId>DataCleaner-monitor-documentation</artifactId> <version>5.1.5.3</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"> <parent> <artifactId>DataCleaner-monitor</artifactId> <groupId>org.eobjects.datacleaner</groupId> <version>5.1.5.3</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>DataCleaner-monitor-documentation</artifactId> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-versions-parent</id> <goals> <goal>enforce</goal> </goals> <configuration> <!-- For now we allow skipping the enforcer in this module. It has known issues because of transitive dependencies of wadl --> <skip>true</skip> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <!-- Spring --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> </dependency> <!-- Servlet+JSP dependencies --> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <scope>provided</scope> </dependency> <!-- Json de/serialization library --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> </dependencies> </project>