Skip to content

Commit

Permalink
modifying the connector builds
Browse files Browse the repository at this point in the history
  • Loading branch information
shawkins committed Jun 18, 2014
1 parent e8e4c4b commit 33d3d3a
Showing 1 changed file with 18 additions and 24 deletions.
42 changes: 18 additions & 24 deletions connectors/connector-infinispan-dsl/pom.xml
Expand Up @@ -127,49 +127,43 @@
</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>
<type>rar</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.directory}/rar-unpack</outputDirectory>
</artifactItem>
</artifactItems>
<artifacts>
<artifact>
<file>${project.build.directory}/${project.artifactId}-${project.version}.rar</file>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>

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

0 comments on commit 33d3d3a

Please sign in to comment.