Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<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>
<groupId>com.github.heideltime</groupId>
<artifactId>heideltime</artifactId>
<version>2.2</version>
<name>HeidelTime</name>
<description>HeidelTime is a multilingual cross-domain temporal tagger that extracts temporal expressions from documents and normalizes them according to the TIMEX3 annotation standard.</description>
<url>https://github.com/HeidelTime/heideltime/</url>
<licenses>
<license>
<name>GNU General Public License (GPL)</name>
<url>http://www.gnu.org/licenses/gpl.txt</url>
</license>
</licenses>
<issueManagement>
<url>https://github.com/HeidelTime/heideltime/issues</url>
<system>GitHub</system>
</issueManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<developers>
<developer>
<id>JannikStroetgen</id>
<name>Jannik Strötgen</name>
<email>jannik.stroetgen@mpi-inf.mpg.de</email>
<url>http://people.mpi-inf.mpg.de/~jstroetge/</url>
</developer>
<developer>
<id>jzell</id>
<name>Julian Zell</name>
<email>zell@informatik.uni-heidelberg.de</email>
<url>https://github.com/jzell</url>
</developer>
</developers>
<scm>
<url>https://github.com/HeidelTime/heideltime</url>
<connection>scm:git:git@github.com:HeidelTime/heideltime.git</connection>
<developerConnection>scm:git:git@github.com:HeidelTime/heideltime.git</developerConnection>
</scm>
<build>
<sourceDirectory>src</sourceDirectory>
<outputDirectory>${basedir}/class</outputDirectory>
<resources>
<resource>
<directory>${basedir}</directory>
<includes>
<include>desc/**/*.xml</include>
</includes>
</resource>
<resource>
<directory>resources/</directory>
<includes>
<include>**/*.txt</include>
</includes>
</resource>
</resources>
<finalName>de.unihd.dbs.heideltime.standalone</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<version>2.2.1</version>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>de.unihd.dbs.heideltime.standalone.HeidelTimeStandalone</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>de.unihd.dbs.heideltime.standalone.HeidelTimeStandalone</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<configuration>
<excludeResources>true</excludeResources>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<dependencies>
<!-- for practically every component -->
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-core</artifactId>
<version>2.8.1</version>
<scope>provided</scope>
</dependency>
<!-- for the StanfordPOSTaggerWrapper -->
<dependency>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>3.3.1</version>
<scope>provided</scope>
</dependency>
<!-- these are for JVnTextPro -->
<dependency>
<groupId>args4j</groupId>
<artifactId>args4j</artifactId>
<version>2.32</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.dbtsai.lbfgs</groupId>
<artifactId>lbfgs</artifactId>
<version>0.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>