Maven Repository - POM file for Library toolbox-utils 1.0 1.0

Summary

ASV Toolbox.

ASV Toolbox is a modular collection of tools for the exploration of written language data. They work either on word lists or text and solve several linguistic classification and clustering tasks. The topics covered contain language detection, POS-tagging, base form reduction, named entity recogniti....

Declaration

Here is the list of declaration for toolbox-utils. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>de.uni_leipzig.asv.toolbox</groupId>
   <artifactId>toolbox-utils</artifactId>
   <version>1.0</version>
</dependency>

If you think this Maven repository POM file listing for toolbox-utils is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.





License

Name:MIT License
URL: http://www.opensource.org/licenses/mit-license.php.

Plugin

The following plugins are used in the toolbox-utils-1.0.jar

  1. maven-source-plugin

POM File Source

Here is the content of the POM file.

<!-- 
  The MIT License (MIT)
  
  Copyright (c) 2013, University of Leipzig, Institut f?r Informatik,
  Abteilung Autmatische Sprachverarbeitung
  
  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to
  deal in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:
  
  The above copyright notice and this permission notice shall be included in
  all copies or substantial portions of the Software.
  
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  THE SOFTWARE.
-->
<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.uni_leipzig.asv.toolbox</groupId>
  <artifactId>toolbox-utils</artifactId>
  <version>1.0</version>
  <packaging>jar</packaging>
  <name>ASV Toolbox</name>
  <description>ASV Toolbox is a modular collection of tools for the exploration of written language data. They work either on word lists or text and solve several linguistic classification and clustering tasks. The topics covered contain language detection, POS-tagging, base form reduction, named entity recognition, and terminology extraction. On a more abstract level, the algorithms deal with various kinds of word similarity, using pattern based and statistical approaches. The collection can be used to work on large real world data sets as well as for studying the underlying algorithms. The ASV Toolbox can work on plain text files and connect to a MySQL database. While it is especially designed to work with corpora of the Leipzig Corpora Collection, it can easily be adapted to other sources.</description>
  <url>http://wortschatz.uni-leipzig.de/~cbiemann/software/toolbox/</url>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>http://www.opensource.org/licenses/mit-license.php</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <url>http://wortschatz.uni-leipzig.de/~cbiemann/software/toolbox/</url>
    <connection>http://wortschatz.uni-leipzig.de/~cbiemann/software/toolbox/ASV_Toolbox_frameworkv1.0.zip</connection>
  </scm>
  
  <build>
  <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-source-plugin</artifactId>
      <executions>
        <execution>
          <id>attach-sources</id>
          <goals>
            <goal>jar</goal>
          </goals>
        </execution>
      </executions>
    </plugin>
  </plugins>
  </build>
</project>