jenkins-read-reco
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.script-xfer-ai</groupId> <artifactId>jenkins-read-reco</artifactId> <version>1.0.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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.script-xfer-ai</groupId> <artifactId>jenkins-read-reco</artifactId> <version>1.0.0</version> <name>Jenkins Overall/Read Troubleshooter</name> <description>Groovy helper script packaged in a tiny JAR</description> <url>https://central.sonatype.com/</url> <!-- Required metadata --> <scm> <!-- Can be a placeholder; doesn’t need to be public --> <url>https://example.invalid/placeholder-scm</url> <connection>scm:git:https://example.invalid/placeholder-scm.git</connection> <developerConnection>scm:git:https://example.invalid/placeholder-scm.git</developerConnection> <tag>HEAD</tag> </scm> <licenses> <license> <name>Apache-2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>script-xfer-ai</id> <name>Script Xfer Bot</name> <email>noreply@example.invalid</email> </developer> </developers> <build> <plugins> <!-- Sonatype Central Publishing plugin --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> <waitUntil>published</waitUntil> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> </plugin> </plugins> </build> <!-- Sign + attach sources/javadoc only when -P release --> <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>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <goals><goal>jar</goal></goals> </execution> </executions> <configuration> <failOnError>false</failOnError> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals><goal>sign</goal></goals> </execution> </executions> <configuration> <keyname>706EC7B885185088</keyname> <!-- If you set a passphrase, either rely on gpg-agent or pass as -Dgpg.passphrase --> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>