node-agent2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.renci.node-agent2</groupId>
<artifactId>node-agent2</artifactId>
<version>0.2.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>
<groupId>org.renci.node-agent2</groupId>
<artifactId>node-agent2</artifactId>
<version>0.2.2</version>
<packaging>pom</packaging>
<name>node-agent2</name>
<modules>
<module>agentlib</module>
<module>agent</module>
<module>null-agent</module>
<module>client</module>
</modules>
<ciManagement>
<system>hudson</system>
<url>http://ci-dev.renci.org/hudson/view/GENI-ORCA/</url>
</ciManagement>
<licenses>
<license>
<name>Eclipse Public Licence, Version 1.0</name>
<url>https://www.eclipse.org/legal/epl-v10.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<description>
NodeAgent2 is a piece of middleware invoked by Ant handler tasks from ORCA on one side,
and speaks the substrate native APIs on the other.
The invocation happens over a remotable interface,
making it possible for the ORCA AM invoking the task to be on one host and the target of the tasks,
where NA2 executes, on another.
</description>
<url>https://github.com/RENCI-NRIG/nodeagent2</url>
<organization>
<name>RENCI</name>
<url>http://www.renci.org</url>
</organization>
<developers>
<developer>
<id>ibaldin</id>
<name>Ilya Baldin</name>
<email>ibaldin@renci.org</email>
</developer>
<developer>
<id>vjorlikowski</id>
<name>Victor Orlikowki</name>
<email>vjo@duke.edu</email>
</developer>
</developers>
<properties>
<orca.tools.build.version>1.0</orca.tools.build.version>
<orca.repository.id>geni-orca-libs</orca.repository.id>
<orca.snap.repository.id>geni-orca-snapshot</orca.snap.repository.id>
<orca.repository.url>http://ci-dev.renci.org/nexus/content/repositories/geni-orca-libs</orca.repository.url>
<orca.snap.repository.url>http://ci-dev.renci.org/nexus/content/repositories/geni-orca-snapshot/</orca.snap.repository.url>
<orca.website.id>orca.website</orca.website.id>
<orca.website.url>dav:https://geni-orca.renci.org/orca-doc/current</orca.website.url>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.7</java.version>
<spring.boot.version>1.5.3.RELEASE</spring.boot.version>
</properties>
<repositories>
<!-- Orca main repository -->
<!--
<repository>
<id>${orca.repository.id}</id>
<name>Orca Project Maven Repository</name>
<url>http://ci-dev.renci.org/nexus/content/repositories/geni-orca-libs</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
-->
<!-- ORCA snapshots -->
<!--
<repository>
<id>${orca.snap.repository.id}</id>
<url>${orca.snap.repository.url}</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
-->
<repository>
<id>spring-releases</id>
<url>https://repo.spring.io/libs-release</url>
</repository>
</repositories>
<scm>
<connection>scm:git:git@github.com:RENCI-NRIG/nodeagent2.git</connection>
<developerConnection>scm:git:git@github.com:RENCI-NRIG/nodeagent2.git</developerConnection>
<url>https://github.com/RENCI-NRIG/nodeagent2</url>
<tag>node-agent2-0.2.2</tag>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/RENCI-NRIG/nodeagent2</url>
</issueManagement>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.10</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring.boot.version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${spring.boot.version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>2.4.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<!-- The configuration for the Maven release plugin should include disabling
the release profile that is part of the Maven Super POM, since we are using
our own profile, and specify the deploy goal together with the activation
of our release profile -->
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>