On This Page

Overview

The 1.9.275 Release of the X Platform is comprised of the following components:

This milestone release includes many bug fixes, improvements and new features in Core X and TOA. It also introduce an X Platform Maven BOM (Bill of Materials) that ties together the various release artifacts.

 

Downloads

Login is required for the following direct downloads. If you are a Maven user, see the section below for maven dependency information.

Maven

Bill of Materials

You can add the following to your pom's dependency management section to specify the versions of the artifacts for this relate. Note that this mechanism does not specify maven plugin versions. 

<dependencyManagement>
	<dependencies>
		<dependency>
			<groupId>com.neeve</groupId>
			<artifactId>nvx-platform-bom</artifactId>
			<version>${nvx.platform.version}</version>
			<type>pom</type>
			<scope>import</scope>
		</dependency>
	</dependencies>
</dependencyManagement>

Repository Configuration

You can use the following Maven repositories and dependencies if you are a maven user.

<repository>
	<id>neeve-milestone</id>
	<url>http://nexus.neeveresearch.com/nexus/content/repositories/milestones/</url>
	<name>Neeve Milestone Repo</name>
	<snapshots>
		<enabled>false</enabled>
	</snapshots>
	<releases>
		<enabled>true</enabled>
	</releases>
</repository>

<pluginRepository>
	<id>neeve-milestone</id>
	<url>http://nexus.neeveresearch.com/nexus/content/repositories/milestones/</url>
	<name>Neeve Milestone Repo</name>
	<snapshots>
		<enabled>false</enabled>
	</snapshots>
	<releases>
		<enabled>true</enabled>
	</releases>
</pluginRepository>

<repository>
	<id>neeve-public </id>
	<url>http://nexus.neeveresearch.com/nexus/content/repositories/milestones/</url>
	<name>Neeve Public Repo</name>
	<snapshots>
		<enabled>true</enabled>
	</snapshots>
	<releases>
		<enabled>true</enabled>
	</releases>
</repository>

Dependencies

Core X

Platform neutral (non native)

<dependency>
  <groupId>com.neeve</groupId>
  <artifactId>nvx-core-all</artifactId>
  <version>1.9.275</version>
</dependency>

Linux Native

<dependency>
  <groupId>com.neeve</groupId>
  <artifactId>nvx-core-all</artifactId>
  <version>1.9.275</version>
  <classifier>linux-x86-64</classifier>
</dependency>

TOA

<dependency>
  <groupId>com.neeve</groupId>
  <artifactId>nvx-toa</artifactId>
  <version>1.0-M12</version>
</dependency>

EAGLE 1.3-M7

API

<dependency>
  <groupId>com.neeve</groupId>
  <artifactId>nvx-eagle</artifactId>
  <version>1.3-M7</version>
</dependency>

Maven Plugin

<plugin>
  <groupId>com.neeve</groupId>
  <artifactId>nvx-eagle-maven-plugin</artifactId>
  <version>1.3-M7</version>
</plugin>

ROBIN 1.3-M7

API

<dependency>
  <groupId>com.neeve</groupId>
  <artifactId>nvx-robin</artifactId>
  <version>1.3-M7</version>
</dependency>

Maven Plugin

<plugin>
  <groupId>com.neeve</groupId>
  <artifactId>nvx-robin-maven-plugin</artifactId>
  <version>1.3-M7</version>
</plugin>

Distributions

<dependency>
  <groupId>com.neeve</groupId>
  <artifactId>nvx-robin</artifactId>
  <version>1.3-M7</version>
  <classifier>nojre-0.0.0-linux-x86-64</classifier>
  <type>.tar.gz</type>
</dependency>


<dependency>
  <groupId>com.neeve</groupId>
  <artifactId>nvx-robin</artifactId>
  <version>1.3-M7</version>
  <classifier>nojre-0.0.0-osx-x86-64</classifier>
  <type>.tar.gz</type>
</dependency>


<dependency>
  <groupId>com.neeve</groupId>
  <artifactId>nvx-robin</artifactId>
  <version>1.3-M7</version>
  <classifier>nojre-0.0.0-win-x86-64</classifier>
  <type>zip</type>
</dependency>