
<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>it.tidalwave.netbeans</groupId>
        <artifactId>openbluesky</artifactId>
        <version>0.16</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <groupId>it.tidalwave.netbeans</groupId>
    <artifactId>openbluesky-modules</artifactId>
    <packaging>pom</packaging>
    <version>0.16</version>
    <name>OpenBlueSky (modules)</name>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>it.tidalwave.thesefoolishthings</groupId>
                <artifactId>thesefoolishthings</artifactId>
                <version>${thesefoolishthings.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>

            <!-- PlatformX -->
            <dependency>
                <groupId>com.kenai.nbpwr</groupId>
                <artifactId>org-netbeans-platformx-eventbus-api</artifactId>
                <version>1.0.4</version>
            </dependency>
            <dependency>
                <groupId>com.kenai.nbpwr</groupId>
                <artifactId>org-netbeans-platformx-centrallookup</artifactId>
                <version>1.1.3</version>
            </dependency>

            <dependency>
                <groupId>it.tidalwave.superpom</groupId>
                <artifactId>platform</artifactId>
                <version>${netbeans.version}-1</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>it.tidalwave.superpom</groupId>
                <artifactId>libraries</artifactId>
                <version>${libraries.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>

            <dependency>
                <groupId>ch.qos.logback</groupId>
                <artifactId>logback-classic</artifactId>
                <version>${logback.version}</version>
            </dependency>
            <dependency>
                <groupId>org.projectlombok</groupId>
                <artifactId>lombok</artifactId>
                <version>${tft.lombok.version}</version>
            </dependency>
            <dependency>
                <groupId>com.kenai.nbpwr</groupId>
                <artifactId>org-slf4j-jdk14</artifactId>
                <version>1.6.1-201106101300</version>
            </dependency>
            <dependency>
                <groupId>com.kenai.nbpwr</groupId>
                <artifactId>org-hibernate-all-derby</artifactId>
                <version>3.2.6-201110312110</version>
            </dependency>
            <dependency>
                <groupId>com.kenai.nbpwr</groupId>
                <artifactId>ch-randelshofer-quaqua</artifactId>
                <version>8.0-201111011200</version>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <dependencies>
        <dependency>
            <groupId>com.kenai.nbpwr</groupId>
            <artifactId>javax-annotation</artifactId>
        </dependency>
        <dependency>
            <groupId>com.kenai.nbpwr</groupId>
            <artifactId>org-slf4j-jdk14</artifactId>
<!--            <scope>provided</scope>-->
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <scope>provided</scope>
        </dependency>

        <!-- TEST DEPENDENCIES -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-library</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>nbm-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <useDefaultManifestFile>true</useDefaultManifestFile>
                </configuration>
            </plugin>

        </plugins>
    </build>

    <modules>
        <module>PlatformEnhancements/Actions</module>
        <module>PlatformEnhancements/CapabilitiesProvider</module>
        <module>PlatformEnhancements/EnhancedDataObject</module>
        <module>PlatformEnhancements/Docking</module>
        <module>PlatformEnhancements/Explorer</module>
        <module>PlatformEnhancements/FileSystemNode</module>
        <module>PlatformEnhancements/JPA</module>
        <module>PlatformEnhancements/LookAndFeel</module>
        <module>PlatformEnhancements/Nodes</module>
        <module>PlatformEnhancements/QuaquaCustomizations</module>
        <module>PlatformEnhancements/Roles</module>
        <module>PlatformEnhancements/Utilities</module>
        <module>PlatformEnhancements/VisualLibrary</module>
        <module>PlatformEnhancements/Windows</module>

        <module>Hierarchy/Hierarchy</module>
        <module>Hierarchy/HierarchyExplorer</module>
        <module>Hierarchy/HierarchySimple</module>
        <module>Hierarchy/HierarchyNode</module>

        <module>Persistence/Persistence</module>
        <module>Persistence/PersistenceMaintenance</module>
        <module>Persistence/PersistenceProvider</module>
        <module>Persistence/PersistenceSPI</module>

        <module>Miscellaneous/About</module>
        <module>Miscellaneous/DownloadProgressPane</module>
        <module>Miscellaneous/DragAndDrop</module>
        <module>Miscellaneous/FileSystemSync</module>
        <module>Miscellaneous/IndexedDataObject</module>
        <module>Miscellaneous/IndexedFileSystem</module>
        <module>Miscellaneous/LicensePanel</module>
        <module>Miscellaneous/LoggerConfiguration</module>
        <module>Miscellaneous/RenameFileAction</module>
        <module>Miscellaneous/RendezVous</module>
        <module>Miscellaneous/SoundPlayer</module>
        <module>Miscellaneous/Swing</module>
        <module>Miscellaneous/TestUtilities</module>

        <module>Workspace/WorkspaceManager</module>
        <module>Workspace/WorkspaceManagerProvider</module>

        <module>Test/AutomatedTesting</module>

        <module>Examples</module>
    </modules>

</project>
