idylnlp-nlp-language-detection-opennlp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ai.idylnlp</groupId> <artifactId>idylnlp-nlp-language-detection-opennlp</artifactId> <version>1.1.0</version> </dependency>
<?xml version="1.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>ai.idylnlp</groupId> <artifactId>idylnlp-nlp-language-detection</artifactId> <version>1.1.0</version> </parent> <artifactId>idylnlp-nlp-language-detection-opennlp</artifactId> <name>idylnlp-nlp-language-detection-opennlp</name> <licenses> <license> <name>${license.name}</name> <url>${license.url}</url> </license> </licenses> <properties> <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>com.googlecode.maven-download-plugin</groupId> <artifactId>download-maven-plugin</artifactId> <version>1.4.0</version> <executions> <execution> <id>1</id> <phase>process-resources</phase> <goals> <goal>wget</goal> </goals> <configuration> <url>http://apache.claz.org/opennlp/models/langdetect/1.8.3/langdetect-183.bin</url> <outputFileName>langdetect-183.bin</outputFileName> <outputDirectory>${project.basedir}/src/main/resources/</outputDirectory> </configuration> </execution> <execution> <id>2</id> <phase>process-resources</phase> <goals> <goal>wget</goal> </goals> <configuration> <url>http://apache.claz.org/opennlp/models/langdetect/1.8.3/langdetect-183.bin</url> <outputFileName>langdetect-183.bin</outputFileName> <outputDirectory>${project.basedir}/src/test/resources/</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-remote-resources-plugin</artifactId> <version>1.5</version> <executions> <execution> <goals> <goal>bundle</goal> </goals> </execution> </executions> <configuration> <includes> <include>**/langdetect-183.bin</include> </includes> </configuration> </plugin> </plugins> <testResources> <testResource> <directory>${project.basedir}/src/test/resources/</directory> <filtering>false</filtering> </testResource> </testResources> </build> <dependencies> <dependency> <groupId>ai.idylnlp</groupId> <artifactId>idylnlp-model</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>ai.idylnlp</groupId> <artifactId>idylnlp-opennlp-tools-${opennlp.tools.version}</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>${commons.collections.version}</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <version>${powermock.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-mockito2</artifactId> <version>${powermock.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>ai.idylnlp</groupId> <artifactId>idylnlp-testing</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> </project>