tools-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.gephi</groupId> <artifactId>tools-plugin</artifactId> <version>0.10.1</version> </dependency>
<?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.10.1</version> <relativePath>../..</relativePath> </parent> <groupId>org.gephi</groupId> <artifactId>tools-plugin</artifactId> <version>0.10.1</version> <packaging>nbm</packaging> <name>ToolsPlugin</name> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>algorithms-plugin</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>datalab-api</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>graph-api</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>tools-api</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>visualization</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>desktop-icons</artifactId> </dependency> <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-nodes</artifactId> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-windows</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>utils</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>project-api</artifactId> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-explorer</artifactId> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-netbeans-modules-settings</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ui-utils</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ui-components</artifactId> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-filesystems</artifactId> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-awt</artifactId> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-util-ui</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.netbeans.utilities</groupId> <artifactId>nbm-maven-plugin</artifactId> <configuration> <publicPackages> </publicPackages> </configuration> </plugin> </plugins> </build> </project>