pom.xml 2.3 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>ui-components</artifactId>
M
Mathieu Bastian 已提交
13
    <version>0.9.0</version>
M
Mathieu Bastian 已提交
14 15 16 17 18 19
    <packaging>nbm</packaging>

    <name>UIComponents</name>

    <dependencies>
        <dependency>
20
            <groupId>${project.groupId}</groupId>
21
            <artifactId>core-library-wrapper</artifactId>
M
Mathieu Bastian 已提交
22 23 24
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
25
            <artifactId>ui-library-wrapper</artifactId>
M
Mathieu Bastian 已提交
26
        </dependency>
27 28
        <dependency>
            <groupId>${project.groupId}</groupId>
29
            <artifactId>ui-utils</artifactId>
M
Mathieu Bastian 已提交
30 31 32 33 34 35 36 37 38
        </dependency>
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-openide-awt</artifactId>
        </dependency>
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-openide-util</artifactId>
        </dependency>
39 40 41 42
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-openide-util-ui</artifactId>
        </dependency>
43 44 45 46
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-openide-nodes</artifactId>
        </dependency>
M
Mathieu Bastian 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-openide-windows</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>nbm-maven-plugin</artifactId>
                <configuration>
                    <publicPackages>
60
                        <publicPackage>org.gephi.ui.components.*</publicPackage>
M
Mathieu Bastian 已提交
61 62 63 64 65 66
                    </publicPackages>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>