boost-thread
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.googlecode.boost-maven-project</groupId>
<artifactId>boost-thread</artifactId>
<version>1.49.0-b1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>com.googlecode.boost-maven-project</groupId>
<artifactId>boost</artifactId>
<version>1.49.0-b1</version>
</parent>
<artifactId>boost-thread</artifactId>
<name>Boost Thread</name>
<description>Portable C++ multi-threading.</description>
<build>
<directory>${basedir}/target/${boost.classifier}</directory>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>boost-compiler</artifactId>
<classifier>${boost.classifier}</classifier>
<version>${project.version}</version>
<type>jar</type>
<overWrite>false</overWrite>
<includes>lib/*boost_thread*</includes>
<outputDirectory>${project.build.directory}/dependency/boost</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<classifier>${boost.classifier}</classifier>
<classesDirectory>${project.build.directory}/dependency/boost</classesDirectory>
<includes>
<include>lib/**</include>
</includes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.3.1</version>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>