|
| 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 | + |
| 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> |
0 commit comments