promethium-batch-job
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.epi155</groupId> <artifactId>promethium-batch-job</artifactId> <version>0.1-A5</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>io.github.epi155</groupId> <artifactId>promethium-batch-job</artifactId> <version>0.1-A5</version> <!-- mvn release:clean --> <!-- mvn release:prepare --> <!-- git checkout ${tag} --> <!-- mvn deploy --> <!-- git checkout main --> <!-- mvn dependency:tree --> <!-- mvn versions:display-dependency-updates --> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <juniper.version>5.12.1</juniper.version> <lombok.version>1.18.38</lombok.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.deploy.skip>false</maven.deploy.skip> </properties> <name>Batch Utilities (job/step)</name> <description>utilities for batch processing</description> <url>https://github.com/epi155/promethium-batch/tree/main/promethium-batch</url> <developers> <developer> <name>Enrico Pistolesi</name> <email>epi155.dev@gmail.com</email> </developer> </developers> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/epi155/promethium-batch.git</connection> <developerConnection>scm:git:https://github.com/epi155/promethium-batch.git</developerConnection> <url>https://github.com/epi155/promethium-batch/</url> <tag>0.1-A5</tag> </scm> <profiles> <profile> <id>sonatype</id> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <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-no-fork</goal> </goals> </execution> </executions> </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> <configuration> <keyname>5EB3664AFC3A6D35</keyname> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>analyze</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>3.19.0</version> <configuration> <linkXRef>false</linkXRef> <inputEncoding>utf-8</inputEncoding> <minimumTokens>100</minimumTokens> </configuration> <executions> <execution> <id>aggregate</id> <goals> <goal>aggregate-pmd</goal> <goal>aggregate-cpd</goal> </goals> <phase>prepare-package</phase> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <scope>provided</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.17</version> </dependency> <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.5.18</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${juniper.version}</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${juniper.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.epi155</groupId> <artifactId>promethium-batch-fault</artifactId> <version>0.1-A5</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.16.0</version> <configuration> <ruleSet> <ignoreVersions> <ignoreVersion> <type>regex</type> <version>.+-(alpha|beta|M)(-?\d+)?</version> </ignoreVersion> </ignoreVersions> </ruleSet> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.0.1</version> <configuration> <tagNameFormat>@{version}</tagNameFormat> <pushChanges>false</pushChanges> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>buildnumber</id> <phase>validate</phase> <goals> <goal>create</goal> </goals> <configuration> <revisionOnScmFailure>UNKNOWN</revisionOnScmFailure> <doCheck>false</doCheck> <doUpdate>false</doUpdate> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <configuration> <annotationProcessorPaths> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </path> </annotationProcessorPaths> <!-- still need this for IntelliJ --> <release>${maven.compiler.target}</release> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> <dependencies> <!-- upgrade to final ASM 6.0 release --> <!-- https://mvnrepository.com/artifact/org.ow2.asm/asm --> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>9.8</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.2</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> <manifestEntries> <Build-SCMBranch>${scmBranch}</Build-SCMBranch> <Build-Timestamp>${maven.build.timestamp}</Build-Timestamp> <Build-Revision>${buildNumber}</Build-Revision> <Build-OS>${os.name} (${os.arch}) ${os.version}</Build-OS> <Build-Jdk>${java.vm.name} (${java.vm.vendor}) ${java.vm.version}</Build-Jdk> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.1</version> <configuration> <encoding>UTF-8</encoding> <javadocExecutable>/usr/bin/javadoc</javadocExecutable> </configuration> <executions> <execution> <id>attach-javadoc</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>