elasticsearch-river-subversion
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.plombard</groupId> <artifactId>elasticsearch-river-subversion</artifactId> <version>0.3.5</version> </dependency>
<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>com.github.plombard</groupId> <artifactId>elasticsearch-river-subversion</artifactId> <version>0.3.5</version> <packaging>jar</packaging> <name>elasticsearch-river-subversion</name> <description>Subversion River plugin for Elasticsearch</description> <url>https://github.com/plombard/SubversionRiver</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:plombard/SubversionRiver.git</connection> <developerConnection>scm:git:git@github.com:plombard/SubversionRiver.git</developerConnection> <url>https://github.com/plombard/SubversionRiver.git</url> </scm> <developers> <developer> <id>plombard</id> <name>Pascal Lombard</name> <email>pascal.lombard@gmail.com</email> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <elasticsearch.version>0.90.3</elasticsearch.version> </properties> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <!-- Straight from http://jfarrell.github.com/ --> <build> <plugins> <!-- Add/Edit items in META-INF/MANIFEST.MF --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3</version> <configuration> <finalName>elasticsearch-${project.name}-${elasticsearch.version}</finalName> </configuration> </plugin> <!-- Copy dependencies into lib folder --> <!-- To see full classpath use mvn dependency:build-classpath --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.2</version> <executions> <execution> <id>copy-dependencies</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/lib</outputDirectory> </configuration> </execution> </executions> </plugin> <!-- Attach source files --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- Generate javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <executions> <execution> <id>attach-javadoc</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Skip Surefire tests --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.8</version> <configuration> <skipTests>true</skipTests> <additionalClasspathElements> <additionalClasspathElement>${project.build.directory}/classes/conf</additionalClasspathElement> <additionalClasspathElement>${project.build.directory}/lib</additionalClasspathElement> </additionalClasspathElements> </configuration> </plugin> <!-- Generate the release zip file (run during package step) --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.2.1</version> <configuration> <finalName>${project.name}-${project.version}</finalName> <appendAssemblyId>false</appendAssemblyId> <outputDirectory>${project.build.directory}/release/</outputDirectory> <descriptors> <descriptor>${basedir}/src/main/assembly/plugin.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>generate-release-plugin</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/*.properties</include> </includes> </resource> </resources> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch</artifactId> <version>${elasticsearch.version}</version> </dependency> <!-- SVNKit for SVN operations through Java API --> <dependency> <groupId>org.tmatesoft.svnkit</groupId> <artifactId>svnkit</artifactId> <version>1.7.8</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>14.0.1</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.2.2</version> <scope>compile</scope> </dependency> <!-- For simpler elasticsearch tests --> <dependency> <groupId>com.github.tlrx</groupId> <artifactId>elasticsearch-test</artifactId> <version>0.0.9</version> </dependency> </dependencies> <!-- Profile for GPG signing when releasing --> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>