padla
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ru.progrm-jarvis</groupId> <artifactId>padla</artifactId> <version>1.0.0-rc.11</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>ru.progrm-jarvis</groupId> <artifactId>padla</artifactId> <version>1.0.0-rc.11</version> <modules> <module>padla-bom</module> <module>padla-parent</module> </modules> <packaging>pom</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version.minimal>8</java.version.minimal> </properties> <name>PADLA for Java</name> <description>Pack of Java utilities for various needs, this is not intended for use as a dependency</description> <url>https://padla.progrm-jarvis.ru/</url> <inceptionYear>2019</inceptionYear> <licenses> <license> <name>Apache License 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/JarvisCraft/padla</url> <connection>scm:git:git://github.com:JarvisCraft/padla.git</connection> <developerConnection>scm:git:git@github.com:JarvisCraft/padla.git</developerConnection> </scm> <distributionManagement> <repository> <!-- This one is used for automatic sync with Maven Central --> <id>sonatype-ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sonatype-ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <developers> <developer> <id>progrm-jarvis</id> <name>JARvis PROgrammer (Peter P.)</name> <email>mrjarviscraft@gmail.com</email> <url>https://github.com/JarvisCraft</url> <roles> <role>Lead developer</role> </roles> <timezone>3</timezone> <properties> <social.vk>PROgrm_JARvis</social.vk> <social.twitter>PROgrm_JARvis</social.twitter> <social.telegram>PROgrm_JARvis</social.telegram> </properties> </developer> </developers> <build> <defaultGoal> <!-- required due to use of MultiReleaseJar and Jigsaw modules --> package <!-- snapshots should end up in local Maven repository by default --> install </defaultGoal> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <configuration> <fork>true</fork> <release>${java.version.minimal}</release> <showWarnings>true</showWarnings> <showDeprecation>true</showDeprecation> <compilerArgs> <!-- Enable all lints except for: - `processing`: gets triggered by documenting annotations --> <compilerArg>-Xlint:all,-processing</compilerArg> </compilerArgs> </configuration> <executions> <execution> <!-- Minimal required version for Java 9 modules --> <id>java-9</id> <goals> <goal>compile</goal> </goals> <configuration> <release>9</release> <multiReleaseOutput>true</multiReleaseOutput> <compileSourceRoots> <compileSourceRoot>${project.basedir}/src/main/java9</compileSourceRoot> </compileSourceRoots> </configuration> </execution> <execution> <id>java-11</id> <goals> <goal>compile</goal> </goals> <configuration> <release>11</release> <multiReleaseOutput>true</multiReleaseOutput> <compileSourceRoots> <compileSourceRoot>${project.basedir}/src/main/java11</compileSourceRoot> </compileSourceRoots> </configuration> </execution> <execution> <id>java-17</id> <goals> <goal>compile</goal> </goals> <configuration> <release>17</release> <multiReleaseOutput>true</multiReleaseOutput> <compileSourceRoots> <compileSourceRoot>${project.basedir}/src/main/java17</compileSourceRoot> </compileSourceRoots> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> <configuration> <archive> <manifestEntries> <Multi-Release>true</Multi-Release> </manifestEntries> </archive> </configuration> </plugin> <!-- Code-generation --> <plugin> <groupId>org.projectlombok</groupId> <artifactId>lombok-maven-plugin</artifactId> <version>1.18.20.0</version> </plugin> <plugin> <groupId>org.apache.drill.tools</groupId> <artifactId>drill-fmpp-maven-plugin</artifactId> <version>1.20.2</version> <executions> <execution> <id>generate-fmpp</id> <phase>generate-sources</phase> <goals> <goal>generate</goal> </goals> <configuration> <config>src/main/freemarker/config.fmpp</config> <templates>src/main/freemarker/templates</templates> <output>${project.build.directory}/generated-sources</output> </configuration> </execution> </executions> </plugin> <!-- Testing --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M7</version> <configuration> <parallel>all</parallel> <useUnlimitedThreads>true</useUnlimitedThreads> </configuration> </plugin> <!-- Maven-central deployment-related plugins --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.1</version> <configuration> <release>${java.version.minimal}</release> <tags> <tag> <name>apiNote</name> <placement>a</placement> <head>API note</head> </tag> <tag> <name>implNote</name> <placement>a</placement> <head>Implementation note</head> </tag> <tag> <name>implSpec</name> <placement>a</placement> <head>Implementation specification</head> </tag> <tag> <name>publicForSpi</name> <placement>c</placement> <head>This constructor is only visible for Java SPI consider using</head> </tag> </tags> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>sonatype-ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </pluginManagement> </build> <dependencyManagement> <dependencies> <!-- Optional dependencies: this should be present both in modules and the BOM so that BOM users default to supported library versions --> <!-- BOMs --> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-bom</artifactId> <version>9.3</version> <type>pom</type> <scope>import</scope> <optional>true</optional> </dependency> <!-- Caching --> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> <version>3.1.1</version> <scope>provided</scope> <optional>true</optional> </dependency> <!-- Bytecode generation --> <dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <version>3.29.2-GA</version> <scope>provided</scope> <optional>true</optional> </dependency> </dependencies> </dependencyManagement> <profiles> <profile> <id>build-extras</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.projectlombok</groupId> <artifactId>lombok-maven-plugin</artifactId> <executions> <execution> <id>generate-delomboked-javadoc-sources</id> <phase>process-sources</phase> <goals> <goal>delombok</goal> </goals> <configuration> <addOutputDirectory>false</addOutputDirectory> <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> <outputDirectory>${project.build.directory}/javadoc-sources</outputDirectory> </configuration> </execution> <execution> <id>generate-delomboked-javadoc-sources-for-generated-sources</id> <phase>process-sources</phase> <goals> <goal>delombok</goal> </goals> <configuration> <addOutputDirectory>false</addOutputDirectory> <sourceDirectory>${project.build.directory}/generated-sources</sourceDirectory> <outputDirectory>${project.build.directory}/javadoc-sources</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <sourcepath>${project.build.directory}/javadoc-sources</sourcepath> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>sign-artifacts</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>automatic-central-release</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> </project>