Skip to content

Commit

Permalink
Add connector patch
Browse files Browse the repository at this point in the history
  • Loading branch information
rnc authored and shawkins committed Jun 18, 2014
1 parent a8b7d54 commit e8e4c4b
Show file tree
Hide file tree
Showing 12 changed files with 233 additions and 281 deletions.
42 changes: 19 additions & 23 deletions connectors/connector-accumulo/pom.xml
Expand Up @@ -74,51 +74,47 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>install_rar</id>
<id>prepare</id>
<phase>package</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file>${project.build.directory}/${project.artifactId}-${project.version}.rar</file>
<artifactId>${project.artifactId}</artifactId>
<groupId>${project.groupId}</groupId>
<packaging>rar</packaging>
<version>${project.version}</version>
<tasks>
<unzip src="${project.build.directory}/${project.artifactId}-${project.version}.rar" dest="${project.build.directory}/rar-unpack" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<id>rar</id>
<phase>package</phase>
<goals>
<goal>unpack</goal>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<artifacts>
<artifact>
<file>${project.build.directory}/${project.artifactId}-${project.version}.rar</file>
<type>rar</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.directory}/rar-unpack</outputDirectory>
</artifactItem>
</artifactItems>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
Expand Down
44 changes: 20 additions & 24 deletions connectors/connector-cassandra/pom.xml
Expand Up @@ -74,51 +74,47 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>install_rar</id>
<id>prepare</id>
<phase>package</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file> ${project.build.directory}/${project.artifactId}-${project.version}.rar</file>
<artifactId>${project.artifactId}</artifactId>
<groupId>${project.groupId}</groupId>
<packaging>rar</packaging>
<version>${project.version}</version>
<tasks>
<unzip src="${project.build.directory}/${project.artifactId}-${project.version}.rar" dest="${project.build.directory}/rar-unpack" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<id>rar</id>
<phase>package</phase>
<goals>
<goal>unpack</goal>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<artifacts>
<artifact>
<file>${project.build.directory}/${project.artifactId}-${project.version}.rar</file>
<type>rar</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.directory}/rar-unpack</outputDirectory>
</artifactItem>
</artifactItems>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
Expand All @@ -141,4 +137,4 @@
</plugins>
</build>

</project>
</project>
44 changes: 20 additions & 24 deletions connectors/connector-file/pom.xml
Expand Up @@ -63,51 +63,47 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>install_rar</id>
<id>prepare</id>
<phase>package</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file> ${project.build.directory}/${project.artifactId}-${project.version}.rar</file>
<artifactId>${project.artifactId}</artifactId>
<groupId>${project.groupId}</groupId>
<packaging>rar</packaging>
<version>${project.version}</version>
<tasks>
<unzip src="${project.build.directory}/${project.artifactId}-${project.version}.rar" dest="${project.build.directory}/rar-unpack" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<id>rar</id>
<phase>package</phase>
<goals>
<goal>unpack</goal>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<artifacts>
<artifact>
<file>${project.build.directory}/${project.artifactId}-${project.version}.rar</file>
<type>rar</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.directory}/rar-unpack</outputDirectory>
</artifactItem>
</artifactItems>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
Expand All @@ -129,4 +125,4 @@

</plugins>
</build>
</project>
</project>
42 changes: 19 additions & 23 deletions connectors/connector-google/pom.xml
Expand Up @@ -70,51 +70,47 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>install_rar</id>
<id>prepare</id>
<phase>package</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file> ${project.build.directory}/${project.artifactId}-${project.version}.rar</file>
<artifactId>${project.artifactId}</artifactId>
<groupId>${project.groupId}</groupId>
<packaging>rar</packaging>
<version>${project.version}</version>
<tasks>
<unzip src="${project.build.directory}/${project.artifactId}-${project.version}.rar" dest="${project.build.directory}/rar-unpack" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<id>rar</id>
<phase>package</phase>
<goals>
<goal>unpack</goal>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<artifacts>
<artifact>
<file>${project.build.directory}/${project.artifactId}-${project.version}.rar</file>
<type>rar</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.directory}/rar-unpack</outputDirectory>
</artifactItem>
</artifactItems>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
Expand Down
42 changes: 19 additions & 23 deletions connectors/connector-infinispan.6/pom.xml
Expand Up @@ -127,51 +127,47 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>install_rar</id>
<id>prepare</id>
<phase>package</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file> ${project.build.directory}/${project.artifactId}-${project.version}.rar</file>
<artifactId>${project.artifactId}</artifactId>
<groupId>${project.groupId}</groupId>
<packaging>rar</packaging>
<version>${project.version}</version>
<tasks>
<unzip src="${project.build.directory}/${project.artifactId}-${project.version}.rar" dest="${project.build.directory}/rar-unpack" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<id>rar</id>
<phase>package</phase>
<goals>
<goal>unpack</goal>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<artifacts>
<artifact>
<file>${project.build.directory}/${project.artifactId}-${project.version}.rar</file>
<type>rar</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.directory}/rar-unpack</outputDirectory>
</artifactItem>
</artifactItems>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
Expand Down

0 comments on commit e8e4c4b

Please sign in to comment.