You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2012/01/12 22:55:51 UTC

svn commit: r1230803 - in /lucene/dev/trunk: dev-tools/maven/modules/analysis/kuromoji/ dev-tools/maven/modules/analysis/kuromoji/pom.xml.template dev-tools/maven/modules/analysis/pom.xml.template modules/analysis/kuromoji/

Author: sarowe
Date: Thu Jan 12 21:55:51 2012
New Revision: 1230803

URL: http://svn.apache.org/viewvc?rev=1230803&view=rev
Log:
LUCENE-3305: Added Maven configuration for the new Kuromoji analysis module

Added:
    lucene/dev/trunk/dev-tools/maven/modules/analysis/kuromoji/
    lucene/dev/trunk/dev-tools/maven/modules/analysis/kuromoji/pom.xml.template
Modified:
    lucene/dev/trunk/dev-tools/maven/modules/analysis/pom.xml.template
    lucene/dev/trunk/modules/analysis/kuromoji/   (props changed)

Added: lucene/dev/trunk/dev-tools/maven/modules/analysis/kuromoji/pom.xml.template
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/maven/modules/analysis/kuromoji/pom.xml.template?rev=1230803&view=auto
==============================================================================
--- lucene/dev/trunk/dev-tools/maven/modules/analysis/kuromoji/pom.xml.template (added)
+++ lucene/dev/trunk/dev-tools/maven/modules/analysis/kuromoji/pom.xml.template Thu Jan 12 21:55:51 2012
@@ -0,0 +1,79 @@
+<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/maven-v4_0_0.xsd">
+  <!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+    http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+  -->
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.lucene</groupId>
+    <artifactId>lucene-parent</artifactId>
+    <version>@version@</version>
+    <relativePath>../../../lucene/pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.lucene</groupId>
+  <artifactId>lucene-analyzers-kuromoji</artifactId>
+  <packaging>jar</packaging>
+  <name>Lucene Kuromoji Japanese Morphological Analyzer</name>
+  <description>
+  	 Lucene Kuromoji Japanese Morphological Analyzer
+  </description>
+  <properties>
+    <module-directory>modules/analysis/kuromoji</module-directory>
+    <build-directory>../build/kuromoji</build-directory>
+  </properties>
+  <dependencies>
+    <dependency> 
+      <!-- lucene-test-framework dependency must be declared before lucene-core -->
+      <groupId>${project.groupId}</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+      <version>${project.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>lucene-core</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>lucene-analyzers-common</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <directory>${build-directory}</directory>
+    <outputDirectory>${build-directory}/classes/java</outputDirectory>
+    <testOutputDirectory>${build-directory}/classes/test</testOutputDirectory>
+    <sourceDirectory>src/java</sourceDirectory>
+    <testSourceDirectory>src/test</testSourceDirectory>
+    <resources>
+      <resource>
+        <directory>src/resources</directory>
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+        <directory>${project.build.testSourceDirectory}</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </testResource>
+    </testResources>
+  </build>
+</project>

Modified: lucene/dev/trunk/dev-tools/maven/modules/analysis/pom.xml.template
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/maven/modules/analysis/pom.xml.template?rev=1230803&r1=1230802&r2=1230803&view=diff
==============================================================================
--- lucene/dev/trunk/dev-tools/maven/modules/analysis/pom.xml.template (original)
+++ lucene/dev/trunk/dev-tools/maven/modules/analysis/pom.xml.template Thu Jan 12 21:55:51 2012
@@ -33,6 +33,7 @@
   <modules>
     <module>common</module>
     <module>icu</module>
+    <module>kuromoji</module>
     <module>morfologik</module>
     <module>phonetic</module>
     <module>smartcn</module>