assertj-build
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.assertj</groupId> <artifactId>assertj-build</artifactId> <version>4.0.0-M1</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/maven-v4_0_0.xsd "> <modelVersion>4.0.0</modelVersion> <groupId>org.assertj</groupId> <artifactId>assertj-build</artifactId> <version>4.0.0-M1</version> <packaging>pom</packaging> <name>AssertJ Build</name> <description>AssertJ Build</description> <url>${project.organization.url}</url> <inceptionYear>2012</inceptionYear> <organization> <name>AssertJ</name> <url>https://assertj.github.io/doc/</url> </organization> <licenses> <license> <name>Apache-2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>joel-costigliola</id> <name>Joel Costigliola</name> <email>joel.costigliola at gmail.com</email> <roles> <role>Owner</role> <role>Developer</role> </roles> </developer> <developer> <id>scordio</id> <name>Stefano Cordio</name> <roles> <role>Developer</role> </roles> </developer> <developer> <id>PascalSchumacher</id> <name>Pascal Schumacher</name> <roles> <role>Developer</role> </roles> </developer> <developer> <id>epeee</id> <name>Erhard Pointl</name> <roles> <role>Developer</role> </roles> </developer> <developer> <id>croesch</id> <name>Christian Rösch</name> <roles> <role>Developer</role> </roles> </developer> <developer> <id>VanRoy</id> <name>Julien Roy</name> <roles> <role>Developer</role> </roles> </developer> <developer> <id>regis1512</id> <name>Régis Pouiller</name> <roles> <role>Developer</role> </roles> </developer> <developer> <id>fbiville</id> <name>Florent Biville</name> <roles> <role>Developer</role> </roles> </developer> <developer> <id>Patouche</id> <name>Patrick Allain</name> <roles> <role>Developer</role> </roles> </developer> </developers> <modules> <module>assertj-bom</module> <module>assertj-parent</module> <module>assertj-core</module> <module>assertj-guava</module> <module>assertj-tests</module> </modules> <scm> <developerConnection>scm:git:https://github.com/assertj/assertj.git</developerConnection> <connection>scm:git:https://github.com/assertj/assertj.git</connection> <url>https://github.com/assertj/assertj</url> <tag>assertj-build-4.0.0-M1</tag> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/assertj/assertj/issues</url> </issueManagement> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <rootDirectory>${project.basedir}</rootDirectory> <spotless.skip>true</spotless.skip> <!-- Plugin versions --> <flatten-maven-plugin.version>1.6.0</flatten-maven-plugin.version> <license-maven-plugin.version>4.6</license-maven-plugin.version> <maven-clean-plugin.version>3.4.1</maven-clean-plugin.version> <maven-enforcer-plugin.version>3.5.0</maven-enforcer-plugin.version> <maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version> <maven-release-plugin.version>3.1.1</maven-release-plugin.version> <nexus-staging-maven-plugin.version>1.7.0</nexus-staging-maven-plugin.version> <sonar-maven-plugin.version>5.0.0.4389</sonar-maven-plugin.version> <spotless-maven-plugin.version>2.44.2</spotless-maven-plugin.version> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>${spotless-maven-plugin.version}</version> <configuration> <java> <includes> <include>src/main/java/**/*.java</include> <include>src/test/java/**/*.java</include> </includes> <eclipse> <version>4.33</version> <file>${rootDirectory}/eclipse/assertj-eclipse-formatter.xml</file> </eclipse> </java> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>${license-maven-plugin.version}</version> <configuration> <licenseSets> <licenseSet> <inlineHeader><![CDATA[ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Copyright ${project.inceptionYear}-${currentYear} the original author or authors. ]]></inlineHeader> <includes> <include>src/**/*.java</include> </includes> <excludes> <exclude>src/ide-support/**</exclude> </excludes> </licenseSet> </licenseSets> <properties> <currentYear>2025</currentYear> </properties> <strictCheck>true</strictCheck> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>${maven-clean-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalOptions> <additionalOption>-html5</additionalOption> <additionalOption>--allow-script-in-comments</additionalOption> </additionalOptions> <javadocDirectory>${rootDirectory}/javadoc-theme</javadocDirectory> <addStylesheets> <stylesheet>assertj-theme.css</stylesheet> <stylesheet>hljs-theme.css</stylesheet> </addStylesheets> <!-- Explicitly set Javadoc locale to English --> <locale>en_US</locale> <nohelp>true</nohelp> <bottom><![CDATA[ Copyright © {currentYear} {organizationName}. All rights reserved. <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script> <script>hljs.highlightAll();</script> ]]></bottom> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> <configuration> <rules> <dependencyConvergence /> </rules> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>${flatten-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>${sonar-maven-plugin.version}</version> </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://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <goals> <goal>enforce</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <inherited>false</inherited> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>