blaze-expression
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.blazebit</groupId>
<artifactId>blaze-expression</artifactId>
<version>1.0.0-Alpha34</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>dist</module>
<module>core</module>
<module>declarative</module>
<module>base</module>
<module>persistence</module>
<module>excel</module>
<module>models</module>
<module>editor</module>
<module>documentation</module>
<module>examples</module>
</modules>
<artifactId>blaze-expression</artifactId>
<version>1.0.0-Alpha34</version>
<name>Blazebit Blaze-Expression</name>
<url>https://expression.blazebit.com</url>
<description>Blazebit Blaze-Expression</description>
<properties>
<jdk8.home>${env.JAVA_HOME}</jdk8.home>
<java.version>1.8</java.version>
<maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.source>${java.version}</maven.compiler.source>
<version.checkstyle>8.7</version.checkstyle>
<version.surefire.plugin>3.0.0-M5</version.surefire.plugin>
<version.jar.plugin>3.0.2</version.jar.plugin>
<version.war.plugin>3.3.1</version.war.plugin>
<maven.min.version>3.3.1</maven.min.version>
<maven.build.timestamp.format>yyyy</maven.build.timestamp.format>
<currentYearDynamic>${maven.build.timestamp}</currentYearDynamic>
<skipNpmDeploy>false</skipNpmDeploy>
</properties>
<inceptionYear>2019</inceptionYear>
<issueManagement>
<system>github</system>
<url>https://github.com/Blazebit/blaze-expression/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-expression.git</connection>
<developerConnection>scm:git:git@github.com:Blazebit/blaze-expression.git</developerConnection>
<url>git@github.com:Blazebit/blaze-expression.git</url>
<tag>1.0.0-Alpha34</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>
<developer>
<id>Mobe91</id>
<name>Moritz Becker</name>
<email>m.becker@ordami.com</email>
<organization>Ordami</organization>
<organizationUrl>http://www.ordami.com</organizationUrl>
<timezone>UTC+1</timezone>
<roles>
<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>
</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>false</pushChanges>
<localCheckout>true</localCheckout>
<autoVersionSubmodules>true</autoVersionSubmodules>
<preparationGoals>clean install</preparationGoals>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!-- It disables javadoc doclint for JDK > 8 -->
<id>javadoc-xdoclint-disable-jdk8+</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<additionalJOption>-Xdoclint:none</additionalJOption>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
<profile>
<id>jdk9+</id>
<activation>
<jdk>[1.9,)</jdk>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<source>8</source> <!-- https://bugs.openjdk.java.net/browse/JDK-8212233 -->
<additionalJOption>-Xdoclint:none</additionalJOption>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
</project>