io-processor-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.gephi</groupId> <artifactId>io-processor-plugin</artifactId> <version>0.9.2</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.9.2</version> <relativePath>../..</relativePath> </parent> <groupId>org.gephi</groupId> <artifactId>io-processor-plugin</artifactId> <version>0.9.2</version> <packaging>nbm</packaging> <name>ProcessorPlugin</name> <dependencies> <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> <artifactId>io-importer-api</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>utils-longtask</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>utils</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>core-library-wrapper</artifactId> </dependency> <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>