lire
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.kzwang</groupId> <artifactId>lire</artifactId> <version>0.9.4-kzwang-beta1</version> </dependency>
<!-- ~ This file is part of the LIRE project: http://www.semanticmetadata.net/lire ~ LIRE is free software; you can redistribute it and/or modify ~ it under the terms of the GNU General Public License as published by ~ the Free Software Foundation; either version 2 of the License, or ~ (at your option) any later version. ~ ~ LIRE is distributed in the hope that it will be useful, ~ but WITHOUT ANY WARRANTY; without even the implied warranty of ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ~ GNU General Public License for more details. ~ ~ You should have received a copy of the GNU General Public License ~ along with LIRE; if not, write to the Free Software ~ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ~ ~ We kindly ask you to refer the any or one of the following publications in ~ any publication mentioning or employing Lire: ~ ~ Lux Mathias, Savvas A. Chatzichristofis. Lire: Lucene Image Retrieval – ~ An Extensible Java CBIR Library. In proceedings of the 16th ACM International ~ Conference on Multimedia, pp. 1085-1088, Vancouver, Canada, 2008 ~ URL: http://doi.acm.org/10.1145/1459359.1459577 ~ ~ Lux Mathias. Content Based Image Retrieval with LIRE. In proceedings of the ~ 19th ACM International Conference on Multimedia, pp. 735-738, Scottsdale, ~ Arizona, USA, 2011 ~ URL: http://dl.acm.org/citation.cfm?id=2072432 ~ ~ Mathias Lux, Oge Marques. Visual Information Retrieval using Java and LIRE ~ Morgan & Claypool, 2013 ~ URL: http://www.morganclaypool.com/doi/abs/10.2200/S00468ED1V01Y201301ICR025 ~ ~ Copyright statement: ~ (c) 2002-2013 by Mathias Lux (mathias@juggle.at) ~ http://www.semanticmetadata.net/lire, http://www.lire-project.net --> <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"> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.github.kzwang</groupId> <artifactId>lire</artifactId> <version>0.9.4-kzwang-beta1</version> <packaging>jar</packaging> <scm> <connection>scm:git:git@github.com:kzwang/lire.git</connection> <developerConnection>scm:git:git@github.com:kzwang/lire.git</developerConnection> <url>http://github.com/kzwang/lire</url> </scm> <name>lire</name> <description>Lucene Image Retrieval</description> <url>http://www.semanticmetadata.net/</url> <inceptionYear>2012</inceptionYear> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format> <build.timestamp>${maven.build.timestamp}</build.timestamp> <build.number /> <lucene.version>4.6.1</lucene.version> </properties> <prerequisites> <maven>3.0.0</maven> </prerequisites> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-core</artifactId> <version>${lucene.version}</version> </dependency> <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-queryparser</artifactId> <version>${lucene.version}</version> </dependency> <dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-analyzers-common</artifactId> <version>${lucene.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-math3</artifactId> <version>3.1.1</version> </dependency> <dependency> <groupId>nz.ac.waikato.cms.weka</groupId> <artifactId>weka-stable</artifactId> <version>3.6.10</version> </dependency> <dependency> <groupId>com.stromberglabs</groupId> <artifactId>jopensurf</artifactId> <version>1.0.0</version> <scope>system</scope> <systemPath>${basedir}/lib/JOpenSurf.jar</systemPath> </dependency> </dependencies> <build> <finalName>lire</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <!-- Generate the project-javadoc.jar for OSS repository --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Generate the project-sources.jar for OSS repository --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <!-- Sign the Maven artifacts --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>