pom.xml 2.1 KB
Newer Older
M
Mathieu Bastian 已提交
1 2 3 4 5 6
<?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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <artifactId>gephi-parent</artifactId>
        <groupId>org.gephi</groupId>
M
Mathieu Bastian 已提交
7
        <version>0.9.0</version>
8
		<relativePath>../..</relativePath>
M
Mathieu Bastian 已提交
9 10 11 12
    </parent>

    <groupId>org.gephi</groupId>
    <artifactId>desktop-recent-files</artifactId>
M
Mathieu Bastian 已提交
13
    <version>0.9.0</version>
M
Mathieu Bastian 已提交
14 15 16 17 18 19 20 21 22 23 24
    <packaging>nbm</packaging>

    <name>DesktopRecentFiles</name>

    <dependencies>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>mostrecentfiles-api</artifactId>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
25
            <artifactId>io-importer-api</artifactId>
M
Mathieu Bastian 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>desktop-project</artifactId>
        </dependency>
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-openide-filesystems</artifactId>
        </dependency>
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-openide-util-lookup</artifactId>
        </dependency>
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-openide-util</artifactId>
        </dependency>
43 44 45 46
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-openide-util-ui</artifactId>
        </dependency>
M
Mathieu Bastian 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>nbm-maven-plugin</artifactId>
                <configuration>
                    <publicPackages>
                    </publicPackages>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>