elasticsearch-river-web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codelibs</groupId> <artifactId>elasticsearch-river-web</artifactId> <version>1.4.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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.codelibs</groupId> <artifactId>elasticsearch-river-web</artifactId> <version>1.4.0</version> <packaging>jar</packaging> <name>Elasticsearch River Web</name> <description>This plugin crawls web sites and extracts the content from Web.</description> <inceptionYear>2011</inceptionYear> <url>https://github.com/codelibs/elasticsearch-river-web</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:codelibs/elasticsearch-river-web.git</connection> <developerConnection>scm:git:git@github.com:codelibs/elasticsearch-river-web.git</developerConnection> <url>git@github.com:codelibs/elasticsearch-river-web.git</url> </scm> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <properties> <elasticsearch.version>1.4.1</elasticsearch.version> </properties> <repositories> <repository> <id>maven.seasar.org</id> <name>The Seasar Foundation Maven2 Repository</name> <url>http://maven.seasar.org/maven2</url> </repository> <repository> <id>maven-snapshot.seasar.org</id> <name>The Seasar Foundation Maven2 Snapshot Repository</name> <url>http://maven.seasar.org/maven2-snapshot</url> </repository> <repository> <id>java.net</id> <url>http://download.java.net/maven/2</url> </repository> </repositories> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.11</version> <configuration> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> <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> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <appendAssemblyId>false</appendAssemblyId> <outputDirectory>${project.build.directory}/releases/</outputDirectory> <descriptors> <descriptor>${basedir}/src/main/assemblies/plugin.xml</descriptor> </descriptors> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch</artifactId> <version>${elasticsearch.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.codelibs</groupId> <artifactId>elasticsearch-quartz</artifactId> <version>1.0.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.codelibs</groupId> <artifactId>elasticsearch-util</artifactId> <version>0.3.0</version> </dependency> <dependency> <groupId>org.codelibs.robot</groupId> <artifactId>s2-robot</artifactId> <version>0.8.0</version> <exclusions> <exclusion> <artifactId>jhighlight</artifactId> <groupId>org.codelibs</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.codelibs</groupId> <artifactId>jhighlight</artifactId> <version>1.0.1</version> </dependency> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.7.3</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> </project>