pom.xml 3.3 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>
7
        <version>0.9.3-SNAPSHOT</version>
8
        <relativePath>../..</relativePath>
9
    </parent>
M
Mathieu Bastian 已提交
10 11

    <groupId>org.gephi</groupId>
12
    <artifactId>io-importer-plugin</artifactId>
13
    <version>0.9.3-SNAPSHOT</version>
M
Mathieu Bastian 已提交
14 15 16 17
    <packaging>nbm</packaging>

    <name>ImportPlugin</name>

E
Eduardo Ramos 已提交
18 19 20 21
    <properties>
        <gephi.apache-poi.version>4.0.0</gephi.apache-poi.version>
    </properties>

M
Mathieu Bastian 已提交
22
    <dependencies>
23 24 25 26
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>graph-api</artifactId>
        </dependency>
27
        <dependency>
M
Mathieu Bastian 已提交
28 29 30
            <groupId>${project.groupId}</groupId>
            <artifactId>db-drivers</artifactId>
        </dependency>
31
        <dependency>
M
Mathieu Bastian 已提交
32
            <groupId>${project.groupId}</groupId>
33
            <artifactId>io-importer-api</artifactId>
M
Mathieu Bastian 已提交
34
        </dependency>
35
        <dependency>
M
Mathieu Bastian 已提交
36 37 38
            <groupId>${project.groupId}</groupId>
            <artifactId>utils-longtask</artifactId>
        </dependency>
39 40 41 42
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>core-library-wrapper</artifactId>
        </dependency>
43 44 45 46
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>utils</artifactId>
        </dependency>
47
        <dependency>
M
Mathieu Bastian 已提交
48 49 50 51 52 53 54 55 56 57 58
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-openide-util</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>
59 60 61
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
E
Eduardo Ramos 已提交
62
            <version>${gephi.apache-poi.version}</version>
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
        </dependency>
        
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>io-processor-plugin</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.netbeans.modules</groupId>
            <artifactId>org-netbeans-modules-masterfs</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.gephi</groupId>
            <artifactId>io-exporter-plugin</artifactId>
            <scope>test</scope>
        </dependency>
M
Mathieu Bastian 已提交
80 81 82 83 84 85 86 87 88
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>nbm-maven-plugin</artifactId>
                <configuration>
                    <publicPackages>
89
                        <publicPackage>org.gephi.io.importer.plugin.*</publicPackage>
M
Mathieu Bastian 已提交
90 91 92 93 94 95
                    </publicPackages>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>