okapi-filter-its
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sf.okapi.filters</groupId> <artifactId>okapi-filter-its</artifactId> <version>1.47.0</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>net.sf.okapi.filters</groupId> <artifactId>build-filters</artifactId> <version>1.47.0</version> </parent> <artifactId>okapi-filter-its</artifactId> <name>Okapi Filter for XML/HTML5+ITS</name> <dependencies> <dependency> <groupId>net.sf.okapi</groupId> <artifactId>okapi-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>nu.validator.htmlparser</groupId> <artifactId>htmlparser</artifactId> </dependency> <dependency> <groupId>net.sf.okapi</groupId> <artifactId>okapi-core</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>net.sf.okapi.filters</groupId> <artifactId>okapi-filter-html</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <!-- Copy filter configuration file to deployment/shared/config dir. deployment/maven/build_okapi-lib.xml will then copy the files in config dir to the package's config dir. --> <id>copy-sample-files</id> <goals> <goal>copy-resources</goal> </goals> <phase>process-resources</phase> <configuration> <outputDirectory>${project.dir}/../../../../deployment/shared/config</outputDirectory> <resources> <resource> <directory>src/main/resources/net/sf/okapi/filters/xml</directory> <include>okf_*.fprm</include> <filtering>false</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>