calimero-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.calimero</groupId> <artifactId>calimero-parent</artifactId> <version>2.6-rc2</version> </dependency>
<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>io.calimero</groupId> <artifactId>calimero-parent</artifactId> <version>2.6-rc2</version> <packaging>pom</packaging> <name>Calimero Project Parent</name> <description>Parent pom for Calimero modules</description> <url>https://github.com/calimero-project/calimero.parent</url> <inceptionYear>2006</inceptionYear> <licenses> <license> <name>GNU General Public License, version 2, with the Classpath Exception</name> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.release>17</maven.compiler.release> <packager>Calimero Project</packager> <slf4j.version>2.0.16</slf4j.version> <junit.jupiter.version>5.12.0</junit.jupiter.version> <maven.surefire.version>3.5.2</maven.surefire.version> </properties> <scm> <url>https://github.com/calimero-project/calimero.parent.git</url> </scm> <developers> <developer> <name>Boris Malinowsky</name> <email>b.malinowsky@gmail.com</email> </developer> </developers> <profiles> <profile> <id>test</id> <activation> <file> <exists>${basedir}/test</exists> </file> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <addMavenDescriptor>false</addMavenDescriptor> </archive> </configuration> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>test-jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>test-maven-layout</id> <activation> <file> <exists>${basedir}/src/test/java</exists> </file> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <addMavenDescriptor>false</addMavenDescriptor> </archive> </configuration> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>test-jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <!-- release-profile is inherited from super pom and is activated by plugins like release or jgitflow --> <!-- can be activated manually with -Prelease-profile --> <id>release-profile</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <sourceDirectory>${basedir}/src</sourceDirectory> <testSourceDirectory>${basedir}/test</testSourceDirectory> <resources> <resource> <directory>${basedir}</directory> <targetPath>META-INF</targetPath> <includes> <include>LICENSE*</include> </includes> </resource> <resource> <directory>${basedir}</directory> <includes> <include>README.md</include> </includes> </resource> <resource> <directory>${basedir}/resources</directory> </resource> </resources> <testResources> <testResource> <directory>${basedir}</directory> <targetPath>META-INF</targetPath> <includes> <include>LICENSE*</include> </includes> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> <configuration> <archive> <manifestEntries> <Built-By>${packager}</Built-By> <Url>${project.url}</Url> </manifestEntries> <addMavenDescriptor>false</addMavenDescriptor> </archive> <excludes> <exclude>README.md</exclude> </excludes> </configuration> <executions> <execution> <goals> <!-- <goal>test-jar</goal> --> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <overview>src/overview.html</overview> <author>false</author> <quiet>true</quiet> <archive> <manifestEntries> <Built-By>${packager}</Built-By> </manifestEntries> </archive> <doclint>-missing</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <configuration> <includePom>true</includePom> <archive> <manifestEntries> <Built-By>${packager}</Built-By> </manifestEntries> </archive> </configuration> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> <!-- <goal>test-jar-no-fork</goal> --> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.18.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>enforce-versions</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.9.6</version> </requireMavenVersion> <requireJavaVersion> <version>17</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>${maven.surefire.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>3.6.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <links /> </configuration> </plugin> </plugins> </reporting> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> </dependencies> <repositories> <repository> <id>snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>daily</updatePolicy> </snapshots> </repository> <repository> <id>snapshots-s01</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>daily</updatePolicy> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>snapshots-repo</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>interval:120</updatePolicy> </snapshots> </pluginRepository> <pluginRepository> <id>apache-snapshots-repo</id> <url>https://repository.apache.org/content/groups/snapshots/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>interval:120</updatePolicy> </snapshots> </pluginRepository> <pluginRepository> <releases> <updatePolicy>daily</updatePolicy> </releases> <snapshots> <enabled>false</enabled> </snapshots> <id>central</id> <name>Central Repository</name> <url>https://repo.maven.apache.org/maven2</url> </pluginRepository> </pluginRepositories> <distributionManagement> <snapshotRepository> <id>sonatype</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> </project>