yamcs-ygw
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.yamcs</groupId> <artifactId>yamcs-ygw</artifactId> <version>0.7.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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.yamcs</groupId> <artifactId>yamcs-ygw</artifactId> <packaging>jar</packaging> <version>0.7.0</version> <name>Yamcs gateway link</name> <url>https://yamcs.org</url> <description> Plugin for connecting Yamcs to the Yamcs gateway. </description> <licenses> <license> <name>GNU Affero General Public License (AGPL)</name> <url>https://www.gnu.org/licenses/agpl-3.0.html</url> </license> </licenses> <scm> <connection>scm:git:git@github.com:yamcs/yamcs-gateway.git</connection> <developerConnection>scm:git:ssh@github.com:yamcs/yamcs-gateway.git</developerConnection> <url>https://github.com/yamcs/yamcs-gateway</url> <tag>HEAD</tag> </scm> <developers> <developer> <id>xpromache</id> <name>Nicolae Mihalache</name> </developer> </developers> <properties> <yamcs.version>5.11.8</yamcs.version> <quickbuf.version>1.4</quickbuf.version> <quickbuf.options>indent=4,allocation=lazy,extensions=embedded</quickbuf.options> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.9.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.yamcs</groupId> <artifactId>yamcs-core</artifactId> <version>${yamcs.version}</version> </dependency> <dependency> <groupId>org.yamcs</groupId> <artifactId>yamcs-web</artifactId> <version>${yamcs.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>us.hebi.quickbuf</groupId> <artifactId>quickbuf-runtime</artifactId> <version>${quickbuf.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.7.1</version> <executions> <execution> <id>make-bundle</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> <configuration> <descriptors> <descriptor>src/main/assembly/bundle.descriptor.xml</descriptor> </descriptors> <tarLongFileMode>posix</tarLongFileMode> <archiverConfig> <directoryMode>0755</directoryMode> <defaultDirectoryMode>0755</defaultDirectoryMode> <fileMode>0644</fileMode> </archiverConfig> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.12.1</version> <configuration> <release>17</release> </configuration> </plugin> <plugin> <groupId>com.github.os72</groupId> <artifactId>protoc-jar-maven-plugin</artifactId> <version>3.11.4</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>run</goal> </goals> <configuration> <protocVersion>3.21.12</protocVersion> <inputDirectories> <include>../proto</include> </inputDirectories> <outputTargets> <outputTarget> <type>quickbuf</type> <pluginArtifact> us.hebi.quickbuf:protoc-gen-quickbuf:${quickbuf.version}</pluginArtifact> <outputOptions>${quickbuf.options}</outputOptions> </outputTarget> </outputTargets> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.yamcs</groupId> <artifactId>yamcs-maven-plugin</artifactId> <version>1.3.1</version> <executions> <execution> <goals> <goal>detect</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <configuration> <release>17</release> <author>false</author> <breakiterator>true</breakiterator> <additionalOptions> <additionalOption>-Xdoclint:none</additionalOption> <additionalOption>-Xdoclint:html</additionalOption> <additionalOption>-Xdoclint:reference</additionalOption> </additionalOptions> <excludePackageNames>org.yamcs.ygw.protobuf</excludePackageNames> </configuration> </plugin> </plugins> </build> <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> <profiles> <profile> <id>yamcs-release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.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-gpg-plugin</artifactId> <version>3.2.2</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <release>17</release> <author>false</author> <breakiterator>true</breakiterator> <links> <link> https://docs.yamcs.org/javadoc/yamcs/latest/</link> </links> <additionalOptions> <additionalOption>-Xdoclint:none</additionalOption> <additionalOption>-Xdoclint:html</additionalOption> <additionalOption>-Xdoclint:reference</additionalOption> </additionalOptions> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>