ies-extension-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sitepark.ies</groupId> <artifactId>ies-extension-api</artifactId> <version>1.0.0</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.sitepark.ies</groupId> <artifactId>ies-extension-api</artifactId> <version>1.0.0</version> <name>IES extension api</name> <description>API to extend the core functionality of the IES</description> <url>https://github.com/sitepark/ies-extension-api</url> <organization> <name>Sitepark</name> <url>https://www.sitepark.com</url> </organization> <licenses> <license> <name>The MIT License</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <id>veltrup@sitepark</id> <name>Holger Veltrup</name> <email>veltrup@sitepark.com</email> <url>https://github.com/sitepark-veltrup</url> <organization>Sitepark</organization> <organizationUrl>https://www.sitepark.com</organizationUrl> <roles> <role>developer</role> </roles> <timezone>Europe/Berlin</timezone> </developer> </developers> <scm> <connection>scm:git:git@github.com:sitepark/ies-extension-api.git</connection> <developerConnection>scm:git:git@github.com:sitepark/ies-extension-api.git</developerConnection> <tag>1.0.0</tag> <url>https://github.com/sitepark/ies-extension-api</url> </scm> <properties> <junit.version>5.10.2</junit.version> <spotbugs.version>4.8.0</spotbugs.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.release>21</maven.compiler.release> <gpg.skip>true</gpg.skip> <spotless.check.skip>true</spotless.check.skip> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>${junit.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>7.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.17.0</version> </dependency> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-annotations</artifactId> <version>4.8.3</version> <optional>true</optional> </dependency> <!-- Test-Dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>2.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.11.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.23.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <configuration> <doclint>all,-missing</doclint> </configuration> <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> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>sign-artifacts</id> <goals> <goal>sign</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>3.0.1</version> <configuration> <scmCommentPrefix>ci(release):</scmCommentPrefix> <tagNameFormat>@{project.version}</tagNameFormat> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.4.1</version> <dependencies> <dependency> <groupId>io.github.thefolle</groupId> <artifactId>glowing-waffle</artifactId> <version>1.2.0</version> </dependency> </dependencies> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <banDuplicatePomDependencyVersions /> <requireMavenVersion> <version>3.8</version> </requireMavenVersion> <requireJavaVersion> <version>21</version> </requireJavaVersion> </rules> </configuration> </execution> <execution> <id>verify-release</id> <goals> <goal>enforce</goal> </goals> <phase>none</phase> <configuration> <rules> <requireReleaseDeps> <failWhenParentIsSnapshot>false</failWhenParentIsSnapshot> <message>No Snapshots Allowed!</message> </requireReleaseDeps> <requireReleaseDepsInPlugins implementation="org.apache.maven.enforcer.rule.requireReleaseDepsInPlugins" /> </rules> <fail>true</fail> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.11</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>jacoco-check</id> <goals> <goal>check</goal> </goals> <configuration> <rules> <rule> <element>PACKAGE</element> <limits> <limit> <counter>LINE</counter> <value>COVEREDRATIO</value> <minimum>0.0</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> <execution> <id>generate-code-coverage-report</id> <goals> <goal>report</goal> </goals> <phase>test</phase> </execution> </executions> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>2.43.0</version> <configuration> <!-- define a language-specific format --> <java> <removeUnusedImports> <engine>google-java-format</engine> </removeUnusedImports> <!-- apply a specific flavor of google-java-format and reflow long strings --> <googleJavaFormat> <version>1.19.2</version> <style>GOOGLE</style> <reflowLongStrings>true</reflowLongStrings> <formatJavadoc>false</formatJavadoc> </googleJavaFormat> <formatAnnotations /> </java> <pom> <!-- These are the defaults, you can override if you want --> <includes> <include>pom.xml</include> </includes> <sortPom> <!-- value of -1 indicates that a tab character should be used instead --> <nrOfIndentSpace>-1</nrOfIndentSpace> </sortPom> </pom> </configuration> <executions> <execution> <?m2e ignore?> <id>spotless-check</id> <goals> <goal>check</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>4.8.3.1</version> <configuration> <effort>Max</effort> <threshold>Low</threshold> <maxRank>20</maxRank> <excludeFilterFile>spotbug-exclude-filter.xml</excludeFilterFile> </configuration> <!-- https://spotbugs.readthedocs.io/en/latest/maven.html --> <dependencies> <!-- overwrite dependency on spotbugs if you want to specify the version of spotbugs --> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs</artifactId> <version>4.8.3</version> </dependency> </dependencies> <executions> <execution> <goals> <goal>check</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>3.21.2</version> <configuration> <rulesets> <ruleset>pmd-ruleset.xml</ruleset> </rulesets> <includeTests>true</includeTests> <failOnViolation>true</failOnViolation> <failurePriority>5</failurePriority> <printFailingErrors>true</printFailingErrors> <linkXRef>false</linkXRef> </configuration> <executions> <execution> <id>pmd</id> <goals> <goal>check</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>nexus-staging-release</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>