https://github.com/rnewson/couchdb-lucene
Raw File
Tip revision: 8f4945f84cb2b7b8af4996beddb4e1a0296fd71d authored by Robert Newson on 18 April 2009, 12:18:23 UTC
format errors better
Tip revision: 8f4945f
pom.xml
<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">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.github.rnewson.couchdb.lucene</groupId>
  <artifactId>couchdb-lucene</artifactId>
  <name>CouchDB Lucene</name>
  <description>Full-text indexing for CouchDB</description>
  <url>http://github.com/rnewson/couchdb-lucene/</url>
  <version>0.3-SNAPSHOT</version>
  <dependencies>
    <dependency>
      <groupId>commons-httpclient</groupId>
      <artifactId>commons-httpclient</artifactId>
      <version>3.1</version>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>1.4</version>
    </dependency>
    <dependency>
      <groupId>net.sf.json-lib</groupId>
      <artifactId>json-lib</artifactId>
      <version>2.2.3</version>
      <classifier>jdk15</classifier>
    </dependency>
    <dependency>
      <groupId>org.apache.lucene</groupId>
      <artifactId>lucene-core</artifactId>
      <version>2.4.1</version>
    </dependency>
    <dependency>
      <groupId>org.apache.tika</groupId>
      <artifactId>tika</artifactId>
      <version>0.3</version>
    </dependency>
    <dependency>
      <groupId>rhino</groupId>
      <artifactId>js</artifactId>
      <version>1.7R1</version>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-all</artifactId>
      <version>1.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.14</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.5</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <issueManagement>
    <system>lighthouseapp</system>
    <url>http://rnewson.lighthouseapp.com/projects/27420-couchdb-lucene/tickets</url>
  </issueManagement>
  <scm>
    <connection>scm:git:git://github.com/rnewson/couchdb-lucene.git</connection>
    <url>http://github.com/rnewson/couchdb-lucene/</url>
  </scm>
  <licenses>
    <license>
      <name>Apache 2</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>rnewson</id>
      <name>Robert Newson</name>
      <email>robert.newson@gmail.com</email>
      <roles>
	<role>Developer</role>
      </roles>
      <timezone>0</timezone>
    </developer>
  </developers>
  <build>
    <defaultGoal>assembly:assembly</defaultGoal>
    <plugins>
      <plugin>
	<artifactId>maven-javadoc-plugin</artifactId>
	<configuration>
	  <source>1.5</source>
	  <showPackage>false</showPackage>
	  <links>
	    <link>http://java.sun.com/javase/6/docs/api/</link>
	    <link>http://lucene.apache.org/java/2_4_0/api/core/</link>
	  </links>
	</configuration>
      </plugin>
      <plugin>
	<artifactId>maven-compiler-plugin</artifactId>
	<configuration>
	  <source>1.5</source>
	  <target>1.5</target>
	</configuration>
      </plugin>
      <plugin>
	<artifactId>maven-assembly-plugin</artifactId>
        <configuration>
          <descriptorRefs>
            <descriptorRef>jar-with-dependencies</descriptorRef>
          </descriptorRefs>
          <archive>
            <manifest>
              <mainClass>com.github.rnewson.couchdb.lucene.Main</mainClass>
            </manifest>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
back to top