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

    <groupId>org.gephi</groupId>
    <artifactId>graph-api</artifactId>
13
    <version>0.9-SNAPSHOT</version>
M
Mathieu Bastian 已提交
14 15 16 17
    <packaging>nbm</packaging>

    <name>GraphAPI</name>

18 19 20 21 22 23 24 25 26
    <!-- Additional repository for picking up graph-store (built separately) -->
    <repositories>
        <repository>
            <id>gephi-snapshots</id>
            <name>Gephi 3rd Party</name>
            <url>http://nexus.gephi.org/nexus/content/repositories/snapshots/</url>
        </repository>
    </repositories>

M
Mathieu Bastian 已提交
27 28 29 30 31
    <dependencies>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>project-api</artifactId>
        </dependency>
32 33
        <dependency>
            <groupId>${project.groupId}</groupId>
M
Mathieu Bastian 已提交
34 35 36 37 38 39
            <artifactId>graphstore-api</artifactId>
            <version>0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>graphstore-impl</artifactId>
40 41 42 43 44 45
            <version>0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-openide-util-lookup</artifactId>
        </dependency>
M
Mathieu Bastian 已提交
46 47 48 49 50 51 52 53 54 55
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>nbm-maven-plugin</artifactId>
                <configuration>
                    <publicPackages>
                        <publicPackage>org.gephi.graph.spi</publicPackage>
56
                        <publicPackage>org.gephi.graph.api</publicPackage>
M
Mathieu Bastian 已提交
57
                        <publicPackage>org.gephi.attribute.api</publicPackage>
58 59
                        <publicPackage>org.gephi.attribute.spi</publicPackage>
                        <publicPackage>org.gephi.attribute.time</publicPackage>
M
Mathieu Bastian 已提交
60 61 62 63 64 65
                    </publicPackages>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>