apiunit
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.viadee</groupId>
<artifactId>apiunit</artifactId>
<version>0.1.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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.viadee</groupId>
<artifactId>apiunit</artifactId>
<name>ApiUnit</name>
<description>ApiUnit is a free and simple library for checking REST API guidelines of your Java code.
</description>
<version>0.1.0</version>
<organization>
<name>viadee Unternehmensberatung AG</name>
<url>https://www.viadee.de</url>
</organization>
<url>https://github.com/viadee/apiunit</url>
<developers>
<developer>
<name>Steffen Lammers</name>
<email>steffen.lammers@viadee.de</email>
<organization>viadee Unternehmensberatung AG</organization>
<organizationUrl>http://www.viadee.de</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com/viadee/apiunit.git</connection>
<developerConnection>scm:git:git@github.com/viadee/apiunit.git</developerConnection>
<url>git@github.com/viadee/apiunit.git</url>
</scm>
<properties>
<java.version>17</java.version>
<spring-boot.version>3.1.3</spring-boot.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven-release.version>3.0.1</maven-release.version>
<maven-compiler.version>3.11.0</maven-compiler.version>
<maven-source.version>3.3.0</maven-source.version>
<maven-gpg.version>3.1.0</maven-gpg.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<license-maven.version>4.2</license-maven.version>
<maven-javadoc.version>3.6.0</maven-javadoc.version>
</properties>
<dependencies>
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit</artifactId>
<version>1.0.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>3.1.4</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven-release.version}</version>
<executions>
<execution>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source.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-compiler-plugin</artifactId>
<version>${maven-compiler.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${license-maven.version}</version>
<configuration>
<header>src/main/resources/Apache 2.0 License.txt</header>
<properties>
<owner>viadee Unternehmensberatung AG</owner>
<inceptionYear>2023</inceptionYear>
<email>steffen.lammers@viadee.de</email>
</properties>
<mapping>
<java>SLASHSTAR_STYLE</java>
</mapping>
<excludes>
<exclude>**/README</exclude>
<exclude>src/test/resources/**</exclude>
<exclude>src/main/resources/**</exclude>
<exclude>src/main/resources-filtered/**</exclude>
<exclude>docs/**</exclude>
<exclude>src/main/java/**/*.properties</exclude>
<exclude>*.xml</exclude>
<exclude>*.yml</exclude>
<exclude>*.log</exclude>
<exclude>*.pmd</exclude>
<exclude>LICENSE.txt</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>Check licenses</id>
<goals>
<goal>check</goal>
</goals>
</execution>
<execution>
<id>Insert or update license</id>
<phase>generate-sources</phase>
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc.version}</version>
<configuration>
<detectJavaApiLink>false</detectJavaApiLink>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<licenses>
<license>
<name>Apache-2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
</project>