minotaur
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.instaclustr</groupId> <artifactId>minotaur</artifactId> <version>1.0.1</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.instaclustr</groupId> <artifactId>minotaur</artifactId> <name>Instaclustr Minotaur</name> <version>1.0.1</version> <description>Tool for consistent rebuilding of a Cassandra cluster</description> <url>https://github.com/instaclustr/instaclustr-minotaur</url> <inceptionYear>2020</inceptionYear> <developers> <developer> <name>Various</name> <email>support@instaclustr.com</email> <organization>Instaclustr</organization> <organizationUrl>https://www.instaclustr.com</organizationUrl> </developer> </developers> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:git://git@github.com:instaclustr/instaclustr-minotaur.git</connection> <developerConnection>scm:git:ssh://github.com/instaclustr/instaclustr-minotaur.git</developerConnection> <url>git://github.com/instaclustr/instaclustr-minotaur.git</url> </scm> <organization> <name>Instaclustr</name> <url>https://instaclustr.com</url> </organization> <build> <finalName>minotaur</finalName> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>8</source> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <encoding>UTF-8</encoding> <compilerArgument>-Xlint:all</compilerArgument> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${maven.jar.plugin.version}</version> <configuration> <outputDirectory>${outputDirectory}</outputDirectory> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> <manifestEntries> <Git-Commit>${git.commit.id}</Git-Commit> <Build-Time>${git.build.time}</Build-Time> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <version>${maven.git.command.plugin.version}</version> <executions> <execution> <goals> <goal>revision</goal> </goals> </execution> </executions> <configuration> <dotGitDirectory>${project.basedir}/.git</dotGitDirectory> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>${maven.shade.plugin.version}</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer> <mainClass>com.instaclustr.minotaur.cli.Minotaur</mainClass> </transformer> <transformer /> </transformers> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> <exclude>META-INF/*.MF</exclude> <exclude>META-INF/DEPENDENCIES</exclude> <exclude>META-INF/LICENCE</exclude> <exclude>META-INF/NOTICE</exclude> <exclude>META-INF/NOTICE.txt</exclude> <exclude>META-INF/LICENCE.txt</exclude> <exclude>META-INF/LICENSE.txt</exclude> <exclude>META-INF/LICENSE</exclude> <exclude>LICENSE.txt</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>${version.maven.release.plugin}</version> <configuration> <pushChanges>false</pushChanges> <tagNameFormat>v@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <groupId>org.vafer</groupId> <artifactId>jdeb</artifactId> <version>${version.jdeb}</version> <executions> <execution> <phase>package</phase> <goals> <goal>jdeb</goal> </goals> <configuration> <name>${project.artifactId}</name> <deb>${outputDirectory}/[[name]]_${project.version}.deb</deb> <dataSet> <data> <src>${outputDirectory}/${project.build.finalName}.jar</src> <type>file</type> <mapper> <type>perm</type> <prefix>/usr/share/java/</prefix> </mapper> </data> <data> <src>bin/minotaur</src> <type>file</type> <mapper> <type>perm</type> <prefix>/usr/local/bin/</prefix> </mapper> </data> </dataSet> </configuration> </execution> </executions> </plugin> <plugin> <groupId>de.dentrassi.maven</groupId> <artifactId>rpm</artifactId> <version>${version.rpm}</version> <executions> <execution> <phase>package</phase> <goals> <goal>rpm</goal> </goals> <configuration> <packageName>${project.artifactId}</packageName> <group>Applications/Databases</group> <packager>${maintainer}</packager> <skipSigning>true</skipSigning> <entries> <entry> <name>/usr/share/java/${project.build.finalName}.jar</name> <file>${outputDirectory}/${project.build.finalName}.jar</file> </entry> <entry> <name>/usr/local/bin/minotaur</name> <file>${project.basedir}/bin/minotaur</file> <mode>0755</mode> </entry> </entries> <targetDir>${outputDirectory}</targetDir> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <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> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <executions> <execution> <id>injected-nexus-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </execution> </executions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.27.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>byte-buddy</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> <exclusion> <artifactId>byte-buddy-agent</artifactId> <groupId>net.bytebuddy</groupId> </exclusion> </exclusions> </dependency> </dependencies> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <properties> <version.jdeb>1.8</version.jdeb> <nexus.staging.maven.plugin.version>1.6.8</nexus.staging.maven.plugin.version> <maven.source.plugin.version>3.1.0</maven.source.plugin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <java.version>8</java.version> <version.rpm>1.5.0</version.rpm> <maintainer>Various <support@instaclustr.com></maintainer> <maven.javadoc.plugin.version>3.1.1</maven.javadoc.plugin.version> <maven.gpg.plugin.version>1.6</maven.gpg.plugin.version> <maven.compiler.target>1.8</maven.compiler.target> <maven.shade.plugin.version>3.1.1</maven.shade.plugin.version> <maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version> <maven.git.command.plugin.version>2.2.4</maven.git.command.plugin.version> <outputDirectory>${project.build.directory}</outputDirectory> <maven.jar.plugin.version>3.1.1</maven.jar.plugin.version> <version.maven.release.plugin>2.5.3</version.maven.release.plugin> </properties> </project>