webx-relay
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>eu.ill</groupId> <artifactId>webx-relay</artifactId> <version>1.5.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- WebX Relay Copyright (C) 2023 Institut Laue-Langevin This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. --> <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>eu.ill</groupId> <artifactId>webx-relay</artifactId> <version>1.5.1</version> <packaging>jar</packaging> <url>https://github.com/ILLGrenoble/webx-relay</url> <name>${project.groupId}:${project.artifactId}</name> <description>The WebX Relay library connecting a WebX Engine to a WebX Client.</description> <licenses> <license> <name>GPL-v3.0</name> <url>http://www.gnu.org/licenses/gpl-3.0.txt</url> </license> </licenses> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <slf4j.version>2.0.17</slf4j.version> <jeromq.version>0.6.0</jeromq.version> <!-- Maven plugin version --> <license-maven-plugin.version>4.1</license-maven-plugin.version> <maven-source-plugin.version>3.3.0</maven-source-plugin.version> <maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version> <maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version> <!-- End maven plugin versions --> </properties> <organization> <name>Institut Laue-Langevin</name> <url>https://www.ill.eu</url> </organization> <developers> <developer> <id>stuartcaunt</id> <name>Stuart Caunt</name> <email>caunt@ill.eu</email> <organization>Institut Laue-Langevin</organization> <organizationUrl>https://www.ill.eu</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> </developer> <developer> <id>jamhall</id> <name>Jamie Hall</name> <email>hall@ill.eu</email> <organization>Institut Laue-Langevin</organization> <organizationUrl>https://www.ill.eu</organizationUrl> <roles> <role>developer</role> </roles> </developer> </developers> <scm> <connection>scm:git:git@github.com:ILLGrenoble/webx-relay.git</connection> <developerConnection>scm:git:ssh://github.com:ILLGrenoble/webx-relay.git</developerConnection> <url>https://github.com/ILLGrenoble/webx-relay/tree/master</url> </scm> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.zeromq</groupId> <artifactId>jeromq</artifactId> <version>${jeromq.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <!-- Plugin to check that all source files have the appropriate open source license header. This will fail the build if any source files don't have the open source license header. To actually apply the header to new source files, run: mvn license:format --> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>${license-maven-plugin.version}</version> <configuration> <licenseSets> <licenseSet> <header>src/etc/header.txt</header> <headerDefinitions> <headerDefinition>src/etc/headers.xml</headerDefinition> </headerDefinitions> <excludes> <exclude>**/README</exclude> <exclude>**/LICENSE</exclude> <exclude>**/LICENSE.BSD</exclude> <exclude>src/etc</exclude> <exclude>src/test/resources/**</exclude> <exclude>src/main/resources/**</exclude> </excludes> </licenseSet> </licenseSets> </configuration> <executions> <execution> <phase>deploy</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>17</source> <target>17</target> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <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> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <deploymentName>${project.artifactId}-${project.version}</deploymentName> <autoPublish>true</autoPublish> <waitUntil>validated</waitUntil> </configuration> </plugin> <plugin> <!-- Deploy a "-sources.jar" along with build --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <!-- Deploy a "-javadoc.jar" along with build --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <configuration> <source>17</source> </configuration> <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.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>