Maven Repository - POM file for Library boost-filesystem 1.47.0-b1 1.47.0-b1

Summary

Boost Filesystem.

The Boost Filesystem Library provides portable facilities to query and manipulate paths, files, and directories..

Declaration

Here is the list of declaration for boost-filesystem. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>com.googlecode.boost-maven-project</groupId>
   <artifactId>boost-filesystem</artifactId>
   <version>1.47.0-b1</version>
</dependency>

If you think this Maven repository POM file listing for boost-filesystem is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.





Plugin

The following plugins are used in the boost-filesystem-1.47.0-b1.jar

  1. maven-dependency-plugin
  2. maven-install-plugin
  3. maven-jar-plugin

POM File Source

Here is the content of the POM file.

<?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-filesystem</artifactId>
  <name>Boost Filesystem</name>
  <description>The Boost Filesystem Library provides portable facilities to query and manipulate paths, files, and directories.</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>
  
  <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_filesystem*</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>