nmf-platform
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>int.esa.nmf.mission.simulator.moservices.impl</groupId> <artifactId>nmf-platform</artifactId> <version>1.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed under the European Space Agency Public License, Version 2.0 You may not use this file except in compliance with the License. Except as expressly set forth in this License, the Software is provided to You on an "as is" basis and without warranties of any kind, including without limitation merchantability, fitness for a particular purpose, absence of defects or errors, accuracy or non-infringement of intellectual property rights. See the License for the specific language governing permissions and limitations under the License. --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>int.esa.nmf</groupId> <artifactId>parent</artifactId> <version>1.2.0</version> <relativePath/> </parent> <groupId>int.esa.nmf.mission.simulator.moservices.impl</groupId> <artifactId>nmf-platform</artifactId> <packaging>jar</packaging> <name>ESA NMF Mission Simulator - Platform Services Implementation</name> <description>The ESA/TU Graz implementation of the Platform services</description> <url>http://www.esa.int</url> <organization> <name>ESA</name> <url>http://www.esa.int</url> </organization> <licenses> <license> <name>The European Space Agency Public License, Version 2.0</name> <url>https://raw.github.com/esa/CCSDS_APPS/master/LICENCE.md</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:esa/NMF_MISSION_SOFTWARE_SIMULATOR.git</connection> <developerConnection>scm:git:git@github.com:esa/NMF_MISSION_SOFTWARE_SIMULATOR.git</developerConnection> <url>https://github.com/esa/NMF_MISSION_SOFTWARE_SIMULATOR</url> </scm> <developers> <developer> <id>CesarCoelho</id> <name>César Coelho</name> <email>Cesar.Coelho@esa.int</email> <url>https://github.com/CesarCoelho</url> </developer> </developers> <dependencies> <dependency> <groupId>int.esa.nmf.core.moservices.impl</groupId> <artifactId>nmf-platform-generic</artifactId> </dependency> <dependency> <groupId>int.esa.opssat</groupId> <artifactId>spacecraft-simulator</artifactId> <version>1.2.0</version> </dependency> <dependency> <groupId>int.esa.opssat</groupId> <artifactId>image-debayer</artifactId> <version>1.2.0</version> </dependency> </dependencies> <build> <resources> <resource> <directory>${basedir}/..</directory> <includes> <include>LICENCE.md</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>2.5.2</version> <configuration> <findbugsXmlOutput>true</findbugsXmlOutput> <findbugsXmlWithMessages>true</findbugsXmlWithMessages> <xmlOutput>true</xmlOutput> </configuration> </plugin> </plugins> </reporting> </project>