Arquivos
gephi/modules/PerspectiveAPI/pom.xml
T
Mathieu Bastian cbc252297f Formatting
2012-10-13 18:15:24 -07:00

56 linhas
2.0 KiB
XML

<?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>
<version>0.8.2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>
<groupId>org.gephi</groupId>
<artifactId>perspective-api</artifactId>
<version>0.8.2-SNAPSHOT</version>
<packaging>nbm</packaging>
<name>PerspectiveAPI</name>
<dependencies>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-util-lookup</artifactId>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-util</artifactId>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-windows</artifactId>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-filesystems</artifactId>
</dependency>
<dependency>
<groupId>org.netbeans.api</groupId>
<artifactId>org-openide-nodes</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>nbm-maven-plugin</artifactId>
<configuration>
<publicPackages>
<publicPackage>org.gephi.perspective.api</publicPackage>
<publicPackage>org.gephi.perspective.spi</publicPackage>
</publicPackages>
</configuration>
</plugin>
</plugins>
</build>
</project>