Revision: 8769
          
http://languagetool.svn.sourceforge.net/languagetool/?rev=8769&view=rev
Author:   dnaber
Date:     2013-01-01 19:52:33 +0000 (Tue, 01 Jan 2013)
Log Message:
-----------
adding POM so we can try to make a release

Added Paths:
-----------
    tags/V_2_0/pom.xml

Added: tags/V_2_0/pom.xml
===================================================================
--- tags/V_2_0/pom.xml                          (rev 0)
+++ tags/V_2_0/pom.xml  2013-01-01 19:52:33 UTC (rev 8769)
@@ -0,0 +1,181 @@
+<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>org.languagetool</groupId>
+    <artifactId>languagetool</artifactId>
+    <version>2.0.1-SNAPSHOT</version>
+    <url>http://www.languagetool.org</url>
+    <name>LanguageTool Style and Grammar Checker</name>
+    <description>LanguageTool is an Open Source proofreading software for 
English, French, German, Polish, Romanian, and more than 20 other languages. It 
finds many errors that a simple spell checker cannot detect like mixing up 
there/their and it detects some grammar problems.</description>
+
+    <licenses>
+        <license>
+            <name>GNU Lesser General Public License</name>
+            <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
+            <distribution>repo</distribution>
+            <comments>
+                Linguistic resources included with this artifact may be under 
different licenses.
+                For details see README.txt (located in META-INF within the jar 
file).
+            </comments>
+        </license>
+    </licenses>
+
+    <parent>
+        <groupId>org.sonatype.oss</groupId>
+        <artifactId>oss-parent</artifactId>
+        <version>7</version>
+    </parent>
+    
+    <scm>
+        
<connection>scm:svn:https://languagetool.svn.sourceforge.net/svnroot/languagetool/trunk/JLanguageTool</connection>
+        
<developerConnection>scm:svn:https://languagetool.svn.sourceforge.net/svnroot/languagetool/trunk/JLanguageTool</developerConnection>
+        
<url>http://languagetool.svn.sourceforge.net/languagetool/trunk/JLanguageTool/</url>
+    </scm>
+
+    <properties>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+        <maven.compiler.source>1.6</maven.compiler.source>
+        <maven.compiler.target>1.6</maven.compiler.target>
+    </properties>
+
+    <repositories>
+        <repository>
+            <id>ukp-oss</id>
+            
<url>http://zoidberg.ukp.informatik.tu-darmstadt.de/artifactory/public-releases</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+        </repository>
+    </repositories>
+
+    <build>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+            </resource>
+            <resource>
+                <directory>${basedir}</directory>
+                <targetPath>META-INF</targetPath>
+                <includes>
+                    <include>CHANGES.txt</include>
+                    <include>COPYING.txt</include>
+                    <include>README.txt</include>
+                </includes>
+            </resource>
+            <resource>
+                <directory>libs/native-lib</directory>
+                <includes>
+                    <include>**/*</include>
+                </includes>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-release-plugin</artifactId>
+                <configuration>
+                  
<tagBase>https://languagetool.svn.sourceforge.net/svnroot/languagetool/tags/</tagBase>
+                </configuration>
+            </plugin>            
+            <plugin>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>2.3.2</version>
+                <configuration>
+                    <excludes>
+                        <exclude>**/org/languagetool/openoffice/*</exclude>
+                    </excludes>
+                    <testExcludes>
+                        
<testExclude>**/org/languagetool/openoffice/*</testExclude>
+                        <testExclude>**/org/languagetool/dev/**/*</testExclude>
+                    </testExcludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>2.12</version>
+                <configuration>
+                    <argLine>-Xms256m -Xmx256m</argLine>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>cn.com.cjf</groupId>
+            <artifactId>cjftransform</artifactId>
+            <version>1.0.1</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+            <version>2.4</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>1.1.1</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-validator</groupId>
+            <artifactId>commons-validator</artifactId>
+            <version>1.3.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.ictclas4j</groupId>
+            <artifactId>ictclas4j</artifactId>
+            <version>1.0</version>
+        </dependency>
+        <dependency>
+            <groupId>net.java.dev.jna</groupId>
+            <artifactId>jna</artifactId>
+            <version>3.4.0</version>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.7</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>de.abelssoft</groupId>
+            <artifactId>jwordsplitter</artifactId>
+            <version>3.4</version>
+        </dependency>
+        <dependency>
+            <groupId>org.carrot2</groupId>
+            <artifactId>morfologik-fsa</artifactId>
+            <version>1.5.4</version>
+        </dependency>
+        <dependency>
+            <groupId>org.carrot2</groupId>
+            <artifactId>morfologik-speller</artifactId>
+            <version>1.5.4</version>
+        </dependency>
+        <dependency>
+            <groupId>org.carrot2</groupId>
+            <artifactId>morfologik-stemming</artifactId>
+            <version>1.5.4</version>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.segment</groupId>
+            <artifactId>segment</artifactId>
+            <version>1.4.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tika</groupId>
+            <artifactId>tika-core</artifactId>
+            <version>0.9</version>
+        </dependency>
+        <dependency>
+            <groupId>com.google.code</groupId>
+            <artifactId>lucene-gosen-ipadic</artifactId>
+            <version>1.2.1</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Master SQL Server Development, Administration, T-SQL, SSAS, SSIS, SSRS
and more. Get SQL Server skills now (including 2012) with LearnDevNow -
200+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only - learn more at:
http://p.sf.net/sfu/learnmore_122512
_______________________________________________
Languagetool-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/languagetool-commits

Reply via email to