patterns-lib
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.team33.patterns</groupId>
<artifactId>patterns-lib</artifactId>
<version>2.6.1</version>
</dependency><project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>
<parent>
<groupId>de.team33.patterns</groupId>
<artifactId>patterns-root</artifactId>
<version>2.6.1</version>
</parent>
<artifactId>patterns-lib</artifactId>
<packaging>pom</packaging>
<name>Team33 Patterns Library</name>
<description>Parent of team33 patterns library collection</description>
<modules>
<module>arbitrary-mimas</module>
<module>decision-carpo</module>
<module>decision-thyone</module>
<module>enums-pan</module>
<module>exceptional-dione</module>
<module>proving-kerberos</module>
<module>lazy-narvi</module>
<module>hierarchy-mab</module>
<module>io-deimos</module>
<module>io-adrastea</module>
<module>expiry-tethys</module>
<module>pooling-ariel</module>
<module>reflect-luna</module>
<module>reflect-pandora</module>
<module>streamable-galatea</module>
<module>building-anthe</module>
<module>building-elara</module>
<module>execution-metis</module>
<module>collection-ceres</module>
<module>hashing-pandia</module>
<module>matching-rhea</module>
</modules>
<dependencyManagement>
<dependencies>
<!-- Submodules -->
<dependency>
<groupId>de.team33.patterns</groupId>
<artifactId>patterns-bom</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Testing -->
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.9.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>de.team33.testing</groupId>
<artifactId>testing-bom</artifactId>
<version>1.1.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>default-resources-home</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/../../target/home-collected/patterns-lib/${project.artifactId}</outputDirectory>
<resources>
<resource>
<directory>${basedir}/../../patterns-home/src/main/template/module</directory>
<filtering>true</filtering>
</resource>
</resources>
<skip>${skipHome}</skip>
</configuration>
</execution>
<execution>
<id>apidoc-resources-home</id>
<phase>verify</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/../../target/home-collected/patterns-lib/${project.artifactId}/apidocs</outputDirectory>
<resources>
<resource>
<directory>${project.build.directory}/reports/apidocs</directory>
<filtering>false</filtering>
</resource>
</resources>
<skip>${skipHome}</skip>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>sources-jar</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-default</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<dependencyConvergence />
<requireReleaseDeps>
<onlyWhenRelease>true</onlyWhenRelease>
<message>No Snapshots Allowed!</message>
</requireReleaseDeps>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>