Added .m2 folder
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 05:36:10 CEST 2023
|
||||
dkpro-parent-pom-14.pom>central=
|
||||
@@ -0,0 +1,722 @@
|
||||
<!--
|
||||
Copyright 2011
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>org.dkpro</groupId>
|
||||
<artifactId>dkpro-parent-pom</artifactId>
|
||||
<version>14</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>DKPro Parent POM</name>
|
||||
<!-- The description tag must be present for antrun to work!! -->
|
||||
<description>Parent POM for DKPro projects. This provides some basic configuration for several Maven plugins as well as useful build profiles.</description>
|
||||
<url>http://code.google.com/p/dkpro-core-asl/</url>
|
||||
<inceptionYear>2011</inceptionYear>
|
||||
<prerequisites>
|
||||
<maven>3.0.1</maven>
|
||||
</prerequisites>
|
||||
<issueManagement>
|
||||
<system>GitHub Issues</system>
|
||||
<url>https://github.com/dkpro/dkpro-parent-pom/issues</url>
|
||||
</issueManagement>
|
||||
<scm>
|
||||
<connection>scm:git:git://github.com/dkpro/dkpro-parent-pom</connection>
|
||||
<developerConnection>scm:git:git@github.com:dkpro/dkpro-parent-pom.git</developerConnection>
|
||||
<url>https://github.com/dkpro/dkpro-parent-pom</url>
|
||||
<tag>dkpro-parent-pom-14</tag>
|
||||
</scm>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.surefire.heap>512m</maven.surefire.heap>
|
||||
<maven.surefire.argLine />
|
||||
<jacoco.argLine />
|
||||
<gpg.useagent>true</gpg.useagent>
|
||||
</properties>
|
||||
<developers>
|
||||
<developer>
|
||||
<organization>DKPro Team</organization>
|
||||
<organizationUrl>https://dkpro.github.io</organizationUrl>
|
||||
</developer>
|
||||
</developers>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<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>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-clean-plugin</artifactId>
|
||||
<version>3.0.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>2.5.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>3.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.5.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>3.0.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.10.3</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-eclipse-plugin</artifactId>
|
||||
<version>2.10</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5.3</version>
|
||||
<configuration>
|
||||
<useReleaseProfile>false</useReleaseProfile>
|
||||
<arguments>${arguments} -Pdkpro-release</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.19.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.8.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>2.10</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>3.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>javancss-maven-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<dependencies>
|
||||
<!--
|
||||
Per default depends on a jaxen version with draws in a jdom version
|
||||
that has a broken pom and does pass Artifactory's consistency checks
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>jaxen</groupId>
|
||||
<artifactId>jaxen</artifactId>
|
||||
<version>1.1.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<version>3.0.3</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.jacoco</groupId>
|
||||
<artifactId>jacoco-maven-plugin</artifactId>
|
||||
<version>0.7.6.201602180812</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.8</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||
<version>1.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.4.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.rat</groupId>
|
||||
<artifactId>apache-rat-plugin</artifactId>
|
||||
<version>0.11</version>
|
||||
<dependencies>
|
||||
<!-- https://issues.apache.org/jira/browse/RAT-158 -->
|
||||
<!-- TODO remove when upgrading to 0.12 -->
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.doxia</groupId>
|
||||
<artifactId>doxia-core</artifactId>
|
||||
<version>1.2</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>xerces</groupId>
|
||||
<artifactId>xercesImpl</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<linkXref>false</linkXref>
|
||||
<showDeprecation>true</showDeprecation>
|
||||
<showWarnings>true</showWarnings>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<argLine>@{jacoco.argLine} -Xmx${maven.surefire.heap} -Xms${maven.surefire.heap} ${maven.surefire.argLine}</argLine>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-maven</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireMavenVersion>
|
||||
<version>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</version>
|
||||
<message>Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively.</message>
|
||||
</requireMavenVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<extensions>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.wagon</groupId>
|
||||
<artifactId>wagon-webdav</artifactId>
|
||||
<version>1.0-beta-2</version>
|
||||
</extension>
|
||||
<extension>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>build-tools</artifactId>
|
||||
<version>4</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
</build>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>attach-javadoc</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadoc</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>attach-source</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-source</id>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>attach-test-source</id>
|
||||
<goals>
|
||||
<goal>test-jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>pmd</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>cpd</goal>
|
||||
<goal>pmd</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
|
||||
<targetJdk>${java.maven.compiler.target}</targetJdk>
|
||||
<linkXRef>false</linkXRef>
|
||||
<excludes>
|
||||
<exclude>**/type/**/*.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>javancss</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>javancss-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>report</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<linkXRef>false</linkXRef>
|
||||
<excludes>
|
||||
<exclude>**/type/**/*.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>findbugs</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>findbugs</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<findbugsXmlOutput>true</findbugsXmlOutput>
|
||||
<xmlOutput>true</xmlOutput>
|
||||
<excludeFilterFile>dkpro-core/findbugs-excludes.xml</excludeFilterFile>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>cobertura</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>cobertura</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<formats>
|
||||
<format>xml</format>
|
||||
</formats>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>jacoco</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.jacoco</groupId>
|
||||
<artifactId>jacoco-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default-prepare-agent</id>
|
||||
<goals>
|
||||
<goal>prepare-agent</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<propertyName>jacoco.argLine</propertyName>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>default-report</id>
|
||||
<phase>prepare-package</phase>
|
||||
<goals>
|
||||
<goal>report</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>default-check</id>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules />
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>check-license.txt</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>check-license.txt</id>
|
||||
<phase>package</phase>
|
||||
<goals><goal>run</goal></goals>
|
||||
<inherited>true</inherited>
|
||||
<configuration>
|
||||
<target>
|
||||
<fail message="LICENSE.txt file is missing.">
|
||||
<condition>
|
||||
<not>
|
||||
<resourcecount count="1">
|
||||
<fileset dir="." includes="LICENSE.txt" />
|
||||
</resourcecount>
|
||||
</not>
|
||||
</condition>
|
||||
</fail>
|
||||
</target>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<!--
|
||||
- This profile takes care of copying the NOTICE, LICENSE, etc. files to the proper
|
||||
- locations.
|
||||
-->
|
||||
<id>add-license</id>
|
||||
<activation>
|
||||
<file><exists>LICENSE.txt</exists></file>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.gmaven</groupId>
|
||||
<artifactId>gmaven-plugin</artifactId>
|
||||
<version>1.5</version>
|
||||
<inherited>true</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<!-- Load postNoticeText from NOTICE file -->
|
||||
<id>read-notice</id>
|
||||
<phase>generate-sources</phase>
|
||||
<goals>
|
||||
<goal>execute</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<source>
|
||||
def noticeFile = new File(project.basedir.path +
|
||||
"/NOTICE.txt");
|
||||
if (noticeFile.exists()) {
|
||||
project.properties.postNoticeText = noticeFile.text;
|
||||
}
|
||||
</source>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
<dependencies>
|
||||
<!--
|
||||
- Workaround for potential conflict between Groovy version used here
|
||||
- and in projects inheriting from this POM.
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy-all</artifactId>
|
||||
<version>1.8.8</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
<version>1.7.0</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
<!-- The DEPENDENCIES and NOTICE templates are read here -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||
<inherited>true</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>process-remote-resources</id>
|
||||
<phase>generate-resources</phase>
|
||||
<goals>
|
||||
<goal>process</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<resourceBundles>
|
||||
<resourceBundle>de.tudarmstadt.ukp.dkpro.core:build-resources:1</resourceBundle>
|
||||
</resourceBundles>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<inherited>true</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>copy-license</id>
|
||||
<goals>
|
||||
<goal>copy-resources</goal>
|
||||
</goals>
|
||||
<phase>generate-resources</phase>
|
||||
<configuration>
|
||||
<outputDirectory>${project.build.outputDirectory}/META-INF</outputDirectory>
|
||||
<resources>
|
||||
<resource>
|
||||
<filtering>false</filtering>
|
||||
<directory>${basedir}</directory>
|
||||
<includes>
|
||||
<include>README.txt</include>
|
||||
<include>LICENSE.txt</include>
|
||||
</includes>
|
||||
</resource>
|
||||
</resources>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>dkpro-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<inherited>true</inherited>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<configuration>
|
||||
<updateReleaseInfo>true</updateReleaseInfo>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<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>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<configuration>
|
||||
<passphrase>${gpg.passphrase}</passphrase>
|
||||
<useAgent>${gpg.useagent}</useAgent>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>m2e</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>m2e.version</name>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<!--
|
||||
- This plugin's configuration is used to store Eclipse m2e settings only.
|
||||
- It has no influence on the Maven build itself.
|
||||
-->
|
||||
<plugin>
|
||||
<groupId>org.eclipse.m2e</groupId>
|
||||
<artifactId>lifecycle-mapping</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<configuration>
|
||||
<lifecycleMappingMetadata>
|
||||
<pluginExecutions>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.codehaus.gmaven</groupId>
|
||||
<artifactId>gmaven-plugin</artifactId>
|
||||
<versionRange>[1.4,)</versionRange>
|
||||
<goals>
|
||||
<goal>execute</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore />
|
||||
</action>
|
||||
</pluginExecution>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<versionRange>[1,)</versionRange>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore />
|
||||
</action>
|
||||
</pluginExecution>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||
<versionRange>[1.4,)</versionRange>
|
||||
<goals>
|
||||
<goal>process</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore />
|
||||
</action>
|
||||
</pluginExecution>
|
||||
</pluginExecutions>
|
||||
</lifecycleMappingMetadata>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 05:36:10 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692329670502
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692329770757
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692329570260
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692329770623
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro\:dkpro-parent-pom\:pom\:14 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro\:dkpro-parent-pom\:pom\:14 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692329570380
|
||||
@@ -0,0 +1 @@
|
||||
885bbeacd7b751ab8c5280ca91c399803208ed40
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 22:07:36 CEST 2023
|
||||
dkpro-parent-pom-15.pom>central=
|
||||
@@ -0,0 +1,731 @@
|
||||
<!--
|
||||
Copyright 2016
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>org.dkpro</groupId>
|
||||
<artifactId>dkpro-parent-pom</artifactId>
|
||||
<version>15</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>DKPro Parent POM</name>
|
||||
<!-- The description tag must be present for antrun to work!! -->
|
||||
<description>Parent POM for DKPro projects. This provides some basic configuration for several Maven plugins as well as useful build profiles.</description>
|
||||
<url>http://code.google.com/p/dkpro-core-asl/</url>
|
||||
<inceptionYear>2011</inceptionYear>
|
||||
<prerequisites>
|
||||
<maven>3.0.1</maven>
|
||||
</prerequisites>
|
||||
<issueManagement>
|
||||
<system>GitHub Issues</system>
|
||||
<url>https://github.com/dkpro/dkpro-parent-pom/issues</url>
|
||||
</issueManagement>
|
||||
<scm>
|
||||
<connection>scm:git:git://github.com/dkpro/dkpro-parent-pom</connection>
|
||||
<developerConnection>scm:git:git@github.com:dkpro/dkpro-parent-pom.git</developerConnection>
|
||||
<url>https://github.com/dkpro/dkpro-parent-pom</url>
|
||||
<tag>dkpro-parent-pom-15</tag>
|
||||
</scm>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.surefire.heap>512m</maven.surefire.heap>
|
||||
<maven.surefire.argLine />
|
||||
<jacoco.argLine />
|
||||
<gpg.useagent>true</gpg.useagent>
|
||||
</properties>
|
||||
<developers>
|
||||
<developer>
|
||||
<organization>DKPro Team</organization>
|
||||
<organizationUrl>https://dkpro.github.io</organizationUrl>
|
||||
</developer>
|
||||
</developers>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<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>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-clean-plugin</artifactId>
|
||||
<version>3.0.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>2.5.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>3.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.5.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>3.0.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.10.3</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-eclipse-plugin</artifactId>
|
||||
<version>2.10</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5.3</version>
|
||||
<configuration>
|
||||
<useReleaseProfile>false</useReleaseProfile>
|
||||
<arguments>${arguments} -Pdkpro-release</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.19.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.8.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>2.10</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>2.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>3.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>javancss-maven-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<dependencies>
|
||||
<!--
|
||||
Per default depends on a jaxen version with draws in a jdom version
|
||||
that has a broken pom and does pass Artifactory's consistency checks
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>jaxen</groupId>
|
||||
<artifactId>jaxen</artifactId>
|
||||
<version>1.1.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<version>3.0.3</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.jacoco</groupId>
|
||||
<artifactId>jacoco-maven-plugin</artifactId>
|
||||
<version>0.7.6.201602180812</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.8</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||
<version>1.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.4.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.rat</groupId>
|
||||
<artifactId>apache-rat-plugin</artifactId>
|
||||
<version>0.11</version>
|
||||
<dependencies>
|
||||
<!-- https://issues.apache.org/jira/browse/RAT-158 -->
|
||||
<!-- TODO remove when upgrading to 0.12 -->
|
||||
<dependency>
|
||||
<groupId>org.apache.maven.doxia</groupId>
|
||||
<artifactId>doxia-core</artifactId>
|
||||
<version>1.2</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>xerces</groupId>
|
||||
<artifactId>xercesImpl</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<linkXref>false</linkXref>
|
||||
<showDeprecation>true</showDeprecation>
|
||||
<showWarnings>true</showWarnings>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<argLine>@{jacoco.argLine} -Xmx${maven.surefire.heap} -Xms${maven.surefire.heap}
|
||||
${maven.surefire.argLine}</argLine>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-maven</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireMavenVersion>
|
||||
<version>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</version>
|
||||
<message>Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively.</message>
|
||||
</requireMavenVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<extensions>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.wagon</groupId>
|
||||
<artifactId>wagon-webdav</artifactId>
|
||||
<version>1.0-beta-2</version>
|
||||
</extension>
|
||||
<extension>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>build-tools</artifactId>
|
||||
<version>4</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
</build>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>attach-javadoc</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadoc</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>attach-source</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-source</id>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>attach-test-source</id>
|
||||
<goals>
|
||||
<goal>test-jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>pmd</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>cpd</goal>
|
||||
<goal>pmd</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
|
||||
<targetJdk>${java.maven.compiler.target}</targetJdk>
|
||||
<linkXRef>false</linkXRef>
|
||||
<excludes>
|
||||
<exclude>**/type/**/*.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>javancss</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>javancss-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>report</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<linkXRef>false</linkXRef>
|
||||
<excludes>
|
||||
<exclude>**/type/**/*.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>findbugs</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>findbugs</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<findbugsXmlOutput>true</findbugsXmlOutput>
|
||||
<xmlOutput>true</xmlOutput>
|
||||
<excludeFilterFile>dkpro-core/findbugs-excludes.xml</excludeFilterFile>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>cobertura</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>cobertura</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<formats>
|
||||
<format>xml</format>
|
||||
</formats>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>jacoco</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.jacoco</groupId>
|
||||
<artifactId>jacoco-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default-prepare-agent</id>
|
||||
<goals>
|
||||
<goal>prepare-agent</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<propertyName>jacoco.argLine</propertyName>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>default-report</id>
|
||||
<phase>prepare-package</phase>
|
||||
<goals>
|
||||
<goal>report</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>default-check</id>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules />
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>check-license.txt</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>check-license.txt</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
<inherited>true</inherited>
|
||||
<configuration>
|
||||
<target>
|
||||
<fail message="LICENSE.txt file is missing.">
|
||||
<condition>
|
||||
<not>
|
||||
<resourcecount count="1">
|
||||
<fileset dir="." includes="LICENSE.txt" />
|
||||
</resourcecount>
|
||||
</not>
|
||||
</condition>
|
||||
</fail>
|
||||
</target>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<!--
|
||||
- This profile takes care of copying the NOTICE, LICENSE, etc. files to the proper
|
||||
- locations.
|
||||
-->
|
||||
<id>add-license</id>
|
||||
<activation>
|
||||
<file>
|
||||
<exists>LICENSE.txt</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.gmavenplus</groupId>
|
||||
<artifactId>gmavenplus-plugin</artifactId>
|
||||
<version>1.5</version>
|
||||
<inherited>true</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<!-- Load postNoticeText from NOTICE file -->
|
||||
<id>read-notice</id>
|
||||
<phase>generate-sources</phase>
|
||||
<goals>
|
||||
<goal>execute</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<scripts>
|
||||
<script>
|
||||
def noticeFile = new File(project.basedir.path +
|
||||
"/NOTICE.txt");
|
||||
if (noticeFile.exists()) {
|
||||
project.properties.postNoticeText = noticeFile.text;
|
||||
}
|
||||
</script>
|
||||
</scripts>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
<dependencies>
|
||||
<!--
|
||||
- Workaround for potential conflict between Groovy version used here
|
||||
- and in projects inheriting from this POM.
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy-all</artifactId>
|
||||
<version>2.4.7</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
<version>1.7.0</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
<!-- The DEPENDENCIES and NOTICE templates are read here -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||
<inherited>true</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>process-remote-resources</id>
|
||||
<phase>generate-resources</phase>
|
||||
<goals>
|
||||
<goal>process</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<resourceBundles>
|
||||
<resourceBundle>de.tudarmstadt.ukp.dkpro.core:build-resources:1</resourceBundle>
|
||||
</resourceBundles>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<inherited>true</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>copy-license</id>
|
||||
<goals>
|
||||
<goal>copy-resources</goal>
|
||||
</goals>
|
||||
<phase>generate-resources</phase>
|
||||
<configuration>
|
||||
<outputDirectory>${project.build.outputDirectory}/META-INF</outputDirectory>
|
||||
<resources>
|
||||
<resource>
|
||||
<filtering>false</filtering>
|
||||
<directory>${basedir}</directory>
|
||||
<includes>
|
||||
<include>README.txt</include>
|
||||
<include>LICENSE.txt</include>
|
||||
</includes>
|
||||
</resource>
|
||||
</resources>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>dkpro-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<inherited>true</inherited>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<configuration>
|
||||
<updateReleaseInfo>true</updateReleaseInfo>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<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>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<configuration>
|
||||
<passphrase>${gpg.passphrase}</passphrase>
|
||||
<useAgent>${gpg.useagent}</useAgent>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>m2e</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>m2e.version</name>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<!--
|
||||
- This plugin's configuration is used to store Eclipse m2e settings only.
|
||||
- It has no influence on the Maven build itself.
|
||||
-->
|
||||
<plugin>
|
||||
<groupId>org.eclipse.m2e</groupId>
|
||||
<artifactId>lifecycle-mapping</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<configuration>
|
||||
<lifecycleMappingMetadata>
|
||||
<pluginExecutions>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.codehaus.gmavenplus</groupId>
|
||||
<artifactId>gmavenplus-plugin</artifactId>
|
||||
<versionRange>[1.5,)</versionRange>
|
||||
<goals>
|
||||
<goal>execute</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore />
|
||||
</action>
|
||||
</pluginExecution>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<versionRange>[1,)</versionRange>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore />
|
||||
</action>
|
||||
</pluginExecution>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||
<versionRange>[1.4,)</versionRange>
|
||||
<goals>
|
||||
<goal>process</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore />
|
||||
</action>
|
||||
</pluginExecution>
|
||||
</pluginExecutions>
|
||||
</lifecycleMappingMetadata>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
@@ -0,0 +1,13 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 22:07:36 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692302756242
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692302856545
|
||||
file\://${project.basedir}/lib/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692302650931
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692302856366
|
||||
file\://${project.basedir}/lib/.lastUpdated=1692302650568
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro\:dkpro-parent-pom\:pom\:15 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro\:dkpro-parent-pom\:pom\:15 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692302651076
|
||||
@@ -0,0 +1 @@
|
||||
8a3655d296d3361f51d26c6ba1a7f04950e7cf20
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 22:51:06 CEST 2023
|
||||
dkpro-parent-pom-16.pom>central=
|
||||
@@ -0,0 +1,720 @@
|
||||
<!--
|
||||
Copyright 2016
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>org.dkpro</groupId>
|
||||
<artifactId>dkpro-parent-pom</artifactId>
|
||||
<version>16</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>DKPro Parent POM</name>
|
||||
<!-- The description tag must be present for antrun to work!! -->
|
||||
<description>Parent POM for DKPro projects. This provides some basic configuration for several Maven plugins as well as useful build profiles.</description>
|
||||
<url>http://code.google.com/p/dkpro-core-asl/</url>
|
||||
<inceptionYear>2011</inceptionYear>
|
||||
<prerequisites>
|
||||
<maven>3.0.5</maven>
|
||||
</prerequisites>
|
||||
<issueManagement>
|
||||
<system>GitHub Issues</system>
|
||||
<url>https://github.com/dkpro/dkpro-parent-pom/issues</url>
|
||||
</issueManagement>
|
||||
<scm>
|
||||
<connection>scm:git:git://github.com/dkpro/dkpro-parent-pom</connection>
|
||||
<developerConnection>scm:git:git@github.com:dkpro/dkpro-parent-pom.git</developerConnection>
|
||||
<url>https://github.com/dkpro/dkpro-parent-pom</url>
|
||||
<tag>dkpro-parent-pom-16</tag>
|
||||
</scm>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.surefire.heap>512m</maven.surefire.heap>
|
||||
<maven.surefire.argLine />
|
||||
<jacoco.argLine />
|
||||
<gpg.useagent>true</gpg.useagent>
|
||||
</properties>
|
||||
<developers>
|
||||
<developer>
|
||||
<organization>DKPro Team</organization>
|
||||
<organizationUrl>https://dkpro.github.io</organizationUrl>
|
||||
</developer>
|
||||
</developers>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<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>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-clean-plugin</artifactId>
|
||||
<version>3.0.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>2.5.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>3.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.7.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>3.0.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>3.0.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>3.0.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>2.10.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-eclipse-plugin</artifactId>
|
||||
<version>2.10</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5.3</version>
|
||||
<configuration>
|
||||
<useReleaseProfile>false</useReleaseProfile>
|
||||
<arguments>${arguments} -Pdkpro-release</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.20.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.8.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>3.0.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>3.1.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>3.8</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>javancss-maven-plugin</artifactId>
|
||||
<version>2.1</version>
|
||||
<dependencies>
|
||||
<!--
|
||||
Per default depends on a jaxen version with draws in a jdom version
|
||||
that has a broken pom and does pass Artifactory's consistency checks
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>jaxen</groupId>
|
||||
<artifactId>jaxen</artifactId>
|
||||
<version>1.1.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<version>3.0.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<version>2.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.jacoco</groupId>
|
||||
<artifactId>jacoco-maven-plugin</artifactId>
|
||||
<version>0.7.9</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.8</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||
<version>1.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.4.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.rat</groupId>
|
||||
<artifactId>apache-rat-plugin</artifactId>
|
||||
<version>0.12</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<linkXref>false</linkXref>
|
||||
<showDeprecation>true</showDeprecation>
|
||||
<showWarnings>true</showWarnings>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<argLine>@{jacoco.argLine} -Xmx${maven.surefire.heap} -Xms${maven.surefire.heap}
|
||||
${maven.surefire.argLine}</argLine>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-maven</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireMavenVersion>
|
||||
<version>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</version>
|
||||
<message>Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively.</message>
|
||||
</requireMavenVersion>
|
||||
<requireMavenVersion>
|
||||
<version>(3.0.5,)</version>
|
||||
<message>Minimum Maven version required for plugins.</message>
|
||||
</requireMavenVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<extensions>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.wagon</groupId>
|
||||
<artifactId>wagon-webdav</artifactId>
|
||||
<version>1.0-beta-2</version>
|
||||
</extension>
|
||||
<extension>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>build-tools</artifactId>
|
||||
<version>4</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
</build>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>attach-javadoc</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadoc</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>attach-source</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-source</id>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>attach-test-source</id>
|
||||
<goals>
|
||||
<goal>test-jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>pmd</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>cpd</goal>
|
||||
<goal>pmd</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
|
||||
<targetJdk>${java.maven.compiler.target}</targetJdk>
|
||||
<linkXRef>false</linkXRef>
|
||||
<excludes>
|
||||
<exclude>**/type/**/*.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>javancss</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>javancss-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>report</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<linkXRef>false</linkXRef>
|
||||
<excludes>
|
||||
<exclude>**/type/**/*.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>findbugs</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>findbugs</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<findbugsXmlOutput>true</findbugsXmlOutput>
|
||||
<xmlOutput>true</xmlOutput>
|
||||
<excludeFilterFile>dkpro-core/findbugs-excludes.xml</excludeFilterFile>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>cobertura</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>cobertura-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>cobertura</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<formats>
|
||||
<format>xml</format>
|
||||
</formats>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>jacoco</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.jacoco</groupId>
|
||||
<artifactId>jacoco-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default-prepare-agent</id>
|
||||
<goals>
|
||||
<goal>prepare-agent</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<propertyName>jacoco.argLine</propertyName>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>default-report</id>
|
||||
<phase>prepare-package</phase>
|
||||
<goals>
|
||||
<goal>report</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>default-check</id>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules />
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>check-license.txt</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>check-license.txt</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
<inherited>true</inherited>
|
||||
<configuration>
|
||||
<target>
|
||||
<fail message="LICENSE.txt file is missing.">
|
||||
<condition>
|
||||
<not>
|
||||
<resourcecount count="1">
|
||||
<fileset dir="." includes="LICENSE.txt" />
|
||||
</resourcecount>
|
||||
</not>
|
||||
</condition>
|
||||
</fail>
|
||||
</target>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<!--
|
||||
- This profile takes care of copying the NOTICE, LICENSE, etc. files to the proper
|
||||
- locations.
|
||||
-->
|
||||
<id>add-license</id>
|
||||
<activation>
|
||||
<file>
|
||||
<exists>LICENSE.txt</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.gmavenplus</groupId>
|
||||
<artifactId>gmavenplus-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
<inherited>true</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<!-- Load postNoticeText from NOTICE file -->
|
||||
<id>read-notice</id>
|
||||
<phase>generate-sources</phase>
|
||||
<goals>
|
||||
<goal>execute</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<scripts>
|
||||
<script>
|
||||
def noticeFile = new File(project.basedir.path +
|
||||
"/NOTICE.txt");
|
||||
if (noticeFile.exists()) {
|
||||
project.properties.postNoticeText = noticeFile.text;
|
||||
}
|
||||
</script>
|
||||
</scripts>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
<dependencies>
|
||||
<!--
|
||||
- Workaround for potential conflict between Groovy version used here
|
||||
- and in projects inheriting from this POM.
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy-all</artifactId>
|
||||
<version>2.4.7</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
<version>1.7.0</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
<!-- The DEPENDENCIES and NOTICE templates are read here -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||
<inherited>true</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>process-remote-resources</id>
|
||||
<phase>generate-resources</phase>
|
||||
<goals>
|
||||
<goal>process</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<resourceBundles>
|
||||
<resourceBundle>de.tudarmstadt.ukp.dkpro.core:build-resources:1</resourceBundle>
|
||||
</resourceBundles>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<inherited>true</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>copy-license</id>
|
||||
<goals>
|
||||
<goal>copy-resources</goal>
|
||||
</goals>
|
||||
<phase>generate-resources</phase>
|
||||
<configuration>
|
||||
<outputDirectory>${project.build.outputDirectory}/META-INF</outputDirectory>
|
||||
<resources>
|
||||
<resource>
|
||||
<filtering>false</filtering>
|
||||
<directory>${basedir}</directory>
|
||||
<includes>
|
||||
<include>README.txt</include>
|
||||
<include>LICENSE.txt</include>
|
||||
</includes>
|
||||
</resource>
|
||||
</resources>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>dkpro-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<inherited>true</inherited>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<configuration>
|
||||
<updateReleaseInfo>true</updateReleaseInfo>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<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>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<configuration>
|
||||
<passphrase>${gpg.passphrase}</passphrase>
|
||||
<useAgent>${gpg.useagent}</useAgent>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>m2e</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>m2e.version</name>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<!--
|
||||
- This plugin's configuration is used to store Eclipse m2e settings only.
|
||||
- It has no influence on the Maven build itself.
|
||||
-->
|
||||
<plugin>
|
||||
<groupId>org.eclipse.m2e</groupId>
|
||||
<artifactId>lifecycle-mapping</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<configuration>
|
||||
<lifecycleMappingMetadata>
|
||||
<pluginExecutions>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.codehaus.gmavenplus</groupId>
|
||||
<artifactId>gmavenplus-plugin</artifactId>
|
||||
<versionRange>[1.5,)</versionRange>
|
||||
<goals>
|
||||
<goal>execute</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore />
|
||||
</action>
|
||||
</pluginExecution>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<versionRange>[1,)</versionRange>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore />
|
||||
</action>
|
||||
</pluginExecution>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||
<versionRange>[1.4,)</versionRange>
|
||||
<goals>
|
||||
<goal>process</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore />
|
||||
</action>
|
||||
</pluginExecution>
|
||||
</pluginExecutions>
|
||||
</lifecycleMappingMetadata>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
@@ -0,0 +1,13 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 22:51:06 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692305366306
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692305466642
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692305466446
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692305466578
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro\:dkpro-parent-pom\:pom\:16 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro\:dkpro-parent-pom\:pom\:16 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692305266188
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692305266044
|
||||
@@ -0,0 +1 @@
|
||||
cbe8f05a176489b7bd50fe49fb4603c9202907e2
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 22:17:39 CEST 2023
|
||||
dkpro-parent-pom-19.pom>central=
|
||||
@@ -0,0 +1,675 @@
|
||||
<!--
|
||||
Copyright 2018
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>org.dkpro</groupId>
|
||||
<artifactId>dkpro-parent-pom</artifactId>
|
||||
<version>19</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>DKPro Parent POM</name>
|
||||
<!-- The description tag must be present for antrun to work!! -->
|
||||
<description>Parent POM for DKPro projects. This provides some basic configuration for several Maven plugins as well as useful build profiles.</description>
|
||||
<url>https://dkpro.github.io</url>
|
||||
<inceptionYear>2011</inceptionYear>
|
||||
<prerequisites>
|
||||
<maven>3.2.2</maven>
|
||||
</prerequisites>
|
||||
<issueManagement>
|
||||
<system>GitHub Issues</system>
|
||||
<url>https://github.com/dkpro/dkpro-parent-pom/issues</url>
|
||||
</issueManagement>
|
||||
<scm>
|
||||
<connection>scm:git:git://github.com/dkpro/dkpro-parent-pom</connection>
|
||||
<developerConnection>scm:git:git@github.com:dkpro/dkpro-parent-pom.git</developerConnection>
|
||||
<url>https://github.com/dkpro/dkpro-parent-pom</url>
|
||||
<tag>dkpro-parent-pom-19</tag>
|
||||
</scm>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.surefire.heap>512m</maven.surefire.heap>
|
||||
<maven.surefire.argLine />
|
||||
<jacoco.argLine />
|
||||
<gpg.useagent>true</gpg.useagent>
|
||||
</properties>
|
||||
<developers>
|
||||
<developer>
|
||||
<organization>DKPro Team</organization>
|
||||
<organizationUrl>https://dkpro.github.io</organizationUrl>
|
||||
</developer>
|
||||
</developers>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<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>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-clean-plugin</artifactId>
|
||||
<version>3.0.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-install-plugin</artifactId>
|
||||
<version>2.5.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-site-plugin</artifactId>
|
||||
<version>3.7</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.7.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>3.0.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>3.0.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>3.0.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>3.0.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-eclipse-plugin</artifactId>
|
||||
<version>2.10</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5.3</version>
|
||||
<configuration>
|
||||
<useReleaseProfile>false</useReleaseProfile>
|
||||
<arguments>${arguments} -Pdkpro-release</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.21.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<version>2.8.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<version>3.0.2</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>3.1.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>3.9.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<version>3.0.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.jacoco</groupId>
|
||||
<artifactId>jacoco-maven-plugin</artifactId>
|
||||
<version>0.8.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>1.8</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||
<version>1.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.4.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.rat</groupId>
|
||||
<artifactId>apache-rat-plugin</artifactId>
|
||||
<version>0.12</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-war-plugin</artifactId>
|
||||
<version>3.1.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<version>3.0.0</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.asciidoctor</groupId>
|
||||
<artifactId>asciidoctor-maven-plugin</artifactId>
|
||||
<version>1.5.6</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.asciidoctor</groupId>
|
||||
<artifactId>asciidoctorj-pdf</artifactId>
|
||||
<version>1.5.0-alpha.16</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jruby</groupId>
|
||||
<artifactId>jruby-complete</artifactId>
|
||||
<version>9.1.16.0</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<linkXref>false</linkXref>
|
||||
<showDeprecation>true</showDeprecation>
|
||||
<showWarnings>true</showWarnings>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<argLine>@{jacoco.argLine} -Xmx${maven.surefire.heap} -Xms${maven.surefire.heap} ${maven.surefire.argLine}</argLine>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-maven</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<requireMavenVersion>
|
||||
<version>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</version>
|
||||
<message>Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively.</message>
|
||||
</requireMavenVersion>
|
||||
<requireMavenVersion>
|
||||
<version>(3.0.5,)</version>
|
||||
<message>Minimum Maven version 3.0.5 required for plugins.</message>
|
||||
</requireMavenVersion>
|
||||
<requireMavenVersion>
|
||||
<version>[3.2.2,)</version>
|
||||
<message>Minimum Maven 3.3.2 required as activation policy for profiles with multiple activation conditions changed from OR to AND.</message>
|
||||
</requireMavenVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<extensions>
|
||||
<extension>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>build-tools</artifactId>
|
||||
<version>4</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
</build>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>attach-javadoc</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadoc</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>attach-source</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-source</id>
|
||||
<goals>
|
||||
<goal>jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>attach-test-source</id>
|
||||
<goals>
|
||||
<goal>test-jar-no-fork</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>pmd</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>cpd</goal>
|
||||
<goal>pmd</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
|
||||
<targetJdk>${java.maven.compiler.target}</targetJdk>
|
||||
<linkXRef>false</linkXRef>
|
||||
<excludes>
|
||||
<exclude>**/type/**/*.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>findbugs</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>findbugs</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<findbugsXmlOutput>true</findbugsXmlOutput>
|
||||
<xmlOutput>true</xmlOutput>
|
||||
<excludeFilterFile>dkpro-core/findbugs-excludes.xml</excludeFilterFile>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>jacoco</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.jacoco</groupId>
|
||||
<artifactId>jacoco-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default-prepare-agent</id>
|
||||
<goals>
|
||||
<goal>prepare-agent</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<propertyName>jacoco.argLine</propertyName>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>default-report</id>
|
||||
<phase>prepare-package</phase>
|
||||
<goals>
|
||||
<goal>report</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>default-check</id>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules />
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>check-license.txt</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>check-license.txt</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
<inherited>true</inherited>
|
||||
<configuration>
|
||||
<target>
|
||||
<fail message="LICENSE.txt file is missing.">
|
||||
<condition>
|
||||
<not>
|
||||
<resourcecount count="1">
|
||||
<fileset dir="." includes="LICENSE.txt" />
|
||||
</resourcecount>
|
||||
</not>
|
||||
</condition>
|
||||
</fail>
|
||||
</target>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<!--
|
||||
- This profile takes care of copying the NOTICE, LICENSE, etc. files to the proper
|
||||
- locations.
|
||||
-->
|
||||
<id>add-license</id>
|
||||
<activation>
|
||||
<file>
|
||||
<exists>LICENSE.txt</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.gmavenplus</groupId>
|
||||
<artifactId>gmavenplus-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
<inherited>true</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<!-- Load postNoticeText from NOTICE file -->
|
||||
<id>read-notice</id>
|
||||
<phase>generate-sources</phase>
|
||||
<goals>
|
||||
<goal>execute</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<scripts>
|
||||
<script>
|
||||
def noticeFile = new File(project.basedir.path +
|
||||
"/NOTICE.txt");
|
||||
if (noticeFile.exists()) {
|
||||
project.properties.postNoticeText = noticeFile.text;
|
||||
}
|
||||
</script>
|
||||
</scripts>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
<dependencies>
|
||||
<!--
|
||||
- Workaround for potential conflict between Groovy version used here
|
||||
- and in projects inheriting from this POM.
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy-all</artifactId>
|
||||
<version>2.4.15</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
<version>1.9.4</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
<!-- The DEPENDENCIES and NOTICE templates are read here -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||
<inherited>true</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>process-remote-resources</id>
|
||||
<phase>generate-resources</phase>
|
||||
<goals>
|
||||
<goal>process</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<resourceBundles>
|
||||
<resourceBundle>de.tudarmstadt.ukp.dkpro.core:build-resources:1</resourceBundle>
|
||||
</resourceBundles>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<inherited>true</inherited>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>copy-license</id>
|
||||
<goals>
|
||||
<goal>copy-resources</goal>
|
||||
</goals>
|
||||
<phase>generate-resources</phase>
|
||||
<configuration>
|
||||
<outputDirectory>${project.build.outputDirectory}/META-INF</outputDirectory>
|
||||
<resources>
|
||||
<resource>
|
||||
<filtering>false</filtering>
|
||||
<directory>${basedir}</directory>
|
||||
<includes>
|
||||
<include>README.txt</include>
|
||||
<include>LICENSE.txt</include>
|
||||
</includes>
|
||||
</resource>
|
||||
</resources>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>dkpro-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<inherited>true</inherited>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<configuration>
|
||||
<updateReleaseInfo>true</updateReleaseInfo>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<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>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>attach-javadocs</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<configuration>
|
||||
<passphrase>${gpg.passphrase}</passphrase>
|
||||
<useAgent>${gpg.useagent}</useAgent>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>m2e</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>m2e.version</name>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<!--
|
||||
- This plugin's configuration is used to store Eclipse m2e settings only.
|
||||
- It has no influence on the Maven build itself.
|
||||
-->
|
||||
<plugin>
|
||||
<groupId>org.eclipse.m2e</groupId>
|
||||
<artifactId>lifecycle-mapping</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<configuration>
|
||||
<lifecycleMappingMetadata>
|
||||
<pluginExecutions>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.codehaus.gmavenplus</groupId>
|
||||
<artifactId>gmavenplus-plugin</artifactId>
|
||||
<versionRange>[1.5,)</versionRange>
|
||||
<goals>
|
||||
<goal>execute</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore />
|
||||
</action>
|
||||
</pluginExecution>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<versionRange>[1,)</versionRange>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore />
|
||||
</action>
|
||||
</pluginExecution>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||
<versionRange>[1.4,)</versionRange>
|
||||
<goals>
|
||||
<goal>process</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore />
|
||||
</action>
|
||||
</pluginExecution>
|
||||
</pluginExecutions>
|
||||
</lifecycleMappingMetadata>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
@@ -0,0 +1,13 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 22:17:39 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692303359618
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692303459810
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692303259335
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692303459750
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro\:dkpro-parent-pom\:pom\:19 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro\:dkpro-parent-pom\:pom\:19 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692303259489
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692303259189
|
||||
@@ -0,0 +1 @@
|
||||
cf8259d82961260d20b70d2cc613ad681d47f54c
|
||||
@@ -0,0 +1,5 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:50 CEST 2023
|
||||
dkpro-lab-core-0.14.0-sources.jar>central=
|
||||
dkpro-lab-core-0.14.0.jar>central=
|
||||
dkpro-lab-core-0.14.0.pom>central=
|
||||
Binary file not shown.
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 16:24:00 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692454940177
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692455040480
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692454839906
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692455040286
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-core\:jar\:sources\:0.14.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-core\:jar\:sources\:0.14.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692454840062
|
||||
+1
@@ -0,0 +1 @@
|
||||
af6a7322e98b63a3f88d46862e192ca4c8a42976
|
||||
Binary file not shown.
+15
@@ -0,0 +1,15 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:50 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692723163211
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.error=
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692725799699
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692432777724
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692396595574
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692725810656
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692719229628
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-core\:jar\:0.14.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/releases/org/dkpro/lab/dkpro-lab-core/0.14.0/dkpro-lab-core-0.14.0.jar
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-core\:jar\:0.14.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/models/org/dkpro/lab/dkpro-lab-core/0.14.0/dkpro-lab-core-0.14.0.jar
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692719231406
|
||||
@@ -0,0 +1 @@
|
||||
fdea9722eec783089abbc944c102c1c20e38b048
|
||||
@@ -0,0 +1,130 @@
|
||||
<!--
|
||||
Copyright 2011
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab</artifactId>
|
||||
<version>0.14.0</version>
|
||||
</parent>
|
||||
<artifactId>dkpro-lab-core</artifactId>
|
||||
<name>DKPro Lab - Core Platform</name>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-lang</groupId>
|
||||
<artifactId>commons-lang</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-context</artifactId>
|
||||
</dependency>
|
||||
<!--
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-expression</artifactId>
|
||||
</dependency>
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-tx</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-beans</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.safehaus.jug</groupId>
|
||||
<artifactId>jug</artifactId>
|
||||
<classifier>asl</classifier>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jfree</groupId>
|
||||
<artifactId>jfreechart</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.sf.opencsv</groupId>
|
||||
<artifactId>opencsv</artifactId>
|
||||
<version>2.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.poi</groupId>
|
||||
<artifactId>poi</artifactId>
|
||||
<version>3.14</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.xmlgraphics</groupId>
|
||||
<artifactId>xmlgraphics-commons</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.xmlgraphics</groupId>
|
||||
<artifactId>batik-svggen</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.xmlgraphics</groupId>
|
||||
<artifactId>batik-dom</artifactId>
|
||||
</dependency>
|
||||
<!--
|
||||
<dependency>
|
||||
<groupId>org.apache.xmlgraphics</groupId>
|
||||
<artifactId>batik-gvt</artifactId>
|
||||
</dependency>
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>org.apache.xmlgraphics</groupId>
|
||||
<artifactId>fop</artifactId>
|
||||
</dependency>
|
||||
<!--
|
||||
<dependency>
|
||||
<groupId>org.apache.avalon.framework</groupId>
|
||||
<artifactId>avalon-framework-impl</artifactId>
|
||||
</dependency>
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>javax.ws.rs</groupId>
|
||||
<artifactId>jsr311-api</artifactId>
|
||||
<version>1.1.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
<version>1.9.6</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-test</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:44:47 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692308586831
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692308687004
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692308486570
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692308686964
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-core\:pom\:0.14.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-core\:pom\:0.14.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692308486701
|
||||
@@ -0,0 +1 @@
|
||||
c3159a5f7a7b4e5b64d2e6f2528a62810ed8e3e6
|
||||
@@ -0,0 +1,7 @@
|
||||
#Sat Aug 19 16:24:00 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692455040481
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692455040481
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692455040481
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692455040481
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692455040481
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692455040481
|
||||
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:50 CEST 2023
|
||||
dkpro-lab-uima-engine-simple-0.14.0.pom>central=
|
||||
dkpro-lab-uima-engine-simple-0.14.0.jar>central=
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 10:41:05 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692535271176
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.error=
|
||||
@default-central-https\://repo.maven.apache.org/maven2/.lastUpdated=1692535271178
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692535271177
|
||||
@default-ukp-oss-model-releases-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692535271174
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima-engine-simple\:jar\:javadoc\:0.14.0 from/to ukp-oss-model-releases (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
@default-ukp-oss-snapshots-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692535271175
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692688820168
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692693665396
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima-engine-simple\:jar\:javadoc\:0.14.0 from/to ukp-oss-snapshots (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima-engine-simple\:jar\:javadoc\:0.14.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Network is unreachable
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima-engine-simple\:jar\:javadoc\:0.14.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Network is unreachable
|
||||
https\://repo.maven.apache.org/maven2/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima-engine-simple\:jar\:javadoc\:0.14.0 from/to central (https\://repo.maven.apache.org/maven2)\: repo.maven.apache.org
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 14:41:12 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692492975336
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.error=
|
||||
@default-central-https\://repo.maven.apache.org/maven2/.lastUpdated=1692492995361
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692492975338
|
||||
@default-ukp-oss-model-releases-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692492955316
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima-engine-simple\:jar\:sources\:0.14.0 from/to ukp-oss-model-releases (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
@default-ukp-oss-snapshots-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692492955318
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692520752566
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692535272312
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima-engine-simple\:jar\:sources\:0.14.0 from/to ukp-oss-snapshots (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima-engine-simple\:jar\:sources\:0.14.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: basa.ltl.uni-due.de
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima-engine-simple\:jar\:sources\:0.14.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: basa.ltl.uni-due.de
|
||||
https\://repo.maven.apache.org/maven2/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima-engine-simple\:jar\:sources\:0.14.0 from/to central (https\://repo.maven.apache.org/maven2)\: repo.maven.apache.org
|
||||
BIN
Binary file not shown.
+15
@@ -0,0 +1,15 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:50 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692723163229
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.error=
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692725799707
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692432777730
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692396595581
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692725810701
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692719229655
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima-engine-simple\:jar\:0.14.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/releases/org/dkpro/lab/dkpro-lab-uima-engine-simple/0.14.0/dkpro-lab-uima-engine-simple-0.14.0.jar
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima-engine-simple\:jar\:0.14.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/models/org/dkpro/lab/dkpro-lab-uima-engine-simple/0.14.0/dkpro-lab-uima-engine-simple-0.14.0.jar
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692719231417
|
||||
+1
@@ -0,0 +1 @@
|
||||
3026f08713273d142dda9ad363994f8e6903ec8b
|
||||
+60
@@ -0,0 +1,60 @@
|
||||
<!--
|
||||
Copyright 2011
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab</artifactId>
|
||||
<version>0.14.0</version>
|
||||
</parent>
|
||||
<artifactId>dkpro-lab-uima-engine-simple</artifactId>
|
||||
<name>DKPro Lab - Simple UIMA Execution Engine</name>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-uima</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimafit-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-test</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 05:12:44 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692328264048
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692328364219
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692328163785
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692328364180
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima-engine-simple\:pom\:0.14.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima-engine-simple\:pom\:0.14.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692328163918
|
||||
+1
@@ -0,0 +1 @@
|
||||
8856b73e4f6e831e6fe83c00e3041e3aadc1bac5
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
#Tue Aug 22 10:41:05 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692535272312
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|javadoc=1692693665396
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|javadoc=1692693665396
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|javadoc=1692693665396
|
||||
central|https\://repo.maven.apache.org/maven2|javadoc=1692693665396
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692535272312
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692535272312
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692535272312
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692535272312
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|javadoc=1692693665396
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|javadoc=1692693665396
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|javadoc=1692688820170
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib|javadoc=1692693665396
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|sources=1692520752567
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692535272312
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib|sources=1692535272312
|
||||
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:50 CEST 2023
|
||||
dkpro-lab-uima-0.14.0.pom>central=
|
||||
dkpro-lab-uima-0.14.0.jar>central=
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 10:41:05 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692535271160
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.error=
|
||||
@default-central-https\://repo.maven.apache.org/maven2/.lastUpdated=1692535271162
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692535271162
|
||||
@default-ukp-oss-model-releases-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692535271158
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima\:jar\:javadoc\:0.14.0 from/to ukp-oss-model-releases (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
@default-ukp-oss-snapshots-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692535271159
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692688820143
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692693665381
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima\:jar\:javadoc\:0.14.0 from/to ukp-oss-snapshots (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima\:jar\:javadoc\:0.14.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Network is unreachable
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima\:jar\:javadoc\:0.14.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Network is unreachable
|
||||
https\://repo.maven.apache.org/maven2/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima\:jar\:javadoc\:0.14.0 from/to central (https\://repo.maven.apache.org/maven2)\: repo.maven.apache.org
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 14:41:12 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692492795120
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.error=
|
||||
@default-central-https\://repo.maven.apache.org/maven2/.lastUpdated=1692492815142
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692492795124
|
||||
@default-ukp-oss-model-releases-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692492775098
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima\:jar\:sources\:0.14.0 from/to ukp-oss-model-releases (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
@default-ukp-oss-snapshots-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692492775101
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692520752552
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692535272302
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima\:jar\:sources\:0.14.0 from/to ukp-oss-snapshots (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima\:jar\:sources\:0.14.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: basa.ltl.uni-due.de
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima\:jar\:sources\:0.14.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: basa.ltl.uni-due.de
|
||||
https\://repo.maven.apache.org/maven2/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima\:jar\:sources\:0.14.0 from/to central (https\://repo.maven.apache.org/maven2)\: repo.maven.apache.org
|
||||
Binary file not shown.
+15
@@ -0,0 +1,15 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:50 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692723163229
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.error=
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692725799707
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692432777730
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692396595581
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692725810700
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692719229654
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima\:jar\:0.14.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/releases/org/dkpro/lab/dkpro-lab-uima/0.14.0/dkpro-lab-uima-0.14.0.jar
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima\:jar\:0.14.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/models/org/dkpro/lab/dkpro-lab-uima/0.14.0/dkpro-lab-uima-0.14.0.jar
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692719231416
|
||||
@@ -0,0 +1 @@
|
||||
d7ec992ba9a8ed0cb6d75703718bc0f03562e39d
|
||||
@@ -0,0 +1,41 @@
|
||||
<!--
|
||||
Copyright 2011
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab</artifactId>
|
||||
<version>0.14.0</version>
|
||||
</parent>
|
||||
<artifactId>dkpro-lab-uima</artifactId>
|
||||
<name>DKPro Lab - UIMA Support</name>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimafit-core</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 04:59:21 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692327461504
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692327561663
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692327361092
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692327561621
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima\:pom\:0.14.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab-uima\:pom\:0.14.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692327361236
|
||||
@@ -0,0 +1 @@
|
||||
d8d252071512ee8b5ba832168dcbfb885aaaa967
|
||||
@@ -0,0 +1,17 @@
|
||||
#Tue Aug 22 10:41:05 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692535272303
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|javadoc=1692693665382
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|javadoc=1692693665382
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|javadoc=1692693665382
|
||||
central|https\://repo.maven.apache.org/maven2|javadoc=1692693665382
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692535272303
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692535272303
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692535272303
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692535272303
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|javadoc=1692693665382
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|javadoc=1692693665382
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|javadoc=1692688820144
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib|javadoc=1692693665382
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|sources=1692520752554
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692535272303
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib|sources=1692535272303
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 22:47:46 CEST 2023
|
||||
dkpro-lab-0.14.0.pom>central=
|
||||
@@ -0,0 +1,712 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2011
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>org.dkpro</groupId>
|
||||
<artifactId>dkpro-parent-pom</artifactId>
|
||||
<version>16</version>
|
||||
</parent>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab</artifactId>
|
||||
<version>0.14.0</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>DKPro Lab</name>
|
||||
<url>http://dkpro.github.io/dkpro-lab/</url>
|
||||
<description>DKPro Lab is a lightweight framework for parameter sweeping experiments. It allows to set up experiments consisting of multiple interdependent tasks in a declarative manner with minimal overhead. Parameters are injected into tasks using via annotated class fields. Data produced by a task for any particular parameter configuration is stored and re-used whenever possible to avoid the needless recalculation of results. Reports can be attached to each task to post-process the experimental results and present them in a convenient manner, e.g. as tables or charts.</description>
|
||||
<issueManagement>
|
||||
<url>https://github.com/dkpro/dkpro-lab/issues</url>
|
||||
<system>GitHub Issues</system>
|
||||
</issueManagement>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>The Apache Software License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<properties>
|
||||
<uima.core.version>2.10.2</uima.core.version>
|
||||
<uima.as.version>2.8.1</uima.as.version>
|
||||
<uima.fit.version>2.4.0</uima.fit.version>
|
||||
<spring.version>3.2.16.RELEASE</spring.version>
|
||||
<activemq.version>5.13.2</activemq.version>
|
||||
<batik.version>1.9.1</batik.version>
|
||||
<slf4j.version>1.7.25</slf4j.version>
|
||||
<xalan.version>2.7.1</xalan.version>
|
||||
<xerces.version>2.9.1</xerces.version>
|
||||
</properties>
|
||||
<modules>
|
||||
<module>dkpro-lab-core</module>
|
||||
<module>dkpro-lab-groovy</module>
|
||||
<module>dkpro-lab-ml-example</module>
|
||||
<module>dkpro-lab-support-slf4j</module>
|
||||
<module>dkpro-lab-uima</module>
|
||||
<module>dkpro-lab-uima-engine-simple</module>
|
||||
<module>dkpro-lab-uima-engine-cpe</module>
|
||||
<!-- >module>dkpro-lab-uima-engine-uimaas</module -->
|
||||
<module>dkpro-lab-doc</module>
|
||||
</modules>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>ukp-oss-snapshots</id>
|
||||
<url>http://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
<!-- - For uimaFIT snapshots <repository> <id>apache.snapshots</id> <name>Apache
|
||||
Snapshot Repository</name> <url>http://repository.apache.org/snapshots</url>
|
||||
<releases> <enabled>false</enabled> </releases> </repository> -->
|
||||
</repositories>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<!-- MODULES -->
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-core</artifactId>
|
||||
<version>0.14.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-groovy</artifactId>
|
||||
<version>0.14.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-ml-example</artifactId>
|
||||
<version>0.14.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-support-slf4j</artifactId>
|
||||
<version>0.14.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-uima</artifactId>
|
||||
<version>0.14.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-uima-engine-cpe</artifactId>
|
||||
<version>0.14.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-uima-engine-simple</artifactId>
|
||||
<version>0.14.0</version>
|
||||
</dependency>
|
||||
|
||||
<!-- UIMA/UIMAFIT -->
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-core</artifactId>
|
||||
<version>${uima.core.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-cpe</artifactId>
|
||||
<version>${uima.core.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-tools</artifactId>
|
||||
<version>${uima.core.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimafit-core</artifactId>
|
||||
<version>${uima.fit.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimafit-legacy-support</artifactId>
|
||||
<version>${uima.fit.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimafit-cpe</artifactId>
|
||||
<version>${uima.fit.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- LOGGING -->
|
||||
<dependency>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging-api</artifactId>
|
||||
<version>1.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-log4j12</artifactId>
|
||||
<version>${slf4j.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>jcl-over-slf4j</artifactId>
|
||||
<version>${slf4j.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>jul-to-slf4j</artifactId>
|
||||
<version>${slf4j.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>log4j</groupId>
|
||||
<artifactId>log4j</artifactId>
|
||||
<version>1.2.17</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>mail</artifactId>
|
||||
<groupId>javax.mail</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>jms</artifactId>
|
||||
<groupId>javax.jms</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>jmxtools</artifactId>
|
||||
<groupId>com.sun.jdmk</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>jmxri</artifactId>
|
||||
<groupId>com.sun.jmx</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<!-- SPRING FRAMEWORK -->
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-core</artifactId>
|
||||
<version>${spring.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-beans</artifactId>
|
||||
<version>${spring.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-context</artifactId>
|
||||
<version>${spring.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-test</artifactId>
|
||||
<version>${spring.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-tx</artifactId>
|
||||
<version>${spring.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-jms</artifactId>
|
||||
<version>${spring.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-expression</artifactId>
|
||||
<version>${spring.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-webmvc</artifactId>
|
||||
<version>${spring.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-context-support</artifactId>
|
||||
<version>${spring.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-web</artifactId>
|
||||
<version>${spring.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- PDF RENDERING -->
|
||||
<dependency>
|
||||
<groupId>org.apache.xmlgraphics</groupId>
|
||||
<artifactId>xmlgraphics-commons</artifactId>
|
||||
<version>2.2</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.xmlgraphics</groupId>
|
||||
<artifactId>batik-svggen</artifactId>
|
||||
<version>${batik.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.xmlgraphics</groupId>
|
||||
<artifactId>batik-bridge</artifactId>
|
||||
<version>${batik.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>xalan</groupId>
|
||||
<artifactId>xalan</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.apache.xmlgraphics</groupId>
|
||||
<artifactId>batik-script</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.xmlgraphics</groupId>
|
||||
<artifactId>batik-dom</artifactId>
|
||||
<version>${batik.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>xml-apis</groupId>
|
||||
<artifactId>xml-apis</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>xml-apis</groupId>
|
||||
<artifactId>xml-apis-ext</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>xalan</groupId>
|
||||
<artifactId>xalan</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.xmlgraphics</groupId>
|
||||
<artifactId>batik-gvt</artifactId>
|
||||
<version>${batik.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.xmlgraphics</groupId>
|
||||
<artifactId>fop</artifactId>
|
||||
<version>2.1</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>xml-apis</groupId>
|
||||
<artifactId>xml-apis</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>xml-apis</groupId>
|
||||
<artifactId>xml-apis-ext</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.avalon.framework</groupId>
|
||||
<artifactId>avalon-framework-impl</artifactId>
|
||||
<version>4.3.1</version>
|
||||
</dependency>
|
||||
|
||||
<!-- XML -->
|
||||
<dependency>
|
||||
<groupId>xalan</groupId>
|
||||
<artifactId>xalan</artifactId>
|
||||
<version>${xalan.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>xalan</groupId>
|
||||
<artifactId>serializer</artifactId>
|
||||
<version>${xalan.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>xerces</groupId>
|
||||
<artifactId>xercesImpl</artifactId>
|
||||
<version>${xerces.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- MISC -->
|
||||
<dependency>
|
||||
<groupId>org.jfree</groupId>
|
||||
<artifactId>jfreechart</artifactId>
|
||||
<version>1.0.19</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-lang</groupId>
|
||||
<artifactId>commons-lang</artifactId>
|
||||
<version>2.6</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.safehaus.jug</groupId>
|
||||
<artifactId>jug</artifactId>
|
||||
<version>2.0.0</version>
|
||||
<classifier>asl</classifier>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.10</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
<version>2.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy</artifactId>
|
||||
<version>2.4.6</version>
|
||||
</dependency>
|
||||
|
||||
<!-- - UIMA-AS module does currently not work -->
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-uima-engine-uimaas</artifactId>
|
||||
<version>0.14.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-as-core</artifactId>
|
||||
<version>${uima.as.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>spring</artifactId>
|
||||
<groupId>org.springframework</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-as-jms</artifactId>
|
||||
<version>${uima.as.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>spring</artifactId>
|
||||
<groupId>org.springframework</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-as-activemq</artifactId>
|
||||
<version>${uima.as.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>spring</artifactId>
|
||||
<groupId>org.springframework</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>dom4j</groupId>
|
||||
<artifactId>dom4j</artifactId>
|
||||
<version>1.6.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.activemq</groupId>
|
||||
<artifactId>activemq-all</artifactId>
|
||||
<version>${activemq.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.activemq</groupId>
|
||||
<artifactId>activemq-core</artifactId>
|
||||
<version>${activemq.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.activemq</groupId>
|
||||
<artifactId>activemq-jaas</artifactId>
|
||||
<version>${activemq.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.activemq</groupId>
|
||||
<artifactId>activemq-web</artifactId>
|
||||
<version>${activemq.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.activemq</groupId>
|
||||
<artifactId>activemq-spring</artifactId>
|
||||
<version>${activemq.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.activemq</groupId>
|
||||
<artifactId>kahadb</artifactId>
|
||||
<version>${activemq.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
<scm>
|
||||
<connection>scm:git:https://github.com/dkpro/dkpro-lab.git</connection>
|
||||
<developerConnection>scm:git:https://github.com/dkpro/dkpro-lab.git</developerConnection>
|
||||
<url>https://github.com/dkpro/dkpro-lab</url>
|
||||
<tag>dkpro-lab-0.14.0</tag>
|
||||
</scm>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.5.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>2.19.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.rat</groupId>
|
||||
<artifactId>apache-rat-plugin</artifactId>
|
||||
<version>0.11</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<version>1.10</version>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<notimestamp>true</notimestamp>
|
||||
<!-- Exclude UIMA types -->
|
||||
<excludePackageNames>*.type</excludePackageNames>
|
||||
<groups>
|
||||
<group>
|
||||
<title>Core framework</title>
|
||||
<packages>org.dkpro.lab*</packages>
|
||||
</group>
|
||||
<group>
|
||||
<title>UIMA support</title>
|
||||
<packages>org.dkpro.lab.uima*</packages>
|
||||
</group>
|
||||
<group>
|
||||
<title>Groovy support</title>
|
||||
<packages>org.dkpro.lab.groovy*</packages>
|
||||
</group>
|
||||
<group>
|
||||
<title>Examples</title>
|
||||
<packages>org.dkpro.lab.ml.example*</packages>
|
||||
</group>
|
||||
<group>
|
||||
<title>Internal APIs - not for public use</title>
|
||||
<packages>org.dkpro.lab.engine.impl*:org.dkpro.lab.logging.impl*:org.dkpro.lab.resteasy*:org.dkpro.lab.storage.filesystem*</packages>
|
||||
</group>
|
||||
<!-- <group> <title>EXPERIMENTAL - may not be useful at all</title>
|
||||
<packages>org.dkpro.lab.uima.engine.uimaas*</packages> </group> -->
|
||||
</groups>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>enforce-java</id>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<rules>
|
||||
<!-- - Currently does not build on JDK 8 - See: https://code.google.com/p/dkpro-lab/issues/detail?id=52
|
||||
- - Min: DKPro Core 1.6.0 requires Java 7 - Max: Currently does not build
|
||||
on Java 8 -->
|
||||
<requireJavaVersion>
|
||||
<version>[1.7.0,)</version>
|
||||
</requireJavaVersion>
|
||||
</rules>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<!-- Used while still deploying to UKP OSS repository -->
|
||||
<extensions>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.wagon</groupId>
|
||||
<artifactId>wagon-webdav</artifactId>
|
||||
<version>1.0-beta-2</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
</build>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>groovy</id>
|
||||
<activation>
|
||||
<file>
|
||||
<exists>src/main/groovy</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<compilerId>groovy-eclipse-compiler</compilerId>
|
||||
<verbose>true</verbose>
|
||||
</configuration>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy-eclipse-compiler</artifactId>
|
||||
<version>2.9.2-01</version>
|
||||
</dependency>
|
||||
<!-- Need to add this new dependency in Groovy 2.8.0+ http://groovy.codehaus.org/Groovy-Eclipse+2.8.0+New+and+Noteworthy -->
|
||||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy-eclipse-batch</artifactId>
|
||||
<version>2.4.3-01</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>build-helper-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>add-source</id>
|
||||
<phase>generate-sources</phase>
|
||||
<goals>
|
||||
<goal>add-source</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<sources>
|
||||
<source>src/main/groovy</source>
|
||||
</sources>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>add-test-source</id>
|
||||
<phase>generate-test-sources</phase>
|
||||
<goals>
|
||||
<goal>add-test-source</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<sources>
|
||||
<source>src/test/groovy</source>
|
||||
</sources>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>rat-check</id>
|
||||
<activation>
|
||||
<file>
|
||||
<exists>src/main</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.rat</groupId>
|
||||
<artifactId>apache-rat-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<!-- release generated artifact -->
|
||||
<exclude>release.properties</exclude>
|
||||
<exclude>CHANGES</exclude>
|
||||
<exclude>NOTICE</exclude>
|
||||
<exclude>README</exclude>
|
||||
<exclude>**/.gitignore</exclude>
|
||||
<exclude>src/main/resources/**/*</exclude>
|
||||
<exclude>src/test/resources/**/*</exclude>
|
||||
<!-- generated JCas wrappers -->
|
||||
<exclude>src/main/java/**/type/**/*</exclude>
|
||||
<!-- Eclipse meta data -->
|
||||
<exclude>.springBeans</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>m2e</id>
|
||||
<activation>
|
||||
<property>
|
||||
<name>m2e.version</name>
|
||||
</property>
|
||||
</activation>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.m2e</groupId>
|
||||
<artifactId>lifecycle-mapping</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<configuration>
|
||||
<lifecycleMappingMetadata>
|
||||
<pluginExecutions>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<versionRange>[1,)</versionRange>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore />
|
||||
</action>
|
||||
</pluginExecution>
|
||||
</pluginExecutions>
|
||||
</lifecycleMappingMetadata>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
<organization>
|
||||
<url>https://www.ukp.tu-darmstadt.de/</url>
|
||||
<name>Ubiquitous Knowledge Processing (UKP) Lab, Technische Universität Darmstadt</name>
|
||||
</organization>
|
||||
</project>
|
||||
@@ -0,0 +1,13 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 22:47:46 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692305165728
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692305266033
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692305265854
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692305265987
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab\:pom\:0.14.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.lab\:dkpro-lab\:pom\:0.14.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692305065607
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692305065453
|
||||
@@ -0,0 +1 @@
|
||||
eb16dc1fc421ba7fd980668be41ed76051802a00
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 01:02:13 CEST 2023
|
||||
dkpro-similarity-algorithms-api-asl-2.3.0-sources.jar>central=
|
||||
dkpro-similarity-algorithms-api-asl-2.3.0.pom>central=
|
||||
dkpro-similarity-algorithms-api-asl-2.3.0.jar>central=
|
||||
BIN
Binary file not shown.
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 01:02:13 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692486032770
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692486133061
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692485932280
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692486132911
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-api-asl\:jar\:sources\:2.3.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-api-asl\:jar\:sources\:2.3.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692485932603
|
||||
+1
@@ -0,0 +1 @@
|
||||
6a267ff88563dc807528b8633e5f4575c9bc63a9
|
||||
BIN
Binary file not shown.
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 23:56:20 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692393182748
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692395780002
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692391079530
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692395300421
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-api-asl\:jar\:2.3.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-api-asl\:jar\:2.3.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692391080778
|
||||
+1
@@ -0,0 +1 @@
|
||||
49860dc9dc87f48ea66789b71611efee281e0aef
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
<!--
|
||||
Copyright 2012
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-asl</artifactId>
|
||||
<version>2.3.0</version>
|
||||
<relativePath>../dkpro-similarity-asl</relativePath>
|
||||
</parent>
|
||||
<artifactId>dkpro-similarity-algorithms-api-asl</artifactId>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-document-annotation</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimafit-core</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 19:42:46 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692380466062
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692380566451
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692380365695
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692380566179
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-api-asl\:pom\:2.3.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-api-asl\:pom\:2.3.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692380365857
|
||||
+1
@@ -0,0 +1 @@
|
||||
681b1c6b0384b189b5f1f41431d6c440e356f7bd
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
#Sun Aug 20 01:02:13 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692486133062
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692486133062
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692486133062
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692486133062
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692486133062
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692486133062
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 01:05:33 CEST 2023
|
||||
dkpro-similarity-algorithms-lexical-asl-2.3.0.pom>central=
|
||||
dkpro-similarity-algorithms-lexical-asl-2.3.0.jar>central=
|
||||
dkpro-similarity-algorithms-lexical-asl-2.3.0-sources.jar>central=
|
||||
BIN
Binary file not shown.
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 01:05:33 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692486233502
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692486333988
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692486133247
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692486333627
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-lexical-asl\:jar\:sources\:2.3.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-lexical-asl\:jar\:sources\:2.3.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692486133388
|
||||
+1
@@ -0,0 +1 @@
|
||||
aed246389c14131c7416683f6bade8ba406f3bb2
|
||||
BIN
Binary file not shown.
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 23:56:20 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692393182748
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692395780002
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692391079530
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692395300421
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-lexical-asl\:jar\:2.3.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-lexical-asl\:jar\:2.3.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692391080779
|
||||
+1
@@ -0,0 +1 @@
|
||||
759189f78c0084f1b5ae4932c8aa952dd6f25563
|
||||
+86
@@ -0,0 +1,86 @@
|
||||
<!--
|
||||
Copyright 2012
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>
|
||||
<artifactId>dkpro-similarity-asl</artifactId>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<version>2.3.0</version>
|
||||
<relativePath>../dkpro-similarity-asl</relativePath>
|
||||
</parent>
|
||||
<artifactId>dkpro-similarity-algorithms-lexical-asl</artifactId>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-algorithms-api-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-algorithms-vsm-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.resources-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.frequency-asl
|
||||
</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.googlecode.matrix-toolkits-java</groupId>
|
||||
<artifactId>mtj</artifactId>
|
||||
<version>1.0.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.github.mpkorstanje</groupId>
|
||||
<artifactId>simmetrics-core</artifactId>
|
||||
<version>4.1.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-uima-core-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimafit-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.wcohen</groupId>
|
||||
<artifactId>com.wcohen.secondstring</artifactId>
|
||||
<version>0.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 19:46:12 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692380671870
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692380772276
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692380566610
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692380772007
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-lexical-asl\:pom\:2.3.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-lexical-asl\:pom\:2.3.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692380566758
|
||||
+1
@@ -0,0 +1 @@
|
||||
dc6428ce1d80eae4bb117de38b04b080d6df6f8f
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
#Sun Aug 20 01:05:33 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692486333988
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692486333988
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692486333988
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692486333988
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692486333988
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692486333988
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 01:08:55 CEST 2023
|
||||
dkpro-similarity-algorithms-vsm-asl-2.3.0-sources.jar>central=
|
||||
dkpro-similarity-algorithms-vsm-asl-2.3.0.pom>central=
|
||||
dkpro-similarity-algorithms-vsm-asl-2.3.0.jar>central=
|
||||
BIN
Binary file not shown.
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 01:08:55 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692486434423
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692486535117
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692486334155
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692486534543
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-vsm-asl\:jar\:sources\:2.3.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-vsm-asl\:jar\:sources\:2.3.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692486334296
|
||||
+1
@@ -0,0 +1 @@
|
||||
e93c4286dbb205ab2687de687a70adbfe7e46875
|
||||
BIN
Binary file not shown.
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 23:56:20 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692393182748
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692395780002
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692391079531
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692395300421
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-vsm-asl\:jar\:2.3.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-vsm-asl\:jar\:2.3.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692391080779
|
||||
+1
@@ -0,0 +1 @@
|
||||
26259b5ccb8ad1478cb63d9ea6f20da1c413d6f8
|
||||
+85
@@ -0,0 +1,85 @@
|
||||
<!--
|
||||
Copyright 2012
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>
|
||||
<artifactId>dkpro-similarity-asl</artifactId>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<version>2.3.0</version>
|
||||
<relativePath>../dkpro-similarity-asl</relativePath>
|
||||
</parent>
|
||||
<artifactId>dkpro-similarity-algorithms-vsm-asl</artifactId>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-algorithms-api-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-uima-core-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.googlecode.matrix-toolkits-java</groupId>
|
||||
<artifactId>mtj</artifactId>
|
||||
<version>1.0.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sleepycat</groupId>
|
||||
<artifactId>je</artifactId>
|
||||
<version>4.0.92</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.ant</groupId>
|
||||
<artifactId>ant</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-core</artifactId>
|
||||
<version>3.5.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.parameter-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimafit-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 19:49:33 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692380872686
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692380973087
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692380772418
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692380972794
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-vsm-asl\:pom\:2.3.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-algorithms-vsm-asl\:pom\:2.3.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692380772564
|
||||
+1
@@ -0,0 +1 @@
|
||||
16c3d4c9b8de86ec11b6f7daa201e56d64cd8953
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
#Sun Aug 20 01:08:55 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692486535118
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692486535118
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692486535118
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692486535118
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692486535118
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692486535118
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 22:54:27 CEST 2023
|
||||
dkpro-similarity-asl-2.3.0.pom>central=
|
||||
+155
@@ -0,0 +1,155 @@
|
||||
<!--
|
||||
Copyright 2012
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity</artifactId>
|
||||
<version>2.3.0</version>
|
||||
</parent>
|
||||
<name>DKPro Similarity ASL</name>
|
||||
<artifactId>dkpro-similarity-asl</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-algorithms-api-asl</artifactId>
|
||||
<version>2.3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-algorithms-core-asl</artifactId>
|
||||
<version>2.3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-algorithms-lexical-asl</artifactId>
|
||||
<version>2.3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-algorithms-sound-asl</artifactId>
|
||||
<version>2.3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-algorithms-structure-asl</artifactId>
|
||||
<version>2.3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-algorithms-style-asl</artifactId>
|
||||
<version>2.3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-algorithms-vsm-asl</artifactId>
|
||||
<version>2.3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-algorithms-wikipedia-asl</artifactId>
|
||||
<version>2.3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-uima-api-asl</artifactId>
|
||||
<version>2.3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-uima-core-asl</artifactId>
|
||||
<version>2.3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-uima-data-asl</artifactId>
|
||||
<version>2.3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-uima-io-asl</artifactId>
|
||||
<version>2.3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-algorithms-lsr-asl</artifactId>
|
||||
<version>2.3.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
<modules>
|
||||
<module>../dkpro-similarity-algorithms-api-asl</module>
|
||||
<module>../dkpro-similarity-algorithms-core-asl</module>
|
||||
<module>../dkpro-similarity-algorithms-lexical-asl</module>
|
||||
<module>../dkpro-similarity-algorithms-sound-asl</module>
|
||||
<module>../dkpro-similarity-algorithms-structure-asl</module>
|
||||
<module>../dkpro-similarity-algorithms-style-asl</module>
|
||||
<module>../dkpro-similarity-algorithms-vsm-asl</module>
|
||||
<module>../dkpro-similarity-algorithms-wikipedia-asl</module>
|
||||
<module>../dkpro-similarity-uima-api-asl</module>
|
||||
<module>../dkpro-similarity-uima-core-asl</module>
|
||||
<module>../dkpro-similarity-uima-data-asl</module>
|
||||
<module>../dkpro-similarity-uima-io-asl</module>
|
||||
<module>../dkpro-similarity-uima-vsm-asl</module>
|
||||
</modules>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.rat</groupId>
|
||||
<artifactId>apache-rat-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>.activate-run-jcasgen</exclude>
|
||||
<exclude>.gitignore</exclude>
|
||||
<!-- maven config files -->
|
||||
<exclude>src/filter/**/*</exclude>
|
||||
<!-- release generated artifact -->
|
||||
<exclude>release.properties</exclude>
|
||||
<exclude>CHANGES</exclude>
|
||||
<exclude>NOTICE</exclude>
|
||||
<exclude>README</exclude>
|
||||
<exclude>src/main/resources/**/*</exclude>
|
||||
<exclude>src/test/resources/**/*</exclude>
|
||||
<!-- generated JCas wrappers -->
|
||||
<exclude>src/main/java/**/type/**/*</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<profiles>
|
||||
<profile>
|
||||
<!-- Profile for modules with dependencies that are not on Maven Central -->
|
||||
<id>deps-not-on-maven-central</id>
|
||||
<modules>
|
||||
<module>../dkpro-similarity-algorithms-lsr-asl</module>
|
||||
</modules>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 22:54:27 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692305566940
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692305667678
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692305667398
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692305667548
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-asl\:pom\:2.3.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-asl\:pom\:2.3.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692305466796
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692305466651
|
||||
+1
@@ -0,0 +1 @@
|
||||
c371b4fafd39a60213c0b02391d9751ca919f72e
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 01:22:19 CEST 2023
|
||||
dkpro-similarity-uima-api-asl-2.3.0.pom>central=
|
||||
dkpro-similarity-uima-api-asl-2.3.0.jar>central=
|
||||
dkpro-similarity-uima-api-asl-2.3.0-sources.jar>central=
|
||||
BIN
Binary file not shown.
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 01:22:19 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692487238878
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692487339134
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692487138603
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692487338991
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-uima-api-asl\:jar\:sources\:2.3.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-uima-api-asl\:jar\:sources\:2.3.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692487138748
|
||||
+1
@@ -0,0 +1 @@
|
||||
d681ad6d5783e06495166523be63dfa4127b5168
|
||||
BIN
Binary file not shown.
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 23:56:20 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692393182748
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692395780003
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692391079531
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692395300422
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-uima-api-asl\:jar\:2.3.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-uima-api-asl\:jar\:2.3.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692391080780
|
||||
+1
@@ -0,0 +1 @@
|
||||
4fb66400f0f47ab22b5d7f1fe0e320de6cdbb8b2
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
<!--
|
||||
Copyright 2012
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-asl</artifactId>
|
||||
<version>2.3.0</version>
|
||||
<relativePath>../dkpro-similarity-asl</relativePath>
|
||||
</parent>
|
||||
<artifactId>dkpro-similarity-uima-api-asl</artifactId>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-core</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 19:56:14 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692381274317
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692381374707
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692381174056
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692381374494
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-uima-api-asl\:pom\:2.3.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-uima-api-asl\:pom\:2.3.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692381174199
|
||||
+1
@@ -0,0 +1 @@
|
||||
21336e2d528ee81bff46ac7efe21d7b18f14e682
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
#Sun Aug 20 01:22:19 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692487339135
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692487339135
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692487339135
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692487339135
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692487339135
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692487339135
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 01:18:58 CEST 2023
|
||||
dkpro-similarity-uima-core-asl-2.3.0.jar>central=
|
||||
dkpro-similarity-uima-core-asl-2.3.0.pom>central=
|
||||
dkpro-similarity-uima-core-asl-2.3.0-sources.jar>central=
|
||||
BIN
Binary file not shown.
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 01:18:58 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692487038006
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692487138443
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692486937574
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692487138132
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-uima-core-asl\:jar\:sources\:2.3.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-uima-core-asl\:jar\:sources\:2.3.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692486937879
|
||||
+1
@@ -0,0 +1 @@
|
||||
acdcbd8c9cc321f08917c3cf2e705ae859fe14eb
|
||||
BIN
Binary file not shown.
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 23:56:20 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692393182748
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692395780003
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692391079531
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692395300422
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-uima-core-asl\:jar\:2.3.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-uima-core-asl\:jar\:2.3.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692391080780
|
||||
+1
@@ -0,0 +1 @@
|
||||
19729278eee64e6bb9ed02c091a48c91d55b420d
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
<!--
|
||||
Copyright 2012
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-asl</artifactId>
|
||||
<version>2.3.0</version>
|
||||
<relativePath>../dkpro-similarity-asl</relativePath>
|
||||
</parent>
|
||||
<artifactId>dkpro-similarity-uima-core-asl</artifactId>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-uima-api-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.featurepath-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.metadata-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-algorithms-api-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimafit-core</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 19:52:53 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692381073522
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692381173913
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692380973250
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692381173870
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-uima-core-asl\:pom\:2.3.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity-uima-core-asl\:pom\:2.3.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692380973402
|
||||
+1
@@ -0,0 +1 @@
|
||||
4b4268ff0ace8753b8056b368ccb2b6600b72533
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
#Sun Aug 20 01:18:58 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692487138444
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692487138444
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692487138444
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692487138444
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692487138444
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692487138444
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 22:24:21 CEST 2023
|
||||
dkpro-similarity-2.2.0.pom>central=
|
||||
+178
@@ -0,0 +1,178 @@
|
||||
<!-- Copyright 2012 Ubiquitous Knowledge Processing (UKP) Lab Technische
|
||||
Universität Darmstadt Licensed under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
||||
Unless required by applicable law or agreed to in writing, software distributed
|
||||
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
|
||||
OR CONDITIONS OF ANY KIND, either express or implied. See the License for
|
||||
the specific language governing permissions and limitations under the License. -->
|
||||
<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>
|
||||
<artifactId>dkpro-parent-pom</artifactId>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<version>10</version>
|
||||
</parent>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity</artifactId>
|
||||
<version>2.2.0</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>DKPro Similarity</name>
|
||||
<url>https://dkpro.github.io/dkpro-similarity/</url>
|
||||
<inceptionYear>2012</inceptionYear>
|
||||
<description>DKPro Similarity is an open source framework for text similarity. Our goal is to provide a comprehensive repository of text similarity measures which are implemented using standardized interfaces. The framework is designed to complement DKPro Core, a collection of software components for natural language processing based on the Apache UIMA framework. </description>
|
||||
<properties>
|
||||
<dkpro.core.version>1.7.0</dkpro.core.version>
|
||||
</properties>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core-asl</artifactId>
|
||||
<version>${dkpro.core.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core-gpl</artifactId>
|
||||
<version>${dkpro.core.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-codec</groupId>
|
||||
<artifactId>commons-codec</artifactId>
|
||||
<version>1.6</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-collections</groupId>
|
||||
<artifactId>commons-collections</artifactId>
|
||||
<version>3.2.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-math</artifactId>
|
||||
<version>2.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>nz.ac.waikato.cms.weka</groupId>
|
||||
<artifactId>weka-dev</artifactId>
|
||||
<version>3.7.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>xerces</groupId>
|
||||
<artifactId>xercesImpl</artifactId>
|
||||
<version>2.9.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>xalan</groupId>
|
||||
<artifactId>xalan</artifactId>
|
||||
<version>2.7.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>xalan</groupId>
|
||||
<artifactId>serializer</artifactId>
|
||||
<version>2.7.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>uk.ac.shef.wit.simmetrics</groupId>
|
||||
<artifactId>simmetrics</artifactId>
|
||||
<version>1.6.2.20070207</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
<build>
|
||||
<extensions>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.wagon</groupId>
|
||||
<artifactId>wagon-webdav</artifactId>
|
||||
<version>1.0-beta-2</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
<plugins>
|
||||
<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>true</autoReleaseAfterClose>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign-artifacts</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
<configuration>
|
||||
<autoVersionSubmodules>true</autoVersionSubmodules>
|
||||
<useReleaseProfile>false</useReleaseProfile>
|
||||
<releaseProfiles>release</releaseProfiles>
|
||||
<goals>deploy</goals>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
<version>2.2.1</version>
|
||||
<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> <!-- add this to disable checking -->
|
||||
<additionalparam>-Xdoclint:none</additionalparam>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<modules>
|
||||
<module>dkpro-similarity-asl</module>
|
||||
<module>dkpro-similarity-gpl</module>
|
||||
</modules>
|
||||
<scm>
|
||||
<url>https://github.com/dkpro/dkpro-similarity</url>
|
||||
<connection>scm:git:git://github.com/dkpro/dkpro-similarity.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:dkpro/dkpro-similarity.git</developerConnection>
|
||||
<tag>dkpro-similarity-2.2.0</tag>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>GitHub</system>
|
||||
<url>https://github.com/dkpro/dkpro-similarity/issues</url>
|
||||
</issueManagement>
|
||||
<organization>
|
||||
<name>Ubiquitous Knowledge Processing (UKP) Lab, Technische Universität Darmstadt</name>
|
||||
<url>https://www.ukp.tu-darmstadt.de/</url>
|
||||
</organization>
|
||||
</project>
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 22:24:21 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692303761335
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692303861581
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692303661080
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692303861442
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity\:pom\:2.2.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity\:pom\:2.2.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692303661224
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692303660932
|
||||
+1
@@ -0,0 +1 @@
|
||||
13d227cdc4bfce5f5558a342305d31bbd023f948
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 22:57:48 CEST 2023
|
||||
dkpro-similarity-2.3.0.pom>central=
|
||||
+190
@@ -0,0 +1,190 @@
|
||||
<!--
|
||||
Copyright 2012
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>org.dkpro</groupId>
|
||||
<artifactId>dkpro-parent-pom</artifactId>
|
||||
<version>19</version>
|
||||
</parent>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity</artifactId>
|
||||
<version>2.3.0</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>DKPro Similarity</name>
|
||||
<url>https://dkpro.github.io/dkpro-similarity/</url>
|
||||
<inceptionYear>2012</inceptionYear>
|
||||
<description>DKPro Similarity is an open source framework for text similarity. Our goal is to provide a comprehensive repository of text similarity measures which are implemented using standardized interfaces. The framework is designed to complement DKPro Core, a collection of software components for natural language processing based on the Apache UIMA framework. </description>
|
||||
<organization>
|
||||
<name>Ubiquitous Knowledge Processing (UKP) Lab, Technische Universität Darmstadt</name>
|
||||
<url>https://www.ukp.tu-darmstadt.de/</url>
|
||||
</organization>
|
||||
<modules>
|
||||
<module>dkpro-similarity-asl</module>
|
||||
<module>dkpro-similarity-gpl</module>
|
||||
</modules>
|
||||
<scm>
|
||||
<url>https://github.com/dkpro/dkpro-similarity</url>
|
||||
<connection>scm:git:git://github.com/dkpro/dkpro-similarity.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:dkpro/dkpro-similarity.git</developerConnection>
|
||||
<tag>dkpro-similarity-2.3.0</tag>
|
||||
</scm>
|
||||
<issueManagement>
|
||||
<system>GitHub</system>
|
||||
<url>https://github.com/dkpro/dkpro-similarity/issues</url>
|
||||
</issueManagement>
|
||||
<properties>
|
||||
<dkpro.core.version>1.9.1</dkpro.core.version>
|
||||
</properties>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>ukp-oss-model-releases</id>
|
||||
<url>http://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local</url>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core-asl</artifactId>
|
||||
<version>${dkpro.core.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core-gpl</artifactId>
|
||||
<version>${dkpro.core.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-codec</groupId>
|
||||
<artifactId>commons-codec</artifactId>
|
||||
<version>1.11</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-collections</groupId>
|
||||
<artifactId>commons-collections</artifactId>
|
||||
<version>3.2.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-collections4</artifactId>
|
||||
<version>4.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-math</artifactId>
|
||||
<version>2.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-math3</artifactId>
|
||||
<version>3.6.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>nz.ac.waikato.cms.weka</groupId>
|
||||
<artifactId>weka-dev</artifactId>
|
||||
<version>3.7.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>xerces</groupId>
|
||||
<artifactId>xercesImpl</artifactId>
|
||||
<version>2.9.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>xalan</groupId>
|
||||
<artifactId>xalan</artifactId>
|
||||
<version>2.7.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>xalan</groupId>
|
||||
<artifactId>serializer</artifactId>
|
||||
<version>2.7.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<notimestamp>true</notimestamp>
|
||||
<!-- Exclude UIMA types and internal API -->
|
||||
<excludePackageNames>*.internal.*</excludePackageNames>
|
||||
<sourceFileExcludes>
|
||||
<exclude>**/*_Type.java</exclude>
|
||||
</sourceFileExcludes>
|
||||
<tags>
|
||||
<tag>
|
||||
<name>generated</name>
|
||||
<placement>X</placement>
|
||||
</tag>
|
||||
<tag>
|
||||
<name>ordered</name>
|
||||
<placement>X</placement>
|
||||
</tag>
|
||||
<tag>
|
||||
<name>modifiable</name>
|
||||
<placement>X</placement>
|
||||
</tag>
|
||||
</tags>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<profiles>
|
||||
<profile>
|
||||
<!-- Profile for modules with dependencies that are not on Maven Central -->
|
||||
<id>deps-not-on-maven-central</id>
|
||||
<modules>
|
||||
<module>dkpro-similarity-experiments</module>
|
||||
</modules>
|
||||
<properties>
|
||||
<lsr.version>0.8.1</lsr.version>
|
||||
</properties>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>ukp-oss-releases</id>
|
||||
<url>http://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-releases</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-context</artifactId>
|
||||
<version>3.2.16.RELEASE</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.lexsemresource</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.lexsemresource-asl</artifactId>
|
||||
<version>${lsr.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 22:57:48 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692305767992
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692305868411
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692305868116
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692305868368
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity\:pom\:2.3.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.similarity\:dkpro-similarity\:pom\:2.3.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692305667837
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692305667683
|
||||
+1
@@ -0,0 +1 @@
|
||||
126c03f2bc66aa6d80b3363e7ca7cb4300cb2be1
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:50 CEST 2023
|
||||
dkpro-statistics-agreement-2.1.0.jar>central=
|
||||
dkpro-statistics-agreement-2.1.0-sources.jar>central=
|
||||
dkpro-statistics-agreement-2.1.0.pom>central=
|
||||
BIN
Binary file not shown.
+13
@@ -0,0 +1,13 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 12:15:42 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692440041898
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692440142234
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692439941640
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692440142020
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.statistics\:dkpro-statistics-agreement\:jar\:sources\:2.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.statistics\:dkpro-statistics-agreement\:jar\:sources\:2.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692439941776
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692439941419
|
||||
+1
@@ -0,0 +1 @@
|
||||
122e7da2ae05387bf9161001faa78817d0670cc7
|
||||
BIN
Binary file not shown.
+15
@@ -0,0 +1,15 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:50 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692723163208
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.error=
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692725799698
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692432777723
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692396595573
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692725810648
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692719229627
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.statistics\:dkpro-statistics-agreement\:jar\:2.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/releases/org/dkpro/statistics/dkpro-statistics-agreement/2.1.0/dkpro-statistics-agreement-2.1.0.jar
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.statistics\:dkpro-statistics-agreement\:jar\:2.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/models/org/dkpro/statistics/dkpro-statistics-agreement/2.1.0/dkpro-statistics-agreement-2.1.0.jar
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692719231404
|
||||
+1
@@ -0,0 +1 @@
|
||||
cd063f82457e01ac1d3954c8f254221ecefdfe92
|
||||
+38
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2015
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>
|
||||
|
||||
<artifactId>dkpro-statistics-agreement</artifactId>
|
||||
<name>DKPro Agreement</name>
|
||||
|
||||
<parent>
|
||||
<groupId>org.dkpro.statistics</groupId>
|
||||
<artifactId>dkpro-statistics</artifactId>
|
||||
<version>2.1.0</version>
|
||||
</parent>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
</project>
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:11:18 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692306578264
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692306678739
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692306477985
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692306678595
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.statistics\:dkpro-statistics-agreement\:pom\:2.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.statistics\:dkpro-statistics-agreement\:pom\:2.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692306478130
|
||||
+1
@@ -0,0 +1 @@
|
||||
3ed9d02980334051e98c4a034e086261143a5f11
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
#Sat Aug 19 12:15:42 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692440142235
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692440142235
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692440142235
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692440142235
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|sources=1692440142235
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692440142235
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692440142235
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:50 CEST 2023
|
||||
dkpro-statistics-correlation-2.1.0-sources.jar>central=
|
||||
dkpro-statistics-correlation-2.1.0.jar>central=
|
||||
dkpro-statistics-correlation-2.1.0.pom>central=
|
||||
BIN
Binary file not shown.
+13
@@ -0,0 +1,13 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 12:19:03 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692440242729
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692440343017
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692440142443
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692440342854
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.statistics\:dkpro-statistics-correlation\:jar\:sources\:2.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.statistics\:dkpro-statistics-correlation\:jar\:sources\:2.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692440142614
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692440142245
|
||||
+1
@@ -0,0 +1 @@
|
||||
c5c14aef1fd3f733d94c60a6c1d757181c777dd2
|
||||
BIN
Binary file not shown.
+15
@@ -0,0 +1,15 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:50 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692723163209
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.error=
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692725799698
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692432777724
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692396595574
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692725810650
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692719229627
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.statistics\:dkpro-statistics-correlation\:jar\:2.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/releases/org/dkpro/statistics/dkpro-statistics-correlation/2.1.0/dkpro-statistics-correlation-2.1.0.jar
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.statistics\:dkpro-statistics-correlation\:jar\:2.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/models/org/dkpro/statistics/dkpro-statistics-correlation/2.1.0/dkpro-statistics-correlation-2.1.0.jar
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692719231405
|
||||
+1
@@ -0,0 +1 @@
|
||||
c2cc3c45bc747650a0318d6baec8452468fe5753
|
||||
+56
@@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2015
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>
|
||||
|
||||
<artifactId>dkpro-statistics-correlation</artifactId>
|
||||
<name>DKPro Correlation</name>
|
||||
|
||||
<parent>
|
||||
<groupId>org.dkpro.statistics</groupId>
|
||||
<artifactId>dkpro-statistics</artifactId>
|
||||
<version>2.1.0</version>
|
||||
</parent>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging-api</artifactId>
|
||||
<version>1.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-math</artifactId>
|
||||
<version>2.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-lang</groupId>
|
||||
<artifactId>commons-lang</artifactId>
|
||||
<version>2.6</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:21:23 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692307182776
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692307283011
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692307082509
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692307282962
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.statistics\:dkpro-statistics-correlation\:pom\:2.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.statistics\:dkpro-statistics-correlation\:pom\:2.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692307082646
|
||||
+1
@@ -0,0 +1 @@
|
||||
9318ece3c2f8809da56707bdd1b395f73d95e7a0
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
#Sat Aug 19 12:19:03 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692440343017
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692440343017
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692440343017
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692440343017
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|sources=1692440343017
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692440343017
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692440343017
|
||||
@@ -0,0 +1,3 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:14:41 CEST 2023
|
||||
dkpro-statistics-2.1.0.pom>central=
|
||||
+160
@@ -0,0 +1,160 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright 2015
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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>
|
||||
|
||||
<groupId>org.dkpro.statistics</groupId>
|
||||
<artifactId>dkpro-statistics</artifactId>
|
||||
<version>2.1.0</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>DKPro Statistics</name>
|
||||
<url>http://dkpro.org/statistics/</url>
|
||||
<description>DKPro Statistics is a collection of open-licensed statistical tools, currently including inter-rater agreement, correlation, and significance measures.</description>
|
||||
|
||||
<organization>
|
||||
<name>Ubiquitous Knowledge Processing (UKP) Lab</name>
|
||||
<url>http://www.ukp.tu-darmstadt.de/</url>
|
||||
</organization>
|
||||
<developers>
|
||||
<developer>
|
||||
<id>chmeyer.de</id>
|
||||
<name>Christian M. Meyer</name>
|
||||
<email>chmeyer.de@gmail.com</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>ChristianStab</id>
|
||||
<name>Christian Stab</name>
|
||||
<email>zemes@gmx.de</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<id>RolandKluge</id>
|
||||
<name>Roland Kluge</name>
|
||||
<email>mail@roland-kluge.de</email>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<parent>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>dkpro-parent-pom</artifactId>
|
||||
<version>11</version>
|
||||
</parent>
|
||||
|
||||
<modules>
|
||||
<module>dkpro-statistics-agreement</module>
|
||||
<module>dkpro-statistics-correlation</module>
|
||||
<module>dkpro-statistics-significance</module>
|
||||
</modules>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:git://github.com/dkpro/dkpro-statistics</connection>
|
||||
<developerConnection>scm:git:git@github.com:dkpro/dkpro-statistics.git</developerConnection>
|
||||
<url>https://github.com/dkpro/dkpro-statistics</url>
|
||||
<tag>dkpro-statistics-2.1.0</tag>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.10</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>rat-check</id>
|
||||
<activation>
|
||||
<file><exists>src/main/java</exists></file>
|
||||
</activation>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.rat</groupId>
|
||||
<artifactId>apache-rat-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default</id>
|
||||
<phase>verify</phase>
|
||||
<goals><goal>check</goal></goals>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>.gitignore</exclude>
|
||||
<!-- release generated artifact -->
|
||||
<exclude>release.properties</exclude>
|
||||
<exclude>CHANGES.txt</exclude>
|
||||
<exclude>NOTICE.txt</exclude>
|
||||
<exclude>README.txt</exclude>
|
||||
<exclude>src/main/resources/**/*</exclude>
|
||||
<exclude>src/test/resources/**/*</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-release-plugin</artifactId>
|
||||
<version>2.5</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.4</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-enforcer-plugin</artifactId>
|
||||
<version>1.3.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<additionalparam>-Xdoclint:none</additionalparam>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
<extensions>
|
||||
<extension>
|
||||
<groupId>org.apache.maven.wagon</groupId>
|
||||
<artifactId>wagon-webdav</artifactId>
|
||||
<version>1.0-beta-2</version>
|
||||
</extension>
|
||||
</extensions>
|
||||
</build>
|
||||
</project>
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Thu Aug 17 23:14:41 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692306779201
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692306881774
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692306678902
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692306881639
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.statistics\:dkpro-statistics\:pom\:2.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.statistics\:dkpro-statistics\:pom\:2.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692306679064
|
||||
+1
@@ -0,0 +1 @@
|
||||
5ade2a3f13272bbece04e7a773cbc36d2cb87232
|
||||
@@ -0,0 +1,5 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:50 CEST 2023
|
||||
dkpro-tc-api-features-1.1.0.jar>central=
|
||||
dkpro-tc-api-features-1.1.0.pom>central=
|
||||
dkpro-tc-api-features-1.1.0-sources.jar>central=
|
||||
BIN
Binary file not shown.
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 12:39:40 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692441480170
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692441580423
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692441379886
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692441580297
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-api-features\:jar\:sources\:1.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-api-features\:jar\:sources\:1.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692441380025
|
||||
+1
@@ -0,0 +1 @@
|
||||
4ca8a4670a36408b038324c441f10b985ed6b4ae
|
||||
BIN
Binary file not shown.
+15
@@ -0,0 +1,15 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:50 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692723163229
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.error=
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692725799707
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692432777730
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692396595582
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692725810701
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692719229655
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-api-features\:jar\:1.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/releases/org/dkpro/tc/dkpro-tc-api-features/1.1.0/dkpro-tc-api-features-1.1.0.jar
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-api-features\:jar\:1.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/models/org/dkpro/tc/dkpro-tc-api-features/1.1.0/dkpro-tc-api-features-1.1.0.jar
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692719231417
|
||||
+1
@@ -0,0 +1 @@
|
||||
16f078574863078e78332cac71b07ab836f9f51b
|
||||
+68
@@ -0,0 +1,68 @@
|
||||
<!--
|
||||
Copyright 2019
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc</artifactId>
|
||||
<version>1.1.0</version>
|
||||
</parent>
|
||||
<artifactId>dkpro-tc-api-features</artifactId>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.resources-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-lang</groupId>
|
||||
<artifactId>commons-lang</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimafit-core</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 04:39:17 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692326257744
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692326357998
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692326157474
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692326357876
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-api-features\:pom\:1.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-api-features\:pom\:1.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692326157617
|
||||
+1
@@ -0,0 +1 @@
|
||||
b447b041e60ceaf196d960843b338ee7f6389208
|
||||
@@ -0,0 +1,7 @@
|
||||
#Sat Aug 19 12:39:40 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692441580423
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692441580423
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692441580423
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692441580423
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692441580423
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692441580423
|
||||
@@ -0,0 +1,5 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:50 CEST 2023
|
||||
dkpro-tc-api-1.1.0.pom>central=
|
||||
dkpro-tc-api-1.1.0.jar>central=
|
||||
dkpro-tc-api-1.1.0-sources.jar>central=
|
||||
Binary file not shown.
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 12:36:19 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692441279485
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692441379753
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692441179247
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692441379617
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-api\:jar\:sources\:1.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-api\:jar\:sources\:1.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692441179376
|
||||
@@ -0,0 +1 @@
|
||||
5677772995d2597e8489cda17d50e104012fafc8
|
||||
Binary file not shown.
@@ -0,0 +1,15 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:50 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692723163230
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.error=
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692725799708
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692432777729
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692396595580
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692725810703
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692719229657
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-api\:jar\:1.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/releases/org/dkpro/tc/dkpro-tc-api/1.1.0/dkpro-tc-api-1.1.0.jar
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-api\:jar\:1.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/models/org/dkpro/tc/dkpro-tc-api/1.1.0/dkpro-tc-api-1.1.0.jar
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692719231418
|
||||
@@ -0,0 +1 @@
|
||||
f1a67f9aea9526fe2bb5b2c98b9ddbf451cdc576
|
||||
@@ -0,0 +1,39 @@
|
||||
<!--
|
||||
Copyright 2019
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc</artifactId>
|
||||
<version>1.1.0</version>
|
||||
</parent>
|
||||
<artifactId>dkpro-tc-api</artifactId>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-core</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 04:35:57 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692326057158
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692326157328
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692325956885
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692326157290
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-api\:pom\:1.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-api\:pom\:1.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692325957030
|
||||
@@ -0,0 +1 @@
|
||||
c94c65473e54e791b88cda22e9f2446afdfdca4e
|
||||
@@ -0,0 +1,7 @@
|
||||
#Sat Aug 19 12:36:19 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692441379753
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692441379753
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692441379753
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692441379753
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692441379753
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692441379753
|
||||
@@ -0,0 +1,4 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:50 CEST 2023
|
||||
dkpro-tc-core-1.1.0.pom>central=
|
||||
dkpro-tc-core-1.1.0.jar>central=
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 10:41:05 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692535271127
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.error=
|
||||
@default-central-https\://repo.maven.apache.org/maven2/.lastUpdated=1692535271130
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692535271129
|
||||
@default-ukp-oss-model-releases-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692535271125
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-core\:jar\:javadoc\:1.1.0 from/to ukp-oss-model-releases (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
@default-ukp-oss-snapshots-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692535271126
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692688820131
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692693665366
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-core\:jar\:javadoc\:1.1.0 from/to ukp-oss-snapshots (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-core\:jar\:javadoc\:1.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Network is unreachable
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-core\:jar\:javadoc\:1.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Network is unreachable
|
||||
https\://repo.maven.apache.org/maven2/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-core\:jar\:javadoc\:1.1.0 from/to central (https\://repo.maven.apache.org/maven2)\: repo.maven.apache.org
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 14:41:12 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692492614897
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.error=
|
||||
@default-central-https\://repo.maven.apache.org/maven2/.lastUpdated=1692492634922
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692492614899
|
||||
@default-ukp-oss-model-releases-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692492594872
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-core\:jar\:sources\:1.1.0 from/to ukp-oss-model-releases (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
@default-ukp-oss-snapshots-http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692492594875
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692520752538
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692535272293
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-core\:jar\:sources\:1.1.0 from/to ukp-oss-snapshots (http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/)\: zoidberg.ukp.informatik.tu-darmstadt.de
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-core\:jar\:sources\:1.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: basa.ltl.uni-due.de
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-core\:jar\:sources\:1.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: basa.ltl.uni-due.de
|
||||
https\://repo.maven.apache.org/maven2/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-core\:jar\:sources\:1.1.0 from/to central (https\://repo.maven.apache.org/maven2)\: repo.maven.apache.org
|
||||
Binary file not shown.
@@ -0,0 +1,15 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Tue Aug 22 19:36:50 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692723163227
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.error=
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692725799706
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692432777730
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib/.lastUpdated=1692396595580
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692725810698
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692719229653
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-core\:jar\:1.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/releases/org/dkpro/tc/dkpro-tc-core/1.1.0/dkpro-tc-core-1.1.0.jar
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-core\:jar\:1.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Transfer failed for http\://basa.ltl.uni-due.de\:34001/artifactory/models/org/dkpro/tc/dkpro-tc-core/1.1.0/dkpro-tc-core-1.1.0.jar
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692719231416
|
||||
@@ -0,0 +1 @@
|
||||
762112048d2e0e29c437ba5a7d39e6816ff3156f
|
||||
@@ -0,0 +1,138 @@
|
||||
<!--
|
||||
Copyright 2019
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc</artifactId>
|
||||
<version>1.1.0</version>
|
||||
</parent>
|
||||
<artifactId>dkpro-tc-core</artifactId>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-api-features</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.metadata-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.segmentation-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.lexmorph-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.tokit-asl</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.io.bincas-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.io.text-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-uima</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.groovy</groupId>
|
||||
<artifactId>groovy</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
<artifactId>gson</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-uima-engine-simple</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimafit-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-compress</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.maven</groupId>
|
||||
<artifactId>maven-model</artifactId>
|
||||
<version>3.0.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>log4j</groupId>
|
||||
<artifactId>log4j</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<configuration>
|
||||
<usedDependencies>
|
||||
<!-- Dependencies on DKPro Lab engines are not detected by byte-code analysis -->
|
||||
<usedDependency>org.dkpro.lab:dkpro-lab-uima-engine-simple</usedDependency>
|
||||
</usedDependencies>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
||||
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 04:32:36 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692325856560
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692325956732
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692325756304
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692325956686
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-core\:pom\:1.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-core\:pom\:1.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692325756427
|
||||
@@ -0,0 +1 @@
|
||||
11e11ad42aead6b3a892ac37b631aceb06af53ad
|
||||
@@ -0,0 +1,17 @@
|
||||
#Tue Aug 22 10:41:05 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692535272294
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|javadoc=1692693665366
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|javadoc=1692693665366
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|javadoc=1692693665366
|
||||
central|https\://repo.maven.apache.org/maven2|javadoc=1692693665366
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692535272294
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692535272294
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692535272294
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692535272294
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|javadoc=1692693665366
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|javadoc=1692693665366
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|javadoc=1692688820133
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib|javadoc=1692693665366
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|sources=1692520752541
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692535272294
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.features/lib|sources=1692535272294
|
||||
@@ -0,0 +1,16 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Sep 24 13:28:13 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1695554792735
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1695554892821
|
||||
http\://maven.vaadin.com/vaadin-addons/.lastUpdated=1695554893243
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://maven.vaadin.com/vaadin-addons/.error=
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1695554893395
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1695554692505
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-core\:pom\:1.10.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-core\:pom\:1.10.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://maven.vaadin.com/vaadin-prereleases/.error=
|
||||
https\://repo.maven.apache.org/maven2/.error=
|
||||
http\://maven.vaadin.com/vaadin-prereleases/.lastUpdated=1695554893024
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1695554692645
|
||||
@@ -0,0 +1,5 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Aug 20 10:39:12 CEST 2023
|
||||
dkpro-tc-examples-1.1.0-20190227.162102-85.pom>ukp-oss-snapshots=
|
||||
dkpro-tc-examples-1.1.0-20190227.162102-85.jar>ukp-oss-snapshots=
|
||||
dkpro-tc-examples-1.1.0-20190227.162102-85-sources.jar>ukp-oss-snapshots=
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
0ea962e16fce48b3ea0150ff615f79d1b7deac38
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
778e903e025fe0d0ed2052bbbe22bf3bc79706a9
|
||||
+295
@@ -0,0 +1,295 @@
|
||||
<!--
|
||||
|
||||
Copyright 2019
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see http://www.gnu.org/licenses/.
|
||||
|
||||
-->
|
||||
<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.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc</artifactId>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>dkpro-tc-examples</artifactId>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>GNU General Public License (GPL), Version 3.0</name>
|
||||
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-api-features</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-features</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-features-ngram</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-features-pair</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-features-pair-similarity</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-io</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-io-libsvm</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-crfsuite</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-deeplearning4j</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-dynet</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-keras</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-liblinear</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-libsvm</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-svmhmm</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-vowpalwabbit</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-weka</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-xgboost</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>nz.ac.waikato.cms.weka</groupId>
|
||||
<artifactId>weka-dev</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.sf.meka</groupId>
|
||||
<artifactId>meka</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimafit-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>
|
||||
de.tudarmstadt.ukp.dkpro.core.api.frequency-asl
|
||||
</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.metadata-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.io.tei-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.io.text-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.opennlp-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.segmentation-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.lexmorph-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.io-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.resources-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.opennlp-model-tagger-de-maxent</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.opennlp-model-tagger-en-maxent</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.tokit-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-algorithms-lexical-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.deeplearning4j</groupId>
|
||||
<artifactId>deeplearning4j-nlp</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.deeplearning4j</groupId>
|
||||
<artifactId>deeplearning4j-nn</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.nd4j</groupId>
|
||||
<artifactId>nd4j-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.nd4j</groupId>
|
||||
<artifactId>nd4j-common</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.nd4j</groupId>
|
||||
<artifactId>nd4j-buffer</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.nd4j</groupId>
|
||||
<artifactId>nd4j-native-platform</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>it.unimi.dsi</groupId>
|
||||
<artifactId>fastutil</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
<artifactId>gson</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.unidue.ltl.evaluation</groupId>
|
||||
<artifactId>ltlab-evaluation-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.unidue.ltl.evaluation</groupId>
|
||||
<artifactId>ltlab-evaluation-measures</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-compress</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.opennlp-asl</artifactId>
|
||||
<version>${dkpro.core.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.arktools-gpl</artifactId>
|
||||
<version>${dkpro.core.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
<properties>
|
||||
<!-- This module should not be deployed to the repository -->
|
||||
<maven.deploy.skip>true</maven.deploy.skip>
|
||||
</properties>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<configuration>
|
||||
<usedDependencies>
|
||||
<!-- Models not detected by byte-code analysis -->
|
||||
<usedDependency>de.tudarmstadt.ukp.dkpro.core:de.tudarmstadt.ukp.dkpro.core.opennlp-model-tagger-de-maxent</usedDependency>
|
||||
<usedDependency>de.tudarmstadt.ukp.dkpro.core:de.tudarmstadt.ukp.dkpro.core.opennlp-model-tagger-en-maxent</usedDependency>
|
||||
<!-- Needed when running DL4j experiments -->
|
||||
<usedDependency>org.nd4j:nd4j-native-platform</usedDependency>
|
||||
</usedDependencies>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 00:18:31 CEST 2023
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692397111318
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692397111440
|
||||
file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib/.lastUpdated=1692397111247
|
||||
+1
@@ -0,0 +1 @@
|
||||
636fb07423e1cecd93dd65972763024f1ae2aabd
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
+295
@@ -0,0 +1,295 @@
|
||||
<!--
|
||||
|
||||
Copyright 2019
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see http://www.gnu.org/licenses/.
|
||||
|
||||
-->
|
||||
<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.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc</artifactId>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>dkpro-tc-examples</artifactId>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>GNU General Public License (GPL), Version 3.0</name>
|
||||
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-api-features</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-features</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-features-ngram</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-features-pair</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-features-pair-similarity</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-io</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-io-libsvm</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-crfsuite</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-deeplearning4j</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-dynet</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-keras</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-liblinear</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-libsvm</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-svmhmm</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-vowpalwabbit</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-weka</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-ml-xgboost</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>nz.ac.waikato.cms.weka</groupId>
|
||||
<artifactId>weka-dev</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.sf.meka</groupId>
|
||||
<artifactId>meka</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.lab</groupId>
|
||||
<artifactId>dkpro-lab-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimafit-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>
|
||||
de.tudarmstadt.ukp.dkpro.core.api.frequency-asl
|
||||
</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.metadata-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.io.tei-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.io.text-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.opennlp-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.segmentation-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.lexmorph-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.io-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.resources-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.opennlp-model-tagger-de-maxent</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.opennlp-model-tagger-en-maxent</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.tokit-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.similarity</groupId>
|
||||
<artifactId>dkpro-similarity-algorithms-lexical-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.deeplearning4j</groupId>
|
||||
<artifactId>deeplearning4j-nlp</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.deeplearning4j</groupId>
|
||||
<artifactId>deeplearning4j-nn</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.nd4j</groupId>
|
||||
<artifactId>nd4j-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.nd4j</groupId>
|
||||
<artifactId>nd4j-common</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.nd4j</groupId>
|
||||
<artifactId>nd4j-buffer</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.nd4j</groupId>
|
||||
<artifactId>nd4j-native-platform</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>it.unimi.dsi</groupId>
|
||||
<artifactId>fastutil</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
<artifactId>gson</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.unidue.ltl.evaluation</groupId>
|
||||
<artifactId>ltlab-evaluation-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.unidue.ltl.evaluation</groupId>
|
||||
<artifactId>ltlab-evaluation-measures</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-compress</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.opennlp-asl</artifactId>
|
||||
<version>${dkpro.core.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.arktools-gpl</artifactId>
|
||||
<version>${dkpro.core.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
<properties>
|
||||
<!-- This module should not be deployed to the repository -->
|
||||
<maven.deploy.skip>true</maven.deploy.skip>
|
||||
</properties>
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-dependency-plugin</artifactId>
|
||||
<configuration>
|
||||
<usedDependencies>
|
||||
<!-- Models not detected by byte-code analysis -->
|
||||
<usedDependency>de.tudarmstadt.ukp.dkpro.core:de.tudarmstadt.ukp.dkpro.core.opennlp-model-tagger-de-maxent</usedDependency>
|
||||
<usedDependency>de.tudarmstadt.ukp.dkpro.core:de.tudarmstadt.ukp.dkpro.core.opennlp-model-tagger-en-maxent</usedDependency>
|
||||
<!-- Needed when running DL4j experiments -->
|
||||
<usedDependency>org.nd4j:nd4j-native-platform</usedDependency>
|
||||
</usedDependencies>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
#Sun Aug 20 10:39:12 CEST 2023
|
||||
ltl-snapshots|http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots|sources=1692520752527
|
||||
ukp-oss-model-releases|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local|sources=1692520752527
|
||||
ukp-oss-snapshots|http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/|sources=1692520752527
|
||||
ltl-model|http\://basa.ltl.uni-due.de\:34001/artifactory/models|sources=1692520752527
|
||||
data-local|file\:///home/felix/Documents/work/hiwi/iwm-tuebingen/escrito-stuff/escrito/de.unidue.ltl.escrito/de.unidue.ltl.escrito.languagetool/lib|sources=1692520752527
|
||||
central|https\://repo.maven.apache.org/maven2|sources=1692520752527
|
||||
ltl-releases|http\://basa.ltl.uni-due.de\:34001/artifactory/releases|sources=1692520752527
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata modelVersion="1.1.0">
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-examples</artifactId>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
<versioning>
|
||||
<snapshot>
|
||||
<timestamp>20190227.162102</timestamp>
|
||||
<buildNumber>85</buildNumber>
|
||||
</snapshot>
|
||||
<lastUpdated>20190227162104</lastUpdated>
|
||||
<snapshotVersions>
|
||||
<snapshotVersion>
|
||||
<classifier>javadoc</classifier>
|
||||
<extension>jar</extension>
|
||||
<value>1.1.0-20190227.162102-85</value>
|
||||
<updated>20190227162102</updated>
|
||||
</snapshotVersion>
|
||||
<snapshotVersion>
|
||||
<classifier>sources</classifier>
|
||||
<extension>jar</extension>
|
||||
<value>1.1.0-20190227.162102-85</value>
|
||||
<updated>20190227162102</updated>
|
||||
</snapshotVersion>
|
||||
<snapshotVersion>
|
||||
<extension>jar</extension>
|
||||
<value>1.1.0-20190227.162102-85</value>
|
||||
<updated>20190227162102</updated>
|
||||
</snapshotVersion>
|
||||
<snapshotVersion>
|
||||
<extension>pom</extension>
|
||||
<value>1.1.0-20190227.162102-85</value>
|
||||
<updated>20190227162102</updated>
|
||||
</snapshotVersion>
|
||||
<snapshotVersion>
|
||||
<classifier>test-sources</classifier>
|
||||
<extension>jar</extension>
|
||||
<value>1.1.0-20190227.162102-85</value>
|
||||
<updated>20190227162102</updated>
|
||||
</snapshotVersion>
|
||||
</snapshotVersions>
|
||||
</versioning>
|
||||
</metadata>
|
||||
+1
@@ -0,0 +1 @@
|
||||
892285828bd549b6a052e52f0b95ec662e073765
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Sep 15 17:00:48 CEST 2023
|
||||
maven-metadata-ukp-oss-model-releases.xml.error=
|
||||
maven-metadata-data-local.xml.lastUpdated=1694790048150
|
||||
maven-metadata-ukp-oss-snapshots.xml.lastUpdated=1694790048152
|
||||
maven-metadata-ukp-oss-model-releases.xml.lastUpdated=1694790048152
|
||||
maven-metadata-ltl-snapshots.xml.error=Could not transfer metadata org.dkpro.tc\:dkpro-tc-examples\:1.1.0-SNAPSHOT/maven-metadata.xml from/to ltl-snapshots (http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots)\: Connect timed out
|
||||
maven-metadata-data-local.xml.error=
|
||||
maven-metadata-ltl-snapshots.xml/@default-ltl-snapshots-http\://basa.ltl.uni-due.de\:34001/artifactory/snapshots/.lastUpdated=1694790048153
|
||||
@@ -0,0 +1,5 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 12:29:38 CEST 2023
|
||||
dkpro-tc-features-ngram-1.1.0.pom>central=
|
||||
dkpro-tc-features-ngram-1.1.0.jar>central=
|
||||
dkpro-tc-features-ngram-1.1.0-sources.jar>central=
|
||||
BIN
Binary file not shown.
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Sat Aug 19 12:29:38 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692440878155
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692440978463
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692440777891
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692440978276
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-features-ngram\:jar\:sources\:1.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-features-ngram\:jar\:sources\:1.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692440778015
|
||||
+1
@@ -0,0 +1 @@
|
||||
170307e763cd0e8b255480535c58e42ef90950ac
|
||||
BIN
Binary file not shown.
+11
@@ -0,0 +1,11 @@
|
||||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
|
||||
#Fri Aug 18 23:56:19 CEST 2023
|
||||
@default-ltl-releases-http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.lastUpdated=1692393182740
|
||||
https\://repo.maven.apache.org/maven2/.lastUpdated=1692395779982
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.lastUpdated=1692391079521
|
||||
@default-ltl-model-http\://basa.ltl.uni-due.de\:34001/artifactory/models/.lastUpdated=1692395300406
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/releases/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-features-ngram\:jar\:1.1.0 from/to ltl-releases (http\://basa.ltl.uni-due.de\:34001/artifactory/releases)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-model-releases-local/.error=
|
||||
http\://basa.ltl.uni-due.de\:34001/artifactory/models/.error=Could not transfer artifact org.dkpro.tc\:dkpro-tc-features-ngram\:jar\:1.1.0 from/to ltl-model (http\://basa.ltl.uni-due.de\:34001/artifactory/models)\: Connect timed out
|
||||
http\://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-snapshots/.lastUpdated=1692391080764
|
||||
+1
@@ -0,0 +1 @@
|
||||
3637a2d08fd4eaa68f103514708c44587d835ae7
|
||||
+142
@@ -0,0 +1,142 @@
|
||||
<!--
|
||||
Copyright 2019
|
||||
Ubiquitous Knowledge Processing (UKP) Lab
|
||||
Technische Universität Darmstadt
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<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.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc</artifactId>
|
||||
<version>1.1.0</version>
|
||||
</parent>
|
||||
<artifactId>dkpro-tc-features-ngram</artifactId>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License, Version 2.0</name>
|
||||
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-api</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-api-features</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.dkpro.tc</groupId>
|
||||
<artifactId>dkpro-tc-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.ngrams-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.frequency-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.featurepath-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.lexmorph-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.metadata-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.resources-asl</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.segmentation-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.api.parameter-asl</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.io.text-asl</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.tokit-asl</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.tudarmstadt.ukp.dkpro.core</groupId>
|
||||
<artifactId>de.tudarmstadt.ukp.dkpro.core.opennlp-asl</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.lucene</groupId>
|
||||
<artifactId>lucene-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.googlecode.combinatoricslib</groupId>
|
||||
<artifactId>combinatoricslib</artifactId>
|
||||
<version>2.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-codec</groupId>
|
||||
<artifactId>commons-codec</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimafit-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-lang</groupId>
|
||||
<artifactId>commons-lang</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.uima</groupId>
|
||||
<artifactId>uimaj-core</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
<artifactId>gson</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user