ddd-4-java-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.fuin.ddd4j</groupId> <artifactId>ddd-4-java-core</artifactId> <version>0.6.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> <parent> <groupId>org.fuin.ddd4j</groupId> <artifactId>ddd-4-java</artifactId> <version>0.6.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>ddd-4-java-core</artifactId> <version>0.6.0</version> <packaging>jar</packaging> <description>Base classes for Domain Driven Design (DDD) with Java (CORE)</description> <dependencies> <!-- Compile --> <dependency> <groupId>org.fuin</groupId> <artifactId>utils4j</artifactId> </dependency> <dependency> <groupId>org.fuin.objects4j</groupId> <artifactId>objects4j-common</artifactId> </dependency> <dependency> <groupId>org.fuin.objects4j</groupId> <artifactId>objects4j-core</artifactId> </dependency> <dependency> <groupId>org.fuin.objects4j</groupId> <artifactId>objects4j-ui</artifactId> </dependency> <dependency> <groupId>jakarta.validation</groupId> <artifactId>jakarta.validation-api</artifactId> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>io.smallrye</groupId> <artifactId>jandex</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <!-- Test --> <dependency> <groupId>org.fuin.esc</groupId> <artifactId>esc-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.fuin</groupId> <artifactId>units4j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hibernate.validator</groupId> <artifactId>hibernate-validator</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.glassfish.expressly</groupId> <artifactId>expressly</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>nl.jqno.equalsverifier</groupId> <artifactId>equalsverifier</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.tngtech.archunit</groupId> <artifactId>archunit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.tngtech.archunit</groupId> <artifactId>archunit-junit5</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <includes> <include>**/*</include> </includes> <archive> <manifestEntries> <Automatic-Module-Name>org.fuin.ddd4j.core</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jdeps-plugin</artifactId> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>io.smallrye</groupId> <artifactId>jandex-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <configuration> <ignoredUnusedDeclaredDependencies> <ignoredUnusedDeclaredDependency>jakarta.el:jakarta.el-api</ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency>org.glassfish.expressly:expressly</ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency>org.hibernate.validator:hibernate-validator </ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency>com.tngtech.archunit:archunit-junit5 </ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency>org.junit.jupiter:junit-jupiter </ignoredUnusedDeclaredDependency> </ignoredUnusedDeclaredDependencies> <ignoredUsedUndeclaredDependencies> <ignoredUsedUndeclaredDependency>com.tngtech.archunit:archunit-junit5-api </ignoredUsedUndeclaredDependency> <ignoredUsedUndeclaredDependency>org.junit.jupiter:junit-jupiter-api </ignoredUsedUndeclaredDependency> </ignoredUsedUndeclaredDependencies> </configuration> </plugin> </plugins> </build> </project>