clientServer-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.objectweb.think.minus.examples.clientServer</groupId>
<artifactId>clientServer-parent</artifactId>
<version>1.1-alpha-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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.objectweb.think.minus.examples</groupId>
<artifactId>examples</artifactId>
<version>1.1-alpha-5</version>
</parent>
<groupId>org.objectweb.think.minus.examples.clientServer</groupId>
<artifactId>clientServer-parent</artifactId>
<packaging>pom</packaging>
<name>clientServer</name>
<build>
<plugins>
<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>
</plugin>
</plugins>
</build>
</project>