manager.agent.remote
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.openbase.bco</groupId>
<artifactId>manager.agent.remote</artifactId>
<version>1.6.9</version>
</dependency><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.openbase.bco</groupId>
<artifactId>manager.agent.remote</artifactId>
<packaging>jar</packaging>
<name>BCO Manager Agent Remote</name>
<parent>
<groupId>org.openbase.bco</groupId>
<artifactId>manager.agent</artifactId>
<version>1.6.9</version>
</parent>
<url>https://github.com/openbase/bco.manager/wiki</url>
<licenses>
<license>
<name>LGPLv3</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${dependency.org.codehaus.mojo.license-maven-plugin.version}</version>
<configuration>
<licenseName>lgpl_v3</licenseName>
</configuration>
<executions>
<execution>
<id>first</id>
<goals>
<goal>update-file-header</goal>
</goals>
<phase>process-sources</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20.1</version>
<configuration>
<!-- disable test for this submodule because code does not contain tests -->
<!-- this speeds up the project compilation time -->
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.openbase.bco</groupId>
<artifactId>manager.agent.lib</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>