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

    <groupId>org.gephi</groupId>
12
    <artifactId>ui-utils</artifactId>
M
Mathieu Bastian 已提交
13
    <version>0.9.0</version>
M
Mathieu Bastian 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
    <packaging>nbm</packaging>

    <name>UIUtils</name>

    <dependencies>
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-openide-util</artifactId>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>utils</artifactId>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
29
            <artifactId>graph-api</artifactId>
M
Mathieu Bastian 已提交
30 31 32
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
33
            <artifactId>lib.validation</artifactId>
M
Mathieu Bastian 已提交
34 35
        </dependency>
        <dependency>
36
            <groupId>${project.groupId}</groupId>
37
            <artifactId>core-library-wrapper</artifactId>
M
Mathieu Bastian 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
        </dependency>
    </dependencies>

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