custom-definition-builders
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.merkle.oss.magnolia</groupId> <artifactId>custom-definition-builders</artifactId> <version>1.2.19</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>com.merkle.oss.magnolia</groupId> <artifactId>magnolia-definition-builders-parent</artifactId> <version>1.2.19</version> </parent> <artifactId>custom-definition-builders</artifactId> <dependencies> <dependency> <groupId>com.merkle.oss.magnolia</groupId> <artifactId>magnolia-definition-builders</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.merkle.oss.magnolia</groupId> <artifactId>magnolia-definition-keyGenerators</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.merkle.oss.magnolia</groupId> <artifactId>magnolia-powernode</artifactId> </dependency> <dependency> <groupId>info.magnolia.site</groupId> <artifactId>magnolia-site</artifactId> </dependency> <dependency> <groupId>info.magnolia.dam</groupId> <artifactId>magnolia-dam-templating</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <dependency> <groupId>uk.org.okapibarcode</groupId> <artifactId>okapibarcode</artifactId> </dependency> <!-- TESTING DEPENDENCIES --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>info.magnolia</groupId> <artifactId>magnolia-core</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> </dependencies> <build> <!-- default resources configuration which will filter the module descriptor --> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*</include> </includes> </resource> <resource> <directory>src/main/java</directory> <includes> <include>**/*.js</include> <include>**/*.css</include> </includes> </resource> </resources> </build> </project>