Skip to content

Commit

Permalink
Update versions to 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
eduramiba committed Sep 24, 2017
1 parent 47b2dab commit 98bac9b
Show file tree
Hide file tree
Showing 74 changed files with 1,434 additions and 1,434 deletions.
4 changes: 2 additions & 2 deletions modules/AlgorithmsPlugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>gephi-parent</artifactId>
<groupId>org.gephi</groupId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<relativePath>../..</relativePath>
</parent>

<groupId>org.gephi</groupId>
<artifactId>algorithms-plugin</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<packaging>nbm</packaging>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions modules/AppearanceAPI/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>gephi-parent</artifactId>
<groupId>org.gephi</groupId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<relativePath>../..</relativePath>
</parent>

<groupId>org.gephi</groupId>
<artifactId>appearance-api</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<packaging>nbm</packaging>

<name>AppearanceAPI</name>
Expand Down
4 changes: 2 additions & 2 deletions modules/AppearancePlugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>gephi-parent</artifactId>
<groupId>org.gephi</groupId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<relativePath>../..</relativePath>
</parent>

<groupId>org.gephi</groupId>
<artifactId>appearance-plugin</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<packaging>nbm</packaging>

<name>AppearancePlugin</name>
Expand Down
4 changes: 2 additions & 2 deletions modules/AppearancePluginUI/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>gephi-parent</artifactId>
<groupId>org.gephi</groupId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<relativePath>../..</relativePath>
</parent>

<groupId>org.gephi</groupId>
<artifactId>appearance-plugin-ui</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<packaging>nbm</packaging>

<name>AppearancePluginUI</name>
Expand Down
136 changes: 68 additions & 68 deletions modules/BatikWrapper/pom.xml
Original file line number Diff line number Diff line change
@@ -1,68 +1,68 @@
<?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-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>

<groupId>org.gephi</groupId>
<artifactId>batik-wrapper</artifactId>
<version>0.9.2-SNAPSHOT</version>
<packaging>nbm</packaging>

<name>BatikWrapper</name>

<!--
Batik in its own module wrapper because some dependencies define classes
in packages such as org.w3c and javax.xml and Netbeans dependency system will complain in transitive dependencies
-->

<dependencies>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-transcoder</artifactId>
<version>1.9.1</version>
<exclusions>
<!-- Avoid including a copy of javax.xml and org.w3c classes -->
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
<!-- See https://issues.apache.org/jira/browse/BATIK-1197 Non optional dependencies on jython and rhino added in 1.9.1 -->
<!-- Also jython includes another copy of javax.xml and org.w3c classes... -->
<exclusion>
<groupId>org.python</groupId>
<artifactId>jython</artifactId>
</exclusion>
<exclusion>
<groupId>org.mozilla</groupId>
<artifactId>rhino</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>nbm-maven-plugin</artifactId>
<configuration>
<publicPackages>
<publicPackage>org.apache.commons.logging.*</publicPackage>
<publicPackage>javax.xml.*</publicPackage>
<publicPackage>org.w3c.*</publicPackage>
<publicPackage>org.apache.batik.*</publicPackage>
<publicPackage>org.apache.xpath.*</publicPackage>
<publicPackage>org.apache.xalan.*</publicPackage>
<publicPackage>org.apache.xml.*</publicPackage>
<publicPackage>org.xml.sax.*</publicPackage>
</publicPackages>
</configuration>
</plugin>
</plugins>
</build>
</project>
<?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>batik-wrapper</artifactId>
<version>0.9.2</version>
<packaging>nbm</packaging>

<name>BatikWrapper</name>

<!--
Batik in its own module wrapper because some dependencies define classes
in packages such as org.w3c and javax.xml and Netbeans dependency system will complain in transitive dependencies
-->

<dependencies>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-transcoder</artifactId>
<version>1.9.1</version>
<exclusions>
<!-- Avoid including a copy of javax.xml and org.w3c classes -->
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
<!-- See https://issues.apache.org/jira/browse/BATIK-1197 Non optional dependencies on jython and rhino added in 1.9.1 -->
<!-- Also jython includes another copy of javax.xml and org.w3c classes... -->
<exclusion>
<groupId>org.python</groupId>
<artifactId>jython</artifactId>
</exclusion>
<exclusion>
<groupId>org.mozilla</groupId>
<artifactId>rhino</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>nbm-maven-plugin</artifactId>
<configuration>
<publicPackages>
<publicPackage>org.apache.commons.logging.*</publicPackage>
<publicPackage>javax.xml.*</publicPackage>
<publicPackage>org.w3c.*</publicPackage>
<publicPackage>org.apache.batik.*</publicPackage>
<publicPackage>org.apache.xpath.*</publicPackage>
<publicPackage>org.apache.xalan.*</publicPackage>
<publicPackage>org.apache.xml.*</publicPackage>
<publicPackage>org.xml.sax.*</publicPackage>
</publicPackages>
</configuration>
</plugin>
</plugins>
</build>
</project>
4 changes: 2 additions & 2 deletions modules/CoreLibraryWrapper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>gephi-parent</artifactId>
<groupId>org.gephi</groupId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<relativePath>../..</relativePath>
</parent>

<groupId>org.gephi</groupId>
<artifactId>core-library-wrapper</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<packaging>nbm</packaging>

<name>CoreLibraryWrapper</name>
Expand Down
4 changes: 2 additions & 2 deletions modules/DBDrivers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>gephi-parent</artifactId>
<groupId>org.gephi</groupId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<relativePath>../..</relativePath>
</parent>

<groupId>org.gephi</groupId>
<artifactId>db-drivers</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<packaging>nbm</packaging>

<name>DBDrivers</name>
Expand Down
4 changes: 2 additions & 2 deletions modules/DataLaboratoryAPI/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>gephi-parent</artifactId>
<groupId>org.gephi</groupId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<relativePath>../..</relativePath>
</parent>

<groupId>org.gephi</groupId>
<artifactId>datalab-api</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<packaging>nbm</packaging>

<name>DataLaboratoryAPI</name>
Expand Down
4 changes: 2 additions & 2 deletions modules/DataLaboratoryPlugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>gephi-parent</artifactId>
<groupId>org.gephi</groupId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<relativePath>../..</relativePath>
</parent>

<groupId>org.gephi</groupId>
<artifactId>datalab-plugin</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<packaging>nbm</packaging>

<name>DataLaboratoryPlugin</name>
Expand Down
4 changes: 2 additions & 2 deletions modules/DesktopAppearance/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>gephi-parent</artifactId>
<groupId>org.gephi</groupId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<relativePath>../..</relativePath>
</parent>

<groupId>org.gephi</groupId>
<artifactId>desktop-appearance</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<packaging>nbm</packaging>

<name>DesktopAppearance</name>
Expand Down
4 changes: 2 additions & 2 deletions modules/DesktopBanner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>gephi-parent</artifactId>
<groupId>org.gephi</groupId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<relativePath>../..</relativePath>
</parent>

<groupId>org.gephi</groupId>
<artifactId>desktop-banner</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<packaging>nbm</packaging>

<name>DesktopBanner</name>
Expand Down
4 changes: 2 additions & 2 deletions modules/DesktopBranding/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>gephi-parent</artifactId>
<groupId>org.gephi</groupId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<relativePath>../..</relativePath>
</parent>

<groupId>org.gephi</groupId>
<artifactId>desktop-branding</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<packaging>nbm</packaging>

<name>DesktopBranding</name>
Expand Down
4 changes: 2 additions & 2 deletions modules/DesktopContext/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>gephi-parent</artifactId>
<groupId>org.gephi</groupId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<relativePath>../..</relativePath>
</parent>

<groupId>org.gephi</groupId>
<artifactId>desktop-context</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<packaging>nbm</packaging>

<name>DesktopContext</name>
Expand Down
4 changes: 2 additions & 2 deletions modules/DesktopDataLaboratory/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>gephi-parent</artifactId>
<groupId>org.gephi</groupId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<relativePath>../..</relativePath>
</parent>

<groupId>org.gephi</groupId>
<artifactId>desktop-datalab</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<packaging>nbm</packaging>

<name>DesktopDataLaboratory</name>
Expand Down
4 changes: 2 additions & 2 deletions modules/DesktopExport/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>gephi-parent</artifactId>
<groupId>org.gephi</groupId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<relativePath>../..</relativePath>
</parent>

<groupId>org.gephi</groupId>
<artifactId>desktop-io-export</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<packaging>nbm</packaging>

<name>DesktopExport</name>
Expand Down
4 changes: 2 additions & 2 deletions modules/DesktopFilters/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>gephi-parent</artifactId>
<groupId>org.gephi</groupId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<relativePath>../..</relativePath>
</parent>

<groupId>org.gephi</groupId>
<artifactId>desktop-filters</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<packaging>nbm</packaging>

<name>DesktopFilters</name>
Expand Down
4 changes: 2 additions & 2 deletions modules/DesktopGenerate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>gephi-parent</artifactId>
<groupId>org.gephi</groupId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<relativePath>../..</relativePath>
</parent>

<groupId>org.gephi</groupId>
<artifactId>desktop-generate</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>
<packaging>nbm</packaging>

<name>DesktopGenerate</name>
Expand Down

0 comments on commit 98bac9b

Please sign in to comment.