blaze-domain-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.blazebit</groupId> <artifactId>blaze-domain-parent</artifactId> <version>3.0.0-Alpha5</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"> <parent> <artifactId>blaze-domain</artifactId> <groupId>com.blazebit</groupId> <version>3.0.0-Alpha5</version> <relativePath>../pom.xml</relativePath> </parent> <packaging>pom</packaging> <modelVersion>4.0.0</modelVersion> <artifactId>blaze-domain-parent</artifactId> <name>Blazebit Blaze-Domain Parent</name> <description>Blazebit Blaze-Domain Parent</description> <properties> <blaze-domain.codename>Pepper</blaze-domain.codename> <version.blaze-utils>0.1.21</version.blaze-utils> <version.weld>2.4.5.Final</version.weld> <version.junit>4.12</version.junit> </properties> <dependencyManagement> <dependencies> <!-- Actually we only need JPA but since there is no official artifact we rather use this than provider specific apis --> <dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> <version>7.0</version> <scope>provided</scope> </dependency> <!-- Test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${version.junit}</version> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>blaze-apt-utils</artifactId> <version>${version.blaze-utils}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.weld.se</groupId> <artifactId>weld-se-core</artifactId> <version>${version.weld}</version> <exclusions> <exclusion> <groupId>org.jboss</groupId> <artifactId>jandex</artifactId> </exclusion> </exclusions> </dependency> <!-- Since we are including a module-info.class file, we need at least 2.0.4.Final --> <dependency> <groupId>org.jboss</groupId> <artifactId>jandex</artifactId> <version>2.0.4.Final</version> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${maven.compiler.argument.source}</source> <target>${maven.compiler.argument.target}</target> <!-- Disable annotation processing via compiler plugin. --> <compilerArgument>-proc:none</compilerArgument> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <pushChanges>false</pushChanges> <localCheckout>true</localCheckout> <autoVersionSubmodules>true</autoVersionSubmodules> <preparationGoals>clean install</preparationGoals> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${version.checkstyle.plugin}</version> <configuration> <configLocation>blaze-domain/checkstyle-config.xml</configLocation> <suppressionsLocation>blaze-domain/checkstyle-suppressions.xml</suppressionsLocation> <suppressionsFileExpression>checkstyle.suppressions.file</suppressionsFileExpression> <consoleOutput>true</consoleOutput> <skip>${skipCheckstyle}</skip> </configuration> <executions> <execution> <id>verify-style</id> <phase>verify</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>${version.checkstyle}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>blaze-domain-checkstyle-rules</artifactId> <version>${project.version}</version> </dependency> </dependencies> </plugin> </plugins> </build> </project>