modules
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>it.tidalwave.thesefoolishthings</groupId>
<artifactId>modules</artifactId>
<version>5.0-ALPHA-3</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
*********************************************************************************************************************
TheseFoolishThings: Miscellaneous utilities
http://tidalwave.it/projects/thesefoolishthings
Copyright (C) 2009 - 2025 by Tidalwave s.a.s. (http://tidalwave.it)
*********************************************************************************************************************
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.
*********************************************************************************************************************
git clone https://bitbucket.org/tidalwave/thesefoolishthings-src
git clone https://github.com/tidalwave-it/thesefoolishthings-src
*********************************************************************************************************************
-->
<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>
<parent>
<groupId>it.tidalwave.thesefoolishthings</groupId>
<artifactId>thesefoolishthings</artifactId>
<version>5.0-ALPHA-3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>modules</artifactId>
<packaging>pom</packaging>
<name>TheseFoolishThings (modules)</name>
<description>
This module is an umbrella for all the components. It contains the global configuration for the build as well as the declaration of dependencies.
</description>
<properties>
<java-diff-utils.version>4.15</java-diff-utils.version>
<tft.aspectjrt.version>1.9.20.1</tft.aspectjrt.version> <!-- Last with JDK 11 support -->
<tft.modulePathInTests>false</tft.modulePathInTests>
<!-- Since we're still supporting old annotations, jakarta.annotations is not declared as transitive, and this produces tons of 'exports' warnings. -->
<tft.javac.xlint>-Xlint:all,-exports,-missing-explicit-ctor</tft.javac.xlint>
<tft.profile.metrics.checkstyleGoal /> <!-- FIXME: checkstyle crashes with module-info.java -->
<tft.checkstyle.skip>true</tft.checkstyle.skip>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-framework-bom</artifactId>
<version>${tft.spring.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.github.java-diff-utils</groupId>
<artifactId>java-diff-utils</artifactId>
<version>${java-diff-utils.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- TODO: During the transition we support both annotation groups, but without having them as transitive dependencies. -->
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<!-- TEST DEPENDENCIES -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</annotationProcessorPath>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>Actors</module>
<module>MessageBus</module>
<module>Roles</module>
<module>SpringMessageBus</module>
<module>SpringRoles</module>
<module>Utilities</module>
<module>TestUtilities</module>
<module>examples</module>
</modules>
</project>