ow2-admin-scripts
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.sandre.contrail</groupId>
<artifactId>ow2-admin-scripts</artifactId>
<version>0.1</version>
</dependency><?xml version="1.0"?>
<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.sandre.contrail</groupId>
<artifactId>ow2-admin-scripts</artifactId>
<version>0.1</version>
<packaging>jar</packaging>
<name>OW2 Administration Scripts</name>
<description>Shell scripts used to administrate the OW2 collaborative
development and release the Contrail cloud platform</description>
<parent>
<groupId>com.github.sandre.contrail</groupId>
<artifactId>parent</artifactId>
<version>0.1</version>
<relativePath>../parent</relativePath>
</parent>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<id>generate-shell-scripts</id>
<phase>generate-resources</phase>
<configuration>
<executable>make</executable>
<arguments>
<argument>build</argument>
</arguments>
</configuration>
<goals>
<goal>exec</goal>
</goals>
</execution>
<execution>
<id>install-shell-scripts</id>
<phase>process-resources</phase>
<configuration>
<executable>make</executable>
<arguments>
<argument>install</argument>
<argument>DESTDIR=${project.build.outputDirectory}</argument>
</arguments>
</configuration>
<goals>
<goal>exec</goal>
</goals>
</execution>
<execution>
<id>clean</id>
<phase>clean</phase>
<configuration>
<executable>make</executable>
<arguments>
<argument>clean</argument>
</arguments>
</configuration>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>