blaze-query
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.blazebit</groupId>
<artifactId>blaze-query</artifactId>
<version>1.0.0.Alpha3</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>
<groupId>com.blazebit</groupId>
<artifactId>blazebit-parent</artifactId>
<version>11</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<modules>
<module>parent</module>
<module>checkstyle-rules</module>
<module>core</module>
<module>connector</module>
<module>documentation</module>
<module>examples</module>
</modules>
<artifactId>blaze-query</artifactId>
<version>1.0.0.Alpha3</version>
<name>Blazebit Blaze-Query</name>
<url>https://query.blazebit.com</url>
<description>Blazebit Blaze-Query</description>
<properties>
<java.version>11</java.version>
<maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.source>${java.version}</maven.compiler.source>
<version.checkstyle>10.18.2</version.checkstyle>
<version.checkstyle.plugin>3.5.0</version.checkstyle.plugin>
<version.surefire.plugin>3.0.0-M5</version.surefire.plugin>
<version.jar.plugin>3.0.2</version.jar.plugin>
<version.javadoc.plugin>3.6.0</version.javadoc.plugin>
<version.war.plugin>3.3.1</version.war.plugin>
<maven.min.version>3.9.6</maven.min.version>
<maven.build.timestamp.format>yyyy</maven.build.timestamp.format>
<currentYearDynamic>${maven.build.timestamp}</currentYearDynamic>
<skipNpmDeploy>false</skipNpmDeploy>
<release.push>false</release.push>
</properties>
<inceptionYear>2024</inceptionYear>
<issueManagement>
<system>github</system>
<url>https://github.com/Blazebit/blaze-query/issues</url>
</issueManagement>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<organization>
<name>Blazebit</name>
<url>http://www.blazebit.com</url>
</organization>
<scm>
<connection>scm:git:git@github.com:Blazebit/blaze-query.git</connection>
<developerConnection>scm:git:git@github.com:Blazebit/blaze-query.git</developerConnection>
<url>git@github.com:Blazebit/blaze-query.git</url>
<tag>blaze-query-1.0.0.Alpha3</tag>
</scm>
<developers>
<developer>
<id>christian</id>
<name>Christian Beikov</name>
<email>christian@blazebit.com</email>
<organization>Blazebit</organization>
<organizationUrl>http://www.blazebit.com</organizationUrl>
<timezone>UTC+1</timezone>
<roles>
<role>Project Owner</role>
<role>Committer</role>
</roles>
</developer>
</developers>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<!-- here we override the super-pom attach-sources executionid which
calls sources:jar goal. That goals forks the lifecycle, causing
the generate-sources phase to be called twice for the install goal.
This causes any other plugin bound to the generate-sources phase to
be called twice which usually has nasty side effects, let alone
creating duplicate processing and longer build times. -->
<execution>
<id>attach-sources</id>
<phase>DISABLE_FORKED_LIFECYCLE_MSOURCES-13</phase>
</execution>
<execution>
<id>attach-sources-no-fork</id>
<inherited>true</inherited>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${version.javadoc.plugin}</version>
<configuration>
<additionalJOption>-Xdoclint:none</additionalJOption>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>3.0</version>
<configuration>
<header>license-header.txt</header>
<headerDefinitions>
<headerDefinition>license-header-definition.xml</headerDefinition>
</headerDefinitions>
<mapping>
<java>JAVADOC_STYLE</java>
<xml>XML_STYLE</xml>
</mapping>
<aggregate>true</aggregate>
<includes>
<include>**/src/main/**/*.java</include>
<include>**/src/main/**/*.xml</include>
</includes>
<excludes>
<exclude>**/node_modules/**</exclude>
</excludes>
<properties>
<inceptionYear>${project.inceptionYear}</inceptionYear>
<latestYearOfContribution>${currentYearDynamic}</latestYearOfContribution>
</properties>
</configuration>
<executions>
<execution>
<id>check-license</id>
<phase>initialize</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
<execution>
<id>generate-license</id>
<phase />
<goals>
<goal>format</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>default-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<pushChanges>${release.push}</pushChanges>
<localCheckout>true</localCheckout>
<autoVersionSubmodules>true</autoVersionSubmodules>
<preparationGoals>clean install</preparationGoals>
</configuration>
</plugin>
</plugins>
</build>
</project>