Skip to content

Commit bf18777

Browse files
committed
readding all thee artifacts
1 parent b5e9032 commit bf18777

File tree

60 files changed

+2441
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+2441
-0
lines changed
191 KB
Binary file not shown.
93.5 KB
Binary file not shown.
87 KB
Binary file not shown.
Lines changed: 245 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,245 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>de.dfki.lt.jtok</groupId>
6+
<artifactId>jtok-core</artifactId>
7+
<version>1.9.3</version>
8+
<packaging>jar</packaging>
9+
10+
<name>JTok</name>
11+
<description>tokenizer and sentence splitter</description>
12+
13+
<scm>
14+
<url>http://heartofgold.opendfki.de/browser/trunk/jtok</url>
15+
</scm>
16+
17+
<organization>
18+
<name>German Research Center for Artificial Intelligence (DFKI)</name>
19+
<url>http://www.dfki.de/</url>
20+
</organization>
21+
22+
<licenses>
23+
<license>
24+
<name>GNU Lesser General Public License (LGPL) in version 2.1 or higher</name>
25+
<url>http://www.gnu.org/licenses/#LGPL</url>
26+
<distribution>repo</distribution>
27+
</license>
28+
</licenses>
29+
30+
<issueManagement>
31+
<system>Trac</system>
32+
<url>http://heartofgold.opendfki.de/wiki/TracSupport</url>
33+
</issueManagement>
34+
35+
<developers>
36+
<developer>
37+
<id>steffen</id>
38+
<name>Joerg Steffen</name>
39+
<email>[email protected]</email>
40+
<url>http://www.dfki.de/~steffen/</url>
41+
<organization>German Research Center for Artificial Intelligence (DFKI)</organization>
42+
<organizationUrl>http://www.dfki.de/</organizationUrl>
43+
<roles>
44+
<role>architect</role>
45+
<role>developer</role>
46+
</roles>
47+
<timezone>+1</timezone>
48+
</developer>
49+
</developers>
50+
51+
<distributionManagement>
52+
<repository>
53+
<id>dfki.lt.releases</id>
54+
<name>DFKI LT Lab Release Distribution Repository</name>
55+
<url>dav:${lt.repositories.base}releases</url>
56+
</repository>
57+
<snapshotRepository>
58+
<id>dfki.lt.snapshots</id>
59+
<name>DFKI LT Lab Snapshot Distribution Repository</name>
60+
<url>dav:${lt.repositories.base}snapshots</url>
61+
</snapshotRepository>
62+
</distributionManagement>
63+
64+
<properties>
65+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
66+
<lt.repositories.base>http://www.dfki.de/intern/lt/maven/content/repositories/</lt.repositories.base>
67+
</properties>
68+
69+
<dependencies>
70+
<dependency>
71+
<groupId>junit</groupId>
72+
<artifactId>junit</artifactId>
73+
<version>4.8.2</version>
74+
<scope>test</scope>
75+
</dependency>
76+
<dependency>
77+
<groupId>org.slf4j</groupId>
78+
<artifactId>slf4j-api</artifactId>
79+
<version>1.6.1</version>
80+
<type>jar</type>
81+
<scope>compile</scope>
82+
</dependency>
83+
<dependency>
84+
<groupId>log4j</groupId>
85+
<artifactId>log4j</artifactId>
86+
<version>1.2.16</version>
87+
<type>jar</type>
88+
<scope>runtime</scope>
89+
</dependency>
90+
<dependency>
91+
<groupId>org.slf4j</groupId>
92+
<artifactId>slf4j-log4j12</artifactId>
93+
<version>1.6.1</version>
94+
<type>jar</type>
95+
<scope>runtime</scope>
96+
</dependency>
97+
</dependencies>
98+
99+
<build>
100+
<resources>
101+
<resource>
102+
<directory>src/main/resources</directory>
103+
</resource>
104+
<resource>
105+
<directory>${basedir}</directory>
106+
<includes>
107+
<include>LICENSE.txt</include>
108+
<include>NOTICE.txt</include>
109+
</includes>
110+
<targetPath>META-INF</targetPath>
111+
</resource>
112+
</resources>
113+
<plugins>
114+
<plugin>
115+
<groupId>org.apache.maven.plugins</groupId>
116+
<artifactId>maven-compiler-plugin</artifactId>
117+
<version>2.3.2</version>
118+
<configuration>
119+
<source>1.6</source>
120+
<target>1.6</target>
121+
</configuration>
122+
</plugin>
123+
<plugin>
124+
<groupId>org.apache.maven.plugins</groupId>
125+
<artifactId>maven-source-plugin</artifactId>
126+
<version>2.1.2</version>
127+
<executions>
128+
<execution>
129+
<id>attach-sources</id>
130+
<goals>
131+
<goal>jar</goal>
132+
</goals>
133+
</execution>
134+
</executions>
135+
</plugin>
136+
<plugin>
137+
<groupId>org.apache.maven.plugins</groupId>
138+
<artifactId>maven-javadoc-plugin</artifactId>
139+
<version>2.7</version>
140+
<executions>
141+
<execution>
142+
<id>attach-javadocs</id>
143+
<goals>
144+
<goal>jar</goal>
145+
</goals>
146+
</execution>
147+
</executions>
148+
</plugin>
149+
<plugin>
150+
<groupId>org.codehaus.mojo</groupId>
151+
<artifactId>appassembler-maven-plugin</artifactId>
152+
<version>1.1.1</version>
153+
<configuration>
154+
<!-- Set the target configuration directory to be used in the bin
155+
scripts -->
156+
<configurationDirectory>conf</configurationDirectory>
157+
<!-- Include the target configuration directory in the beginning
158+
of the classpath declaration in the bin scripts -->
159+
<includeConfigurationDirectoryInClasspath>true</includeConfigurationDirectoryInClasspath>
160+
<!-- Configure repository -->
161+
<generateRepository>false</generateRepository>
162+
<repositoryName>lib</repositoryName>
163+
<repositoryLayout>flat</repositoryLayout>
164+
<!-- Generate bin scripts for windows and unix per default -->
165+
<platforms>
166+
<platform>windows</platform>
167+
<platform>unix</platform>
168+
</platforms>
169+
<programs>
170+
<program>
171+
<mainClass>de.dfki.lt.tools.tokenizer.JTok</mainClass>
172+
<name>tokenize</name>
173+
</program>
174+
<program>
175+
<mainClass>de.dfki.lt.tools.tokenizer.output.XMLOutputter</mainClass>
176+
<name>tokenixe</name>
177+
</program>
178+
</programs>
179+
</configuration>
180+
<executions>
181+
<execution>
182+
<id>appassembler</id>
183+
<phase>package</phase>
184+
<goals>
185+
<goal>assemble</goal>
186+
</goals>
187+
</execution>
188+
</executions>
189+
</plugin>
190+
<plugin>
191+
<groupId>com.google.code.maven-replacer-plugin</groupId>
192+
<artifactId>maven-replacer-plugin</artifactId>
193+
<version>1.3.9</version>
194+
<executions>
195+
<execution>
196+
<phase>package</phase>
197+
<goals>
198+
<goal>replace</goal>
199+
</goals>
200+
</execution>
201+
</executions>
202+
<configuration>
203+
<!-- fix appassembler scripts to use shorter classpaths -->
204+
<includes>
205+
<include>target/appassembler/bin/*</include>
206+
</includes>
207+
<regex>false</regex>
208+
<replacements>
209+
<replacement>
210+
<token>"%REPO%"\</token>
211+
<value>..\lib\</value>
212+
</replacement>
213+
<replacement>
214+
<token>"%BASEDIR%"\</token>
215+
<value>..\</value>
216+
</replacement>
217+
<replacement>
218+
<token>"$REPO"/</token>
219+
<value>../lib/</value>
220+
</replacement>
221+
<replacement>
222+
<token>"$BASEDIR"/</token>
223+
<value>../</value>
224+
</replacement>
225+
</replacements>
226+
</configuration>
227+
</plugin>
228+
<plugin>
229+
<artifactId>maven-assembly-plugin</artifactId>
230+
<configuration>
231+
<descriptors>
232+
<descriptor>src/main/assembly/bin.xml</descriptor>
233+
</descriptors>
234+
</configuration>
235+
</plugin>
236+
</plugins>
237+
<extensions>
238+
<extension>
239+
<groupId>org.apache.maven.wagon</groupId>
240+
<artifactId>wagon-webdav</artifactId>
241+
<version>1.0-beta-2</version>
242+
</extension>
243+
</extensions>
244+
</build>
245+
</project>
48.9 KB
Binary file not shown.
12.2 KB
Binary file not shown.
20.1 KB
Binary file not shown.
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
{
2+
"formatVersion": "1.1",
3+
"component": {
4+
"group": "de.dfki.mary",
5+
"module": "emotionml-checker-java",
6+
"version": "1.2.2",
7+
"attributes": {
8+
"org.gradle.status": "release"
9+
}
10+
},
11+
"createdBy": {
12+
"gradle": {
13+
"version": "7.3.3"
14+
}
15+
},
16+
"variants": [
17+
{
18+
"name": "apiElements",
19+
"attributes": {
20+
"org.gradle.category": "library",
21+
"org.gradle.dependency.bundling": "external",
22+
"org.gradle.jvm.version": 8,
23+
"org.gradle.libraryelements": "jar",
24+
"org.gradle.usage": "java-api"
25+
},
26+
"files": [
27+
{
28+
"name": "emotionml-checker-java-1.2.2.jar",
29+
"url": "emotionml-checker-java-1.2.2.jar",
30+
"size": 20546,
31+
"sha512": "523b8bd02296c4394318058754c04fc425c481d8832e9f54806c645c625bfa385c0f61278f8d946f2d41dd4a1b6c8911091246be9b8d39522463d8d270302777",
32+
"sha256": "585757b3dee5d84b120140aadc02cde8fe0692f1253180605cdacf12e6125d2c",
33+
"sha1": "dcb9d1f789ec362bbfb3b45e61463951915b7b64",
34+
"md5": "a4b667f9415539b1668de1a1f820146c"
35+
}
36+
]
37+
},
38+
{
39+
"name": "runtimeElements",
40+
"attributes": {
41+
"org.gradle.category": "library",
42+
"org.gradle.dependency.bundling": "external",
43+
"org.gradle.jvm.version": 8,
44+
"org.gradle.libraryelements": "jar",
45+
"org.gradle.usage": "java-runtime"
46+
},
47+
"files": [
48+
{
49+
"name": "emotionml-checker-java-1.2.2.jar",
50+
"url": "emotionml-checker-java-1.2.2.jar",
51+
"size": 20546,
52+
"sha512": "523b8bd02296c4394318058754c04fc425c481d8832e9f54806c645c625bfa385c0f61278f8d946f2d41dd4a1b6c8911091246be9b8d39522463d8d270302777",
53+
"sha256": "585757b3dee5d84b120140aadc02cde8fe0692f1253180605cdacf12e6125d2c",
54+
"sha1": "dcb9d1f789ec362bbfb3b45e61463951915b7b64",
55+
"md5": "a4b667f9415539b1668de1a1f820146c"
56+
}
57+
]
58+
},
59+
{
60+
"name": "sourcesElements",
61+
"attributes": {
62+
"org.gradle.category": "documentation",
63+
"org.gradle.dependency.bundling": "external",
64+
"org.gradle.docstype": "sources",
65+
"org.gradle.usage": "java-runtime"
66+
},
67+
"files": [
68+
{
69+
"name": "emotionml-checker-java-1.2.2-sources.jar",
70+
"url": "emotionml-checker-java-1.2.2-sources.jar",
71+
"size": 12497,
72+
"sha512": "3f911319e6f4128e13688b4417ebb056bc996ab7e24b7aa0c7161a8b67876426557a78212b5fb170724d785b02f0043f4605ec90b52e837898135a0bd44e6d96",
73+
"sha256": "f0a85cf113c6ad37c0ad7308648c134ca717bf5480c7ac2b013ffae1d9895db6",
74+
"sha1": "b13ecad2e8c0a92da298ffc14fc78dce7eb101d3",
75+
"md5": "89928cf129ad7b6e058d8cc78c0ef3ac"
76+
}
77+
]
78+
},
79+
{
80+
"name": "javadocElements",
81+
"attributes": {
82+
"org.gradle.category": "documentation",
83+
"org.gradle.dependency.bundling": "external",
84+
"org.gradle.docstype": "javadoc",
85+
"org.gradle.usage": "java-runtime"
86+
},
87+
"files": [
88+
{
89+
"name": "emotionml-checker-java-1.2.2-javadoc.jar",
90+
"url": "emotionml-checker-java-1.2.2-javadoc.jar",
91+
"size": 50124,
92+
"sha512": "16e4983610500574ccbd4e9fe09f05bfd7332d482dcbe066bd7c75d63b8840e756d6a93155f854335e500fc118f027e10b4d0a613cb64adcb62de88c5f86789a",
93+
"sha256": "b527045dbee99c4900820e10493c4297266f6e666927682f2e18ecb401c2105e",
94+
"sha1": "1835025d4f2df2ef5b33d53a2d48b2baaebab069",
95+
"md5": "b009cc60b9a3a73768b8bbe076e43691"
96+
}
97+
]
98+
}
99+
]
100+
}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<!-- This module was also published with a richer model, Gradle metadata, -->
5+
<!-- which should be used instead. Do not delete the following line which -->
6+
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
7+
<!-- that they should prefer consuming it instead. -->
8+
<!-- do_not_remove: published-with-gradle-metadata -->
9+
<modelVersion>4.0.0</modelVersion>
10+
<groupId>de.dfki.mary</groupId>
11+
<artifactId>emotionml-checker-java</artifactId>
12+
<version>1.2.2</version>
13+
<name>emotionml-checker-java</name>
14+
<description>A generic implementation of EmotionML checks, in Java</description>
15+
<url>https://github.com/marytts/emotionml-checker-java</url>
16+
<licenses>
17+
<license>
18+
<name>Creative Commons Zero v1.0 Universal</name>
19+
<url>https://creativecommons.org/publicdomain/zero/1.0/</url>
20+
</license>
21+
</licenses>
22+
<developers>
23+
<developer>
24+
<id>marc1s</id>
25+
<name>Marc Schröder</name>
26+
</developer>
27+
<developer>
28+
<id>psibre</id>
29+
<name>Ingmar Steiner</name>
30+
</developer>
31+
</developers>
32+
<scm>
33+
<connection>scm:git:https://github.com/marytts/emotionml-checker-java.git</connection>
34+
<developerConnection>scm:git:ssh://github.com:marytts/emotionml-checker-java.git</developerConnection>
35+
<url>https://github.com/marytts/emotionml-checker-java/tree/master</url>
36+
</scm>
37+
</project>
377 KB
Binary file not shown.

0 commit comments

Comments
 (0)