blaze-persistence-archetype-entity-view-sample
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.blazebit</groupId> <artifactId>blaze-persistence-archetype-entity-view-sample</artifactId> <version>1.6.17</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- SPDX-License-Identifier: Apache-2.0 Copyright Blazebit --> <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.blazebit</groupId> <artifactId>blaze-persistence-archetype</artifactId> <version>1.6.17</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>blaze-persistence-archetype-entity-view-sample</artifactId> <packaging>jar</packaging> <name>Blazebit Persistence Archetype Entity-View Sample</name> <properties> <module.name>com.blazebit.persistence.archetype.view.sample</module.name> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <configuration> <escapeString>\</escapeString> </configuration> </plugin> </plugins> </pluginManagement> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>archetype-resources/pom.xml</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> <excludes> <exclude>archetype-resources/pom.xml</exclude> </excludes> </resource> </resources> </build> </project>