| POM: |
Show
hide
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (C) 2005-2012 Schlichtherle IT Services.
- All rights reserved. Use is subject to license terms.
-->
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.java.truevfs</groupId>
<artifactId>truevfs-profile</artifactId>
<version>0.10</version>
</parent>
<artifactId>truevfs-profile-full</artifactId>
<name>TrueVFS Profile Full</name>
<description>
Designed for testing purposes only and should not be used in production
environments because of its negative performance impact.
Depends on the default configuration profile and adds the modules
TrueVFS Driver SFX, TrueVFS Extension JMX/JUL and TrueVFS Samples.
The main class of this executable JAR is net.truevfs.samples.access.Nzip.
</description>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>truevfs-profile-default</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>truevfs-driver-sfx</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>truevfs-ext-insight</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>truevfs-ext-logging</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>truevfs-ext-pacemaker</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>net.java.truecommons</groupId>
<artifactId>truecommons-key-hurlfb</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>
|