autores
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>uk.autores</groupId> <artifactId>autores</artifactId> <version>11.1.2</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>uk.autores</groupId> <artifactId>autores</artifactId> <packaging>pom</packaging> <version>11.1.2</version> <modules> <module>annotations</module> <module>processing</module> </modules> <name>AutoRes.uk Parent POM</name> <description> Annotation driven library for handling embedded resources </description> <url>https://autores.uk</url> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <format.version>8.1.4</format.version> <joor.version>0.9.15</joor.version> <junit.version>5.13.1</junit.version> <maven.compiler.plugin.version>3.14.0</maven.compiler.plugin.version> <maven.jar.plugin.version>3.4.2</maven.jar.plugin.version> <maven.javadoc.plugin.version>3.11.2</maven.javadoc.plugin.version> <maven.source.plugin.version>3.3.1</maven.source.plugin.version> <jacoco.maven.plugin.version>0.8.13</jacoco.maven.plugin.version> <spotbugs.maven.plugin.version>4.8.6.6</spotbugs.maven.plugin.version> <spotbugs.version>4.8.6</spotbugs.version> <maven.surefire.plugin.version>3.5.3</maven.surefire.plugin.version> <maven.pmd.plugin.version>3.26.0</maven.pmd.plugin.version> <maven.enforcer.plugin.version>3.5.0</maven.enforcer.plugin.version> <maven.checkstyle.plugin.version>3.6.0</maven.checkstyle.plugin.version> <maven.jxr.plugin.version>3.6.0</maven.jxr.plugin.version> <maven.gpg.plugin.version>3.2.7</maven.gpg.plugin.version> <nexus.staging.maven.plugin.version>1.7.0</nexus.staging.maven.plugin.version> <findsecbugs-plugin.version>1.13.0</findsecbugs-plugin.version> <javadoc.bottom><![CDATA[ Copyright 2023-2025 <a target="_blank" href="https://github.com/autores-uk/autores/blob/main/LICENSE.txt">https://github.com/autores-uk/autores/blob/main/LICENSE.txt</a> ]]></javadoc.bottom> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <email>autores.uk@proton.me</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/autores-uk/autores-uk.git</connection> <developerConnection>scm:git:ssh://github.com:autores-uk/autores.git</developerConnection> <url>https://github.com/autores-uk/autores/tree/main</url> </scm> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>${maven.jxr.plugin.version}</version> </plugin> </plugins> </reporting> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <profiles> <profile> <!-- https://central.sonatype.org/publish/requirements/ --> <!-- https://central.sonatype.org/publish/publish-maven/ --> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <!-- This is necessary for gpg to not try to use the pinentry programs --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus.staging.maven.plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>