pom
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.objectweb.think.minus.libc</groupId>
<artifactId>pom</artifactId>
<version>1.1</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.objectweb.think.minus</groupId>
<artifactId>root</artifactId>
<version>1.1</version>
</parent>
<groupId>org.objectweb.think.minus.libc</groupId>
<artifactId>pom</artifactId>
<packaging>pom</packaging>
<name>libc</name>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>install</id>
<goals>
<goal>exec</goal>
</goals>
<phase>install</phase>
<configuration>
<executable>make</executable>
<workingDirectory>${basedir}</workingDirectory>
<arguments>
<argument>install</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>deploy</id>
<goals>
<goal>exec</goal>
</goals>
<phase>deploy</phase>
<configuration>
<executable>make</executable>
<workingDirectory>${basedir}</workingDirectory>
<arguments>
<argument>deploy</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorSourceDirectory>
src/assemble
</descriptorSourceDirectory>
<tarLongFileMode>gnu</tarLongFileMode>
<finalName>${project.artifactId}-${project.version}</finalName>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
</execution>
<execution>
<id>site assembly</id>
<goals>
<goal>attached</goal>
</goals>
<phase>pre-site</phase>
<configuration>
<outputDirectory>
${basedir}/target/site/downloads
</outputDirectory>
</configuration>
</execution>
</executions>
<dependencies>
<!-- Depends on the car plugin to allow
maven-assembly-plugin to find a "car" (un)archiver -->
<dependency>
<groupId>org.objectweb.fractal.cecilia</groupId>
<artifactId>
maven-car-plugin
</artifactId>
<version>${cecilia.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>