prettytime-nlp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ocpsoft.prettytime</groupId> <artifactId>prettytime-nlp</artifactId> <version>5.0.9.Final</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"> <parent> <artifactId>prettytime-parent</artifactId> <groupId>org.ocpsoft.prettytime</groupId> <version>5.0.9.Final</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>prettytime-nlp</artifactId> <name>PrettyTime - Natural Language Processing</name> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <excludes> <exclude>junit:junit</exclude> <exclude>org.ocpsoft.prettytime:prettytime</exclude> </excludes> </artifactSet> <relocations> <relocation> <includes> <include>com.joestelmach.**</include> <include>org.slf4j.**</include> <include>edu.emory.**</include> <include>net.fortuna.**</include> <include>org.antlr.**</include> <include>org.apache.**</include> <include>zoneinfo.**</include> </includes> <shadedPattern>org.ocpsoft.prettytime.shade.</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.ocpsoft.prettytime</groupId> <artifactId>prettytime</artifactId> <version>5.0.9.Final</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.5</version> <scope>test</scope> </dependency> </dependencies> </project>