boost-system
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.googlecode.boost-maven-project</groupId>
<artifactId>boost-system</artifactId>
<version>1.47.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.47.0-b1</version>
</parent>
<artifactId>boost-system</artifactId>
<name>Boost System</name>
<description>Operating system support, including the diagnostics support that will be part of the C++0x standard library.</description>
<url>http://code.google.com/p/boost-maven-project/</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://boost-maven-project.googlecode.com/hg/</url>
<connection>scm:hg:https://boost-maven-project.googlecode.com/hg/</connection>
<developerConnection>scm:hg:https://boost-maven-project.googlecode.com/hg/</developerConnection>
</scm>
<developers>
<developer>
<id>cowwoc</id>
<name>Gili Tzabari</name>
</developer>
</developers>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>boost-compiler</artifactId>
<classifier>${classifier}</classifier>
<version>${project.version}</version>
<type>jar</type>
<overWrite>false</overWrite>
<includes>stage${addressModel}/lib/*boost_system*</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>${classifier}</classifier>
<classesDirectory>${project.build.directory}/dependency/boost/stage${addressModel}</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>