annotations
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>uk.autores</groupId> <artifactId>annotations</artifactId> <version>11.0.35-beta</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> <artifactId>annotations</artifactId> <groupId>uk.autores</groupId> <version>11.0.35-beta</version> <packaging>jar</packaging> <name>AutoRes.uk Annotations</name> <description>Annotation driven library for handling embedded resources</description> <url>https://autores.uk</url> <properties> <maven.compiler.target>11</maven.compiler.target> <maven.compiler.source>11</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <joor.version>0.9.15</joor.version> <junit.version>5.11.1</junit.version> <maven.compiler.plugin.version>3.13.0</maven.compiler.plugin.version> <maven.jar.plugin.version>3.4.2</maven.jar.plugin.version> <maven.javadoc.plugin.version>3.10.0</maven.javadoc.plugin.version> <maven.source.plugin.version>3.3.1</maven.source.plugin.version> <jacoco.maven.plugin.version>0.8.12</jacoco.maven.plugin.version> <spotbugs.maven.plugin.version>4.8.6.3</spotbugs.maven.plugin.version> <spotbugs.version>4.8.6</spotbugs.version> <maven.surefire.plugin.version>3.5.0</maven.surefire.plugin.version> <maven.pmd.plugin.version>3.25.0</maven.pmd.plugin.version> <maven.enforcer.plugin.version>3.5.0</maven.enforcer.plugin.version> <maven.checkstyle.plugin.version>3.5.0</maven.checkstyle.plugin.version> <maven.jxr.plugin.version>3.5.0</maven.jxr.plugin.version> <maven.gpg.plugin.version>3.2.5</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> </properties> <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> <dependencies> <dependency> <groupId>uk.autores</groupId> <artifactId>format</artifactId> <version>8.0.1-beta</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</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> <dependency> <groupId>org.jooq</groupId> <artifactId>joor</artifactId> <version>${joor.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <!-- Disable annotation processing for ourselves. --> <compilerArgument>-proc:none</compilerArgument> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven.jar.plugin.version}</version> </plugin> <!-- https://central.sonatype.org/publish/publish-maven/ --> <plugin> <groupId>org.apache.maven.plugins</groupId> <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> <groupId>org.apache.maven.plugins</groupId> <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> <bottom> <![CDATA[ Copyright 2023-2024 <a href="https://github.com/autores-uk/autores/blob/main/LICENSE.txt">https://github.com/autores-uk/autores/blob/main/LICENSE.txt</a> ]]> </bottom> <doclint>all</doclint> <failOnWarnings>true</failOnWarnings> <serialwarn>true</serialwarn> <excludePackageNames>uk.autores.processors</excludePackageNames> </configuration> </plugin> <!-- coverage --> <plugin> <!-- https://www.jacoco.org/jacoco/trunk/doc/ --> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.maven.plugin.version}</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> <execution> <id>jacoco-check</id> <goals> <goal>check</goal> </goals> <configuration> <rules> <rule> <element>CLASS</element> <limits> <limit> <counter>LINE</counter> <value>COVEREDRATIO</value> <minimum>0.90</minimum> </limit> </limits> </rule> <rule> <element>CLASS</element> <limits> <limit> <counter>METHOD</counter> <value>COVEREDRATIO</value> <minimum>1.0</minimum> </limit> </limits> </rule> <rule> <element>BUNDLE</element> <limits> <limit> <counter>COMPLEXITY</counter> <value>COVEREDRATIO</value> <minimum>0.60</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>${spotbugs.maven.plugin.version}</version> <configuration> <fork>true</fork> <effort>Max</effort> <threshold>Low</threshold> <xmlOutput>true</xmlOutput> <failOnError>true</failOnError> <excludeFilterFile>spotbugs-exclude.xml</excludeFilterFile> <!-- <plugins>--> <!-- <plugin>--> <!-- <groupId>com.h3xstream.findsecbugs</groupId>--> <!-- <artifactId>findsecbugs-plugin</artifactId>--> <!-- <version>${findsecbugs-plugin.version}</version>--> <!-- </plugin>--> <!-- </plugins>--> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <dependencies> <!-- overwrite dependency on spotbugs if you want to specify the version of spotbugs --> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs</artifactId> <version>${spotbugs.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <parallel>all</parallel> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>${maven.pmd.plugin.version}</version> <configuration> <printFailingErrors>true</printFailingErrors> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven.enforcer.plugin.version}</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.6.3</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven.checkstyle.plugin.version}</version> <configuration> <configLocation>google_checks.xml</configLocation> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <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>