pom.xml 2.0 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>io-processor-plugin</artifactId>
M
Mathieu Bastian 已提交
13
    <version>0.9.0</version>
M
Mathieu Bastian 已提交
14 15 16 17
    <packaging>nbm</packaging>

    <name>ProcessorPlugin</name>

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

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