nlp-light-lexer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>nlp-light-lexer</artifactId> <version>1.0.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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>nlp-modules-parent</artifactId> <version>1.8</version> <relativePath>../parent</relativePath> </parent> <artifactId>nlp-light-lexer</artifactId> <version>1.0.0</version> <packaging>bundle</packaging> <name>DAISY Pipeline 2 module :: Light Lexer</name> <description>Lexer implementation with no words detection (sentences only)</description> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>nlp-common</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>nlp-lexing</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Export-Package /> <Service-Component>OSGI-INF/light-lex-service.xml</Service-Component> </instructions> </configuration> </plugin> </plugins> </build> </project>