-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3f305d5
commit ea3a931
Showing
56 changed files
with
2,469 additions
and
0 deletions.
There are no files selected for viewing
Binary file added
BIN
+191 KB
docs/jcenter-mirror/de.dfki.lt.jtok/jtok-core/1.9.3/jtok-core-1.9.3-javadoc.jar
Binary file not shown.
Binary file added
BIN
+93.5 KB
docs/jcenter-mirror/de.dfki.lt.jtok/jtok-core/1.9.3/jtok-core-1.9.3-sources.jar
Binary file not shown.
Binary file added
BIN
+87 KB
docs/jcenter-mirror/de.dfki.lt.jtok/jtok-core/1.9.3/jtok-core-1.9.3.jar
Binary file not shown.
245 changes: 245 additions & 0 deletions
245
docs/jcenter-mirror/de.dfki.lt.jtok/jtok-core/1.9.3/jtok-core-1.9.3.pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,245 @@ | ||
<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>de.dfki.lt.jtok</groupId> | ||
<artifactId>jtok-core</artifactId> | ||
<version>1.9.3</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>JTok</name> | ||
<description>tokenizer and sentence splitter</description> | ||
|
||
<scm> | ||
<url>http://heartofgold.opendfki.de/browser/trunk/jtok</url> | ||
</scm> | ||
|
||
<organization> | ||
<name>German Research Center for Artificial Intelligence (DFKI)</name> | ||
<url>http://www.dfki.de/</url> | ||
</organization> | ||
|
||
<licenses> | ||
<license> | ||
<name>GNU Lesser General Public License (LGPL) in version 2.1 or higher</name> | ||
<url>http://www.gnu.org/licenses/#LGPL</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
||
<issueManagement> | ||
<system>Trac</system> | ||
<url>http://heartofgold.opendfki.de/wiki/TracSupport</url> | ||
</issueManagement> | ||
|
||
<developers> | ||
<developer> | ||
<id>steffen</id> | ||
<name>Joerg Steffen</name> | ||
<email>[email protected]</email> | ||
<url>http://www.dfki.de/~steffen/</url> | ||
<organization>German Research Center for Artificial Intelligence (DFKI)</organization> | ||
<organizationUrl>http://www.dfki.de/</organizationUrl> | ||
<roles> | ||
<role>architect</role> | ||
<role>developer</role> | ||
</roles> | ||
<timezone>+1</timezone> | ||
</developer> | ||
</developers> | ||
|
||
<distributionManagement> | ||
<repository> | ||
<id>dfki.lt.releases</id> | ||
<name>DFKI LT Lab Release Distribution Repository</name> | ||
<url>dav:${lt.repositories.base}releases</url> | ||
</repository> | ||
<snapshotRepository> | ||
<id>dfki.lt.snapshots</id> | ||
<name>DFKI LT Lab Snapshot Distribution Repository</name> | ||
<url>dav:${lt.repositories.base}snapshots</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<lt.repositories.base>http://www.dfki.de/intern/lt/maven/content/repositories/</lt.repositories.base> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.8.2</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>1.6.1</version> | ||
<type>jar</type> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
<version>1.2.16</version> | ||
<type>jar</type> | ||
<scope>runtime</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-log4j12</artifactId> | ||
<version>1.6.1</version> | ||
<type>jar</type> | ||
<scope>runtime</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
</resource> | ||
<resource> | ||
<directory>${basedir}</directory> | ||
<includes> | ||
<include>LICENSE.txt</include> | ||
<include>NOTICE.txt</include> | ||
</includes> | ||
<targetPath>META-INF</targetPath> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.3.2</version> | ||
<configuration> | ||
<source>1.6</source> | ||
<target>1.6</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>2.1.2</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.7</version> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>appassembler-maven-plugin</artifactId> | ||
<version>1.1.1</version> | ||
<configuration> | ||
<!-- Set the target configuration directory to be used in the bin | ||
scripts --> | ||
<configurationDirectory>conf</configurationDirectory> | ||
<!-- Include the target configuration directory in the beginning | ||
of the classpath declaration in the bin scripts --> | ||
<includeConfigurationDirectoryInClasspath>true</includeConfigurationDirectoryInClasspath> | ||
<!-- Configure repository --> | ||
<generateRepository>false</generateRepository> | ||
<repositoryName>lib</repositoryName> | ||
<repositoryLayout>flat</repositoryLayout> | ||
<!-- Generate bin scripts for windows and unix per default --> | ||
<platforms> | ||
<platform>windows</platform> | ||
<platform>unix</platform> | ||
</platforms> | ||
<programs> | ||
<program> | ||
<mainClass>de.dfki.lt.tools.tokenizer.JTok</mainClass> | ||
<name>tokenize</name> | ||
</program> | ||
<program> | ||
<mainClass>de.dfki.lt.tools.tokenizer.output.XMLOutputter</mainClass> | ||
<name>tokenixe</name> | ||
</program> | ||
</programs> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>appassembler</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>assemble</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>com.google.code.maven-replacer-plugin</groupId> | ||
<artifactId>maven-replacer-plugin</artifactId> | ||
<version>1.3.9</version> | ||
<executions> | ||
<execution> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>replace</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<!-- fix appassembler scripts to use shorter classpaths --> | ||
<includes> | ||
<include>target/appassembler/bin/*</include> | ||
</includes> | ||
<regex>false</regex> | ||
<replacements> | ||
<replacement> | ||
<token>"%REPO%"\</token> | ||
<value>..\lib\</value> | ||
</replacement> | ||
<replacement> | ||
<token>"%BASEDIR%"\</token> | ||
<value>..\</value> | ||
</replacement> | ||
<replacement> | ||
<token>"$REPO"/</token> | ||
<value>../lib/</value> | ||
</replacement> | ||
<replacement> | ||
<token>"$BASEDIR"/</token> | ||
<value>../</value> | ||
</replacement> | ||
</replacements> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<configuration> | ||
<descriptors> | ||
<descriptor>src/main/assembly/bin.xml</descriptor> | ||
</descriptors> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
<extensions> | ||
<extension> | ||
<groupId>org.apache.maven.wagon</groupId> | ||
<artifactId>wagon-webdav</artifactId> | ||
<version>1.0-beta-2</version> | ||
</extension> | ||
</extensions> | ||
</build> | ||
</project> |
Binary file added
BIN
+48.9 KB
...mirror/de.dfki.mary/emotionml-checker-java/1.2.2/emotionml-checker-java-1.2.2-javadoc.jar
Binary file not shown.
Binary file added
BIN
+12.2 KB
...mirror/de.dfki.mary/emotionml-checker-java/1.2.2/emotionml-checker-java-1.2.2-sources.jar
Binary file not shown.
Binary file added
BIN
+20.1 KB
...jcenter-mirror/de.dfki.mary/emotionml-checker-java/1.2.2/emotionml-checker-java-1.2.2.jar
Binary file not shown.
100 changes: 100 additions & 0 deletions
100
...nter-mirror/de.dfki.mary/emotionml-checker-java/1.2.2/emotionml-checker-java-1.2.2.module
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
{ | ||
"formatVersion": "1.1", | ||
"component": { | ||
"group": "de.dfki.mary", | ||
"module": "emotionml-checker-java", | ||
"version": "1.2.2", | ||
"attributes": { | ||
"org.gradle.status": "release" | ||
} | ||
}, | ||
"createdBy": { | ||
"gradle": { | ||
"version": "7.3.3" | ||
} | ||
}, | ||
"variants": [ | ||
{ | ||
"name": "apiElements", | ||
"attributes": { | ||
"org.gradle.category": "library", | ||
"org.gradle.dependency.bundling": "external", | ||
"org.gradle.jvm.version": 8, | ||
"org.gradle.libraryelements": "jar", | ||
"org.gradle.usage": "java-api" | ||
}, | ||
"files": [ | ||
{ | ||
"name": "emotionml-checker-java-1.2.2.jar", | ||
"url": "emotionml-checker-java-1.2.2.jar", | ||
"size": 20546, | ||
"sha512": "523b8bd02296c4394318058754c04fc425c481d8832e9f54806c645c625bfa385c0f61278f8d946f2d41dd4a1b6c8911091246be9b8d39522463d8d270302777", | ||
"sha256": "585757b3dee5d84b120140aadc02cde8fe0692f1253180605cdacf12e6125d2c", | ||
"sha1": "dcb9d1f789ec362bbfb3b45e61463951915b7b64", | ||
"md5": "a4b667f9415539b1668de1a1f820146c" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "runtimeElements", | ||
"attributes": { | ||
"org.gradle.category": "library", | ||
"org.gradle.dependency.bundling": "external", | ||
"org.gradle.jvm.version": 8, | ||
"org.gradle.libraryelements": "jar", | ||
"org.gradle.usage": "java-runtime" | ||
}, | ||
"files": [ | ||
{ | ||
"name": "emotionml-checker-java-1.2.2.jar", | ||
"url": "emotionml-checker-java-1.2.2.jar", | ||
"size": 20546, | ||
"sha512": "523b8bd02296c4394318058754c04fc425c481d8832e9f54806c645c625bfa385c0f61278f8d946f2d41dd4a1b6c8911091246be9b8d39522463d8d270302777", | ||
"sha256": "585757b3dee5d84b120140aadc02cde8fe0692f1253180605cdacf12e6125d2c", | ||
"sha1": "dcb9d1f789ec362bbfb3b45e61463951915b7b64", | ||
"md5": "a4b667f9415539b1668de1a1f820146c" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "sourcesElements", | ||
"attributes": { | ||
"org.gradle.category": "documentation", | ||
"org.gradle.dependency.bundling": "external", | ||
"org.gradle.docstype": "sources", | ||
"org.gradle.usage": "java-runtime" | ||
}, | ||
"files": [ | ||
{ | ||
"name": "emotionml-checker-java-1.2.2-sources.jar", | ||
"url": "emotionml-checker-java-1.2.2-sources.jar", | ||
"size": 12497, | ||
"sha512": "3f911319e6f4128e13688b4417ebb056bc996ab7e24b7aa0c7161a8b67876426557a78212b5fb170724d785b02f0043f4605ec90b52e837898135a0bd44e6d96", | ||
"sha256": "f0a85cf113c6ad37c0ad7308648c134ca717bf5480c7ac2b013ffae1d9895db6", | ||
"sha1": "b13ecad2e8c0a92da298ffc14fc78dce7eb101d3", | ||
"md5": "89928cf129ad7b6e058d8cc78c0ef3ac" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "javadocElements", | ||
"attributes": { | ||
"org.gradle.category": "documentation", | ||
"org.gradle.dependency.bundling": "external", | ||
"org.gradle.docstype": "javadoc", | ||
"org.gradle.usage": "java-runtime" | ||
}, | ||
"files": [ | ||
{ | ||
"name": "emotionml-checker-java-1.2.2-javadoc.jar", | ||
"url": "emotionml-checker-java-1.2.2-javadoc.jar", | ||
"size": 50124, | ||
"sha512": "16e4983610500574ccbd4e9fe09f05bfd7332d482dcbe066bd7c75d63b8840e756d6a93155f854335e500fc118f027e10b4d0a613cb64adcb62de88c5f86789a", | ||
"sha256": "b527045dbee99c4900820e10493c4297266f6e666927682f2e18ecb401c2105e", | ||
"sha1": "1835025d4f2df2ef5b33d53a2d48b2baaebab069", | ||
"md5": "b009cc60b9a3a73768b8bbe076e43691" | ||
} | ||
] | ||
} | ||
] | ||
} |
37 changes: 37 additions & 0 deletions
37
...jcenter-mirror/de.dfki.mary/emotionml-checker-java/1.2.2/emotionml-checker-java-1.2.2.pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<!-- This module was also published with a richer model, Gradle metadata, --> | ||
<!-- which should be used instead. Do not delete the following line which --> | ||
<!-- is to indicate to Gradle or any Gradle module metadata file consumer --> | ||
<!-- that they should prefer consuming it instead. --> | ||
<!-- do_not_remove: published-with-gradle-metadata --> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>de.dfki.mary</groupId> | ||
<artifactId>emotionml-checker-java</artifactId> | ||
<version>1.2.2</version> | ||
<name>emotionml-checker-java</name> | ||
<description>A generic implementation of EmotionML checks, in Java</description> | ||
<url>https://github.com/marytts/emotionml-checker-java</url> | ||
<licenses> | ||
<license> | ||
<name>Creative Commons Zero v1.0 Universal</name> | ||
<url>https://creativecommons.org/publicdomain/zero/1.0/</url> | ||
</license> | ||
</licenses> | ||
<developers> | ||
<developer> | ||
<id>marc1s</id> | ||
<name>Marc Schröder</name> | ||
</developer> | ||
<developer> | ||
<id>psibre</id> | ||
<name>Ingmar Steiner</name> | ||
</developer> | ||
</developers> | ||
<scm> | ||
<connection>scm:git:https://github.com/marytts/emotionml-checker-java.git</connection> | ||
<developerConnection>scm:git:ssh://github.com:marytts/emotionml-checker-java.git</developerConnection> | ||
<url>https://github.com/marytts/emotionml-checker-java/tree/master</url> | ||
</scm> | ||
</project> |
Binary file added
BIN
+377 KB
docs/jcenter-mirror/de.dfki.mary/marytts-common/5.2.1/marytts-common-5.2.1-javadoc.jar
Binary file not shown.
Binary file added
BIN
+138 KB
docs/jcenter-mirror/de.dfki.mary/marytts-common/5.2.1/marytts-common-5.2.1-sources.jar
Binary file not shown.
Binary file added
BIN
+158 KB
docs/jcenter-mirror/de.dfki.mary/marytts-common/5.2.1/marytts-common-5.2.1.jar
Binary file not shown.
Oops, something went wrong.