yamcs-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.yamcs</groupId>
<artifactId>yamcs-api</artifactId>
<version>5.13.0</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>
<parent>
<groupId>org.yamcs</groupId>
<artifactId>yamcs</artifactId>
<version>5.13.0</version>
</parent>
<artifactId>yamcs-api</artifactId>
<packaging>jar</packaging>
<name>Yamcs :: API</name>
<description>Used by external clients to communicate with Yamcs</description>
<licenses>
<license>
<name>GNU Lesser General Public License (LGPL)</name>
<url>https://www.gnu.org/licenses/lgpl-3.0.html</url>
</license>
</licenses>
<properties>
<javaModuleName>org.yamcs.api</javaModuleName>
</properties>
<dependencies>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>${project.build.directory}/generated-resources/protobuf</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.yamcs</groupId>
<artifactId>yamcs-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>protoc</goal>
</goals>
<configuration>
<writeDescriptorSet>true</writeDescriptorSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>