Jive
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.tango-controls</groupId> <artifactId>Jive</artifactId> <version>7.45</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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.tango-controls</groupId> <artifactId>Jive</artifactId> <version>7.45</version> <name>Jive</name> <description>Jive</description> <url>https://gitlab.com/tango-controls/jive</url> <packaging>jar</packaging> <scm> <connection>scm:git:git@gitlab.com:tango-controls/jive.git</connection> <developerConnection>scm:git:git@gitlab.com:tango-controls/jive.git</developerConnection> <url>https://gitlab.com/tango-controls/jive</url> <tag>7.45</tag> </scm> <licenses> <license> <name>GPL-3.0</name> <url>https://www.gnu.org/licenses/gpl-3.0.html</url> </license> </licenses> <developers> <developer> <id>pons</id> <name>Jean Luc Pons</name> <email>pons@esrf.fr</email> <organization>ESRF</organization> <organizationUrl>http://esrf.eu</organizationUrl> <roles> <role>Maintainer</role> </roles> <timezone>1</timezone> </developer> </developers> <dependencies> <dependency> <groupId>org.tango-controls</groupId> <artifactId>JSSHTerminal</artifactId> <version>[1.17, )</version> </dependency> <dependency> <groupId>org.tango-controls.atk</groupId> <artifactId>ATKCore</artifactId> <version>[9.3.22, )</version> </dependency> <dependency> <groupId>org.tango-controls.atk</groupId> <artifactId>ATKWidget</artifactId> <version>[9.3.22, )</version> </dependency> <dependency> <groupId>org.tango-controls.gui</groupId> <artifactId>LogViewer</artifactId> <version>[2.1.0, )</version> <exclusions> <exclusion> <groupId>org.tango-controls</groupId> <artifactId>JTangoServer</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.tango-controls</groupId> <artifactId>Astor</artifactId> <version>[7.4.2, )</version> <exclusions> <exclusion> <groupId>org.tango-controls</groupId> <artifactId>Jive</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.tango-controls.gui</groupId> <artifactId>ATKPanel</artifactId> <version>[5.10, 6.0)</version> <exclusions> <exclusion> <groupId>org.tango-controls.atk</groupId> <artifactId>ATKCore</artifactId> </exclusion> <exclusion> <groupId>org.tango-controls.atk</groupId> <artifactId>ATKWidget</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <source>17</source> <target>17</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <useReleaseProfile>true</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <autoVersionSubmodules>true</autoVersionSubmodules> <tagNameFormat>@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> <configuration> <archive> <manifest> <mainClass>jive3.MainPanel</mainClass> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.3.0</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifest> <mainClass>jive3.MainPanel</mainClass> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> <executions> <execution> <id>executable</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>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</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <additionalparam>-Xdoclint:none</additionalparam> <additionalJOption>-Xdoclint:none</additionalJOption> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.10.0</version> </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>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> <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> </project>