Released: Thursday, November 12, 2015. This is the initial release of X Platform 3.0. It includes Core X 3.0.503, Robin 1.3.0, Eagle 1.3.0 and introduces TOA 1.0.0.

USERS OF SERVER MONITORING SHOULD NOT USE THIS RELEASE. THE MONITORING MODEL'S WIRE FORMAT HAS CHANGED IN THE 3.0.1 RELEASE, SO FOR FORWARDS COMPATIBILITY THE 3.0.1 RELEASE SHOULD BE USED.

 See: X Platform 3.0.1

On This Page

Overview

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

Downloads

Login is required for downloads. If you are looking to get started with the X Platform, please contact Neeve!

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>3.0-M2</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-release</id>
	<url>http://nexus.neeveresearch.com/nexus/content/repositories/releases/</url>
	<name>Neeve Release 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/public/</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>3.0.503</version>
</dependency>

Linux Native

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

TOA

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

EAGLE 1.3.0

API

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

Maven Plugin

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

ROBIN 1.3.0

API

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

Maven Plugin

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

Distributions

<dependency>
  <groupId>com.neeve</groupId>
  <artifactId>nvx-robin</artifactId>
  <version>1.3.0</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.0</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.0</version>
  <classifier>nojre-0.0.0-win-x86-64</classifier>
  <type>zip</type>
</dependency>