SettingsManager
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.tango-controls.ds</groupId> <artifactId>SettingsManager</artifactId> <version>5.4</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.ds</groupId> <artifactId>SettingsManager</artifactId> <version>5.4</version> <packaging>jar</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> </properties> <name>SettingsManager Tango server</name> <description>SettingsManager Tango server</description> <url>https://gitlab.com/tango-controls/SettingsManager</url> <licenses> <license> <name>GPL-3.0</name> <url>https://www.gnu.org/licenses/gpl-3.0.html</url> </license> </licenses> <developers> <developer> <id>poncet</id> <name>Faranguiss Poncet</name> <email>poncet@esrf.fr</email> <organization>ESRF</organization> <organizationUrl>http://esrf.eu</organizationUrl> <roles> <role>Maintainer</role> </roles> <timezone>1</timezone> </developer> </developers> <scm> <connection>scm:git:git@gitlab.com:tango-controls/${project.artifactId}.git</connection> <developerConnection>scm:git:git@gitlab.com:tango-controls/${project.artifactId}.git</developerConnection> <url>https://gitlab.com/tango-controls/${project.artifactId}</url> <tag>5.4</tag> </scm> <dependencies> <!-- https://mvnrepository.com/artifact/org.tango-controls/JTango remote maven central --> <dependency> <groupId>org.tango-controls</groupId> <artifactId>JTango</artifactId> <!-- all versions < 9.7.0 (version 9.7.0 has a bug (https://gitlab.com/tango-controls/JTango/-/issues/131) --> <version>[ , 9.7.0)</version> <type>pom</type> </dependency> <!-- https://mvnrepository.com/artifact/org.tango-controls.atk/TangoATK remote maven central --> <dependency> <groupId>org.tango-controls.atk</groupId> <artifactId>ATKCore</artifactId> <version>[9.4.0 , ]</version> </dependency> <dependency> <groupId>org.tango-controls.atk</groupId> <artifactId>ATKWidget</artifactId> <version>[9.4.0 , ]</version> </dependency> </dependencies> <build> <plugins> <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.3.0</version> <configuration> <archive> <manifest> <mainClass>org.tango.settingsmanager.SettingsManager</mainClass> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.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>3.0.0</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.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> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.10.0</version> </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>