e
Excerpt |
---|
Release Date: October, 21st 2017 |
...
Overview
- Talon 3.8.33 64 (The core X runtime) - [Release Notes] [Manual] [javadoc]
- Native Runtime 3.8.1322
- Perf 3.8.3364
- Solace Binding 3.8.33 64 - [javadoc]
- JMS Binding 3.8.3364
- Hornet 1.8-M2 M3 (Topic Oriented Application Framework) - [Release Notes] [source] [javadoc]
- Eagle 2.4-M2 M3 (Service Framework) [Release Notes]
- Robin 2.5-M2 M3 (Deployment Orchestration) - [Release Notes]
- Samples 3.8-M2 M3 - [source]
- Apps 3.8-M2 M3 - [source]
Info |
---|
This is a milestone release of 3.8. It is an early access preview of 3.8 and not supported for use in production. |
...
If you are a Maven user, see the section below for maven dependency information.
- Talon Distributions [Linux x86-64] [Win x86-64] [OSX x86-64]
- Hornet [jar]
- Robin Distributions [Linux x86-64] [Win x86-64] [OSX x86-64]
- Robin Jar [jar]
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.
Code Block |
---|
<dependencyManagement> <dependencies> <dependency> <groupId>com.neeve</groupId> <artifactId>nvx-platform-bom</artifactId> <version>3.8-M2<M3</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> |
...
Code Block | ||||
---|---|---|---|---|
| ||||
<properties> <xplatform.version>3.8-M2<M3</xplatform.version> </propertioes> <build> <plugins> <plugin> <groupId>com.neeve</groupId> <artifactId>nvx-platform-maven-plugin</artifactId> <version>${xplatform.version}</version> <executions> <execution> <id>Generate-Message-Model</id> <goals> <goal>adm-generate</goal> </goals> <configuration> <modelFile>${basedir}/src/main/models/my-model.xml</modelFile> <encodingType>Protobuf</encodingType> </configuration> </execution> </executions> </plugin> </plugins> </build> |
...
Components of the platform requiring a X Platform license are stored in our licensed repositories. You can specify the repository credentials provided to you by our license server by editing your ~/.m2M3/settings.xml
Code Block | ||||
---|---|---|---|---|
| ||||
<servers> <server> <id>neeve-licensed</id> <username>YOUR_USERNAME</username> <password> YOUR_PASSWORD </password> </server> </servers> |
...
Tip |
---|
If access to our repositories is blocked by a firewall execute the following steps to install the X jars in your Maven repository Installing X Jars into your Local Maven Repository
Deploying X jars into your Remote Maven Repository
|
...
Code Block |
---|
<dependency> <groupId>com.neeve</groupId> <artifactId>nvx-talon-all</artifactId> <version>3.8.33<64</version> </dependency> |
Linux Native Libraries
...
Code Block |
---|
<dependency> <groupId>com.neeve</groupId> <artifactId>nvx-native</artifactId> <version>3.8.13<22</version> <classifier>linux-x86-64</classifier> </dependency> |
...
Code Block |
---|
<dependency> <groupId>com.neeve</groupId> <artifactId>nvx-solace</artifactId> <version>3.8.33<64</version> </dependency> |
JMS Binding
...
Code Block |
---|
<dependency> <groupId>com.neeve</groupId> <artifactId>nvx-jms</artifactId> <version>3.8.33<64</version> </dependency> |
Core X (Deprecated)
...
Code Block |
---|
<dependency> <groupId>com.neeve</groupId> <artifactId>nvx-core-all</artifactId> <version>3.8.33<64</version> </dependency> |
HORNET
Code Block |
---|
<dependency> <groupId>com.neeve</groupId> <artifactId>nvx-hornet</artifactId> <version>1.8-M2<M3</version> </dependency> |
EAGLE
...
Code Block |
---|
<dependency> <groupId>com.neeve</groupId> <artifactId>nvx-eagle</artifactId> <version>2.4-M2<M3</version> </dependency> |
Maven Plugin
Code Block |
---|
<plugin> <groupId>com.neeve</groupId> <artifactId>nvx-eagle-maven-plugin</artifactId> <version>2.4-M2<M3</version> </plugin> |
ROBIN
API
Code Block |
---|
<dependency> <groupId>com.neeve</groupId> <artifactId>nvx-robin</artifactId> <version>2.5-M2<M3</version> </dependency> |
Maven Plugin
Code Block |
---|
<plugin> <groupId>com.neeve</groupId> <artifactId>nvx-robin-maven-plugin</artifactId> <version>2.5-M2<M3</version> </plugin> |
Distributions
Code Block |
---|
<dependency> <groupId>com.neeve</groupId> <artifactId>nvx-robin</artifactId> <version>2.5-M2<M3</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>2.5-M2<M3</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>2.5-M2<M3</version> <classifier>nojre-0.0.0-win-x86-64</classifier> <type>zip</type> </dependency> |