-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutils.xml
192 lines (187 loc) · 14.4 KB
/
utils.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<project>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<installed.exmaralda.dir>c:\Program Files (x86)\EXMARaLDA</installed.exmaralda.dir>
<checkout.directory>${basedir}/checkoutDirectory</checkout.directory>
<exmaraldaVersion>1.6</exmaraldaVersion>
<exmaraldaVersionType>tag</exmaraldaVersionType>
</properties>
<name>EXMARaLDA</name>
<description>EXMARaLDA is a system for working with oral corpora on a computer. It consists of a transcription and annotation tool (Partitur-Editor), a tool for managing corpora (Corpus-Manager) and a query and analysis tool (EXAKT). EXMARaLDA was developed in the project "Computer assisted methods for the creation and analysis of multilingual data" at the Collaborative Research Center "Multilingualism (Sonderforschungsbereich "Mehrsprachigkeit" – SFB 538) at the University of Hamburg. Since July 2011, the development of EXMARaLDA is continued at the Hamburg Centre for Language Corpora, since November 2011 in cooperation with the Archive for Spoken German at the Institute for the German Language in Mannheim.</description>
<url>http://exmaralda.org</url>
<organization><name>Hamburg Centre for Language Corpora</name><url>http://hzsk.uni-hamburg.de</url></organization>
<modelVersion>4.0.0</modelVersion>
<groupId>de.uni-hamburg.hzsk</groupId>
<artifactId>EXMARaLDA</artifactId>
<version>1.6</version>
<repositories>
<repository><id>http___www.mmbase.org_maven2</id><name>http___www.mmbase.org_maven2</name><url>http://www.mmbase.org/maven2</url></repository>
<repository><id>http___projects.nigelsim.org_maven</id><name>http___projects.nigelsim.org_maven</name><url>http://projects.nigelsim.org/maven</url></repository>
<repository><id>https___maven.java.net_content_repositories_releases</id><name>https___maven.java.net_content_repositories_releases</name><url>https://maven.java.net/content/repositories/releases</url></repository>
<repository><id>https___repository.jboss.org</id><name>https___repository.jboss.org</name><url>https://repository.jboss.org</url></repository>
<repository><id>http___central.maven.org_maven2</id><name>http___central.maven.org_maven2</name><url>http://central.maven.org/maven2</url></repository>
</repositories>
<dependencies>
<!-- dependencies for maven plugins -->
<dependency><groupId>org.apache.ant</groupId><artifactId>ant</artifactId><version>1.10.1</version><scope>compile</scope><type>jar</type></dependency>
<dependency><groupId>org.apache.ant</groupId><artifactId>ant-launcher</artifactId><version>1.10.1</version><scope>compile</scope><type>jar</type></dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId><artifactId>maven-scm-plugin</artifactId><version>1.9.5</version>
<executions>
<execution>
<id>checkout_exmaralda_build</id>
<goals><goal>checkout</goal></goals>
<configuration>
<connectionType>connection</connectionType>
<connectionUrl>scm:git:https://github.com/me-kell/EXMARaLDA-build.git</connectionUrl>
<checkoutDirectory>${checkout.directory}</checkoutDirectory>
</configuration>
</execution>
<execution>
<id>checkout_exmaralda</id>
<goals><goal>checkout</goal></goals>
<configuration>
<connectionType>connection</connectionType>
<connectionUrl>scm:git:https://github.com/EXMARaLDA/exmaralda.git</connectionUrl>
<checkoutDirectory>${checkout.directory}</checkoutDirectory>
<scmVersion>${exmaraldaVersion}</scmVersion>
<scmVersionType>${exmaraldaVersionType}</scmVersionType>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId><artifactId>maven-antrun-plugin</artifactId><version>1.8</version>
<executions>
<execution>
<id>prepare_sources</id>
<goals><goal>run</goal></goals>
<configuration>
<target>
<!-- delete src and create src/main/java and src/main/resources -->
<delete dir="${project.basedir}/src/main/java"/>
<delete dir="${project.basedir}/src/main/resources"/>
<mkdir dir="${project.basedir}/src/main/java"/>
<mkdir dir="${project.basedir}/src/main/resources"/>
<!-- copy java files to src/main/java -->
<copy todir="${project.basedir}/src/main/java" includeEmptyDirs="false">
<fileset dir="${checkout.directory}/src">
<include name="**/*.java"/>
</fileset>
</copy>
<!-- copy non java (and non form) files to src/main/resources -->
<copy todir="${project.basedir}/src/main/resources" includeEmptyDirs="false">
<fileset dir="${checkout.directory}/src">
<exclude name="**/*.java"/>
<exclude name="**/*.form"/>
</fileset>
</copy>
<!-- delete unused packages -->
<delete dir="${project.basedir}/src/main/java/org/exmaralda/alignment" />
<delete dir="${project.basedir}/src/main/java/org/exmaralda/hzsk" />
<delete dir="${project.basedir}/src/main/java/org/exmaralda/sbcsae" />
<delete dir="${project.basedir}/src/main/java/org/exmaralda/exakt/applet" />
<delete dir="${project.basedir}/src/main/resources/org/exmaralda/exakt/applet" />
</target>
</configuration>
</execution>
<execution>
<id>jsmoothgen_coma</id>
<goals><goal>run</goal></goals>
<configuration>
<target>
<copy todir="${project.basedir}/target/jre"><fileset dir="C:/sde/tools/jdk-8u144-windows-i586/jre"/></copy>
<copy todir="${project.basedir}/target/lib" file="${project.basedir}/target/EXMARaLDA-1.6.jar"/>
<taskdef name="jsmoothgen" classname="net.charabia.jsmoothgen.ant.JSmoothGen" classpath="C:/sde/tools/jsmooth-0.9.9-7/lib/jsmoothgen-ant.jar"/>
<jsmoothgen project="./src/main/jsmooth/coma.jsmooth" skeletonroot="C:/sde/tools/jsmooth-0.9.9-7/skeletons"/>
</target>
</configuration>
</execution>
<execution>
<id>jsmoothgen_exakt_fobs</id>
<goals><goal>run</goal></goals>
<configuration>
<target>
<copy todir="${project.basedir}/target/jre"><fileset dir="C:/sde/tools/jdk-8u144-windows-i586/jre"/></copy>
<copy todir="${project.basedir}/target/lib" file="${project.basedir}/target/EXMARaLDA-1.6.jar"/>
<taskdef name="jsmoothgen" classname="net.charabia.jsmoothgen.ant.JSmoothGen" classpath="C:/sde/tools/jsmooth-0.9.9-7/lib/jsmoothgen-ant.jar"/>
<jsmoothgen project="./src/main/jsmooth/exakt_fobs.jsmooth" skeletonroot="C:/sde/tools/jsmooth-0.9.9-7/skeletons"/>
</target>
</configuration>
</execution>
<execution>
<id>jsmoothgen_folker_fobs</id>
<goals><goal>run</goal></goals>
<configuration>
<target>
<copy todir="${project.basedir}/target/jre"><fileset dir="C:/sde/tools/jdk-8u144-windows-i586/jre"/></copy>
<copy todir="${project.basedir}/target/lib" file="${project.basedir}/target/EXMARaLDA-1.6.jar"/>
<taskdef name="jsmoothgen" classname="net.charabia.jsmoothgen.ant.JSmoothGen" classpath="C:/sde/tools/jsmooth-0.9.9-7/lib/jsmoothgen-ant.jar"/>
<jsmoothgen project="./src/main/jsmooth/folker_fobs.jsmooth" skeletonroot="C:/sde/tools/jsmooth-0.9.9-7/skeletons"/>
</target>
</configuration>
</execution>
<execution>
<id>jsmoothgen_orthonormal_fobs</id>
<goals><goal>run</goal></goals>
<configuration>
<target>
<copy todir="${project.basedir}/target/jre"><fileset dir="C:/sde/tools/jdk-8u144-windows-i586/jre"/></copy>
<copy todir="${project.basedir}/target/lib" file="${project.basedir}/target/EXMARaLDA-1.6.jar"/>
<taskdef name="jsmoothgen" classname="net.charabia.jsmoothgen.ant.JSmoothGen" classpath="C:/sde/tools/jsmooth-0.9.9-7/lib/jsmoothgen-ant.jar"/>
<jsmoothgen project="./src/main/jsmooth/orthonormal_fobs.jsmooth" skeletonroot="C:/sde/tools/jsmooth-0.9.9-7/skeletons"/>
</target>
</configuration>
</execution>
<execution>
<id>jsmoothgen_partitureditor_fobs</id>
<goals><goal>run</goal></goals>
<configuration>
<target>
<copy todir="${project.basedir}/target/jre"><fileset dir="C:/sde/tools/jdk-8u144-windows-i586/jre"/></copy>
<copy todir="${project.basedir}/target/lib" file="${project.basedir}/target/EXMARaLDA-1.6.jar"/>
<taskdef name="jsmoothgen" classname="net.charabia.jsmoothgen.ant.JSmoothGen" classpath="C:/sde/tools/jsmooth-0.9.9-7/lib/jsmoothgen-ant.jar"/>
<jsmoothgen project="./src/main/jsmooth/partitureditor_fobs.jsmooth" skeletonroot="C:/sde/tools/jsmooth-0.9.9-7/skeletons"/>
</target>
</configuration>
</execution>
<execution>
<id>jsmoothgen_teidrop</id>
<goals><goal>run</goal></goals>
<configuration>
<target>
<copy todir="${project.basedir}/target/jre"><fileset dir="C:/sde/tools/jdk-8u144-windows-i586/jre"/></copy>
<copy todir="${project.basedir}/target/lib" file="${project.basedir}/target/EXMARaLDA-1.6.jar"/>
<taskdef name="jsmoothgen" classname="net.charabia.jsmoothgen.ant.JSmoothGen" classpath="C:/sde/tools/jsmooth-0.9.9-7/lib/jsmoothgen-ant.jar"/>
<jsmoothgen project="./src/main/jsmooth/teidrop.jsmooth" skeletonroot="C:/sde/tools/jsmooth-0.9.9-7/skeletons"/>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId><artifactId>maven-install-plugin</artifactId><version>2.4</version>
<executions>
<!-- std executions -->
<execution><id>1</id><phase>validate</phase><goals><goal>install-file</goal></goals><configuration><file>${installed.exmaralda.dir}/AppleJavaExtensions.jar</file><groupId>exmaralda</groupId><artifactId>AppleJavaExtensions</artifactId><version>2004.07</version><packaging>jar</packaging></configuration></execution>
<execution><id>2</id><phase>validate</phase><goals><goal>install-file</goal></goals><configuration><file>${installed.exmaralda.dir}/bounce.jar</file><groupId>exmaralda</groupId><artifactId>bounce</artifactId><version>0.11</version><packaging>jar</packaging></configuration></execution>
<execution><id>3</id><phase>validate</phase><goals><goal>install-file</goal></goals><configuration><file>${installed.exmaralda.dir}/cobra.jar</file><groupId>exmaralda</groupId><artifactId>cobra</artifactId><version>0.98.2</version><packaging>jar</packaging></configuration></execution>
<execution><id>4</id><phase>validate</phase><goals><goal>install-file</goal></goals><configuration><file>${installed.exmaralda.dir}/elan.jar</file><groupId>exmaralda</groupId><artifactId>elan</artifactId><version>4.9.1</version><packaging>jar</packaging></configuration></execution>
<execution><id>5</id><phase>validate</phase><goals><goal>install-file</goal></goals><configuration><file>${installed.exmaralda.dir}/FobsJMF/fobs4jmf.jar</file><groupId>exmaralda</groupId><artifactId>fobsjmf-fobs4jmf</artifactId><version>0.4.2</version><packaging>jar</packaging></configuration></execution>
<execution><id>6</id><phase>validate</phase><goals><goal>install-file</goal></goals><configuration><file>${installed.exmaralda.dir}/ipsk.jar</file><groupId>exmaralda</groupId><artifactId>ipsk</artifactId><version>2012.07</version><packaging>jar</packaging></configuration></execution>
<execution><id>7</id><phase>validate</phase><goals><goal>install-file</goal></goals><configuration><file>${installed.exmaralda.dir}/JavaQTMovieView-1.4.5.jar</file><groupId>exmaralda</groupId><artifactId>JavaQTMovieView</artifactId><version>1.4.5</version><packaging>jar</packaging></configuration></execution>
<execution><id>8</id><phase>validate</phase><goals><goal>install-file</goal></goals><configuration><file>${installed.exmaralda.dir}/jctable.jar</file><groupId>exmaralda</groupId><artifactId>jctable</artifactId><version>2003.06</version><packaging>jar</packaging></configuration></execution>
<execution><id>9</id><phase>validate</phase><goals><goal>install-file</goal></goals><configuration><file>${installed.exmaralda.dir}/FobsJMF/jmf.jar</file><groupId>exmaralda</groupId><artifactId>fobsjmf-jmf</artifactId><version>0.4.2</version><packaging>jar</packaging></configuration></execution>
<execution><id>10</id><phase>validate</phase><goals><goal>install-file</goal></goals><configuration><file>${installed.exmaralda.dir}/lobo.jar</file><groupId>exmaralda</groupId><artifactId>lobo</artifactId><version>0.98.2</version><packaging>jar</packaging></configuration></execution>
<execution><id>11</id><phase>validate</phase><goals><goal>install-file</goal></goals><configuration><file>${installed.exmaralda.dir}/lobo-pub.jar</file><groupId>exmaralda</groupId><artifactId>lobo-pub</artifactId><version>0.98.2</version><packaging>jar</packaging></configuration></execution>
<execution><id>12</id><phase>validate</phase><goals><goal>install-file</goal></goals><configuration><file>${installed.exmaralda.dir}/QTJava.zip</file><groupId>exmaralda</groupId><artifactId>QTJava</artifactId><version>2006.06</version><packaging>jar</packaging></configuration></execution>
<execution><id>13</id><phase>validate</phase><goals><goal>install-file</goal></goals><configuration><file>${installed.exmaralda.dir}/quaqua.jar</file><groupId>exmaralda</groupId><artifactId>quaqua</artifactId><version>9.1</version><packaging>jar</packaging></configuration></execution>
<!-- especial executions -->
</executions>
</plugin>
</plugins>
</build>
</project>