flowlogix
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.flowlogix</groupId>
<artifactId>flowlogix</artifactId>
<version>7.1.1</version>
</dependency><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>
<groupId>com.flowlogix</groupId>
<artifactId>flowlogix</artifactId>
<version>7.1.1</version>
<packaging>pom</packaging>
<name>Flow Logix Root</name>
<description>Flow Logix Jakarta EE Components Root POM</description>
<inceptionYear>2011</inceptionYear>
<url>https://github.com/flowlogix/flowlogix</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>lprimak</id>
<name>Lenny Primak</name>
<email>lenny@flowlogix.com</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>17</maven.compiler.release>
<payara.start.skip>${skipITs}</payara.start.skip>
<docs.phase>deploy</docs.phase>
<delombok.phase>none</delombok.phase>
<javadoc.title>${project.name}</javadoc.title>
<snippet.p1>${project.build.sourceDirectory}</snippet.p1>
<snippet.p2>${project.build.testSourceDirectory}</snippet.p2>
<snippet.p3>${project.basedir}/src/demo/java</snippet.p3>
<snippet.p4>${flowlogix.basedir}/jakarta-ee/jee-examples/src/main/java</snippet.p4>
<snippet.path>${snippet.p1}:${snippet.p2}:${snippet.p3}:${snippet.p4}</snippet.path>
<release.profile>release-flowlogix-to-central</release.profile>
<gpg.keyname>Flow Logix, Inc.</gpg.keyname>
<staging.server>flowlogix-maven-central-s01</staging.server>
<nexus.url>https://s01.oss.sonatype.org</nexus.url>
<webdriver.browser>chromeheadless</webdriver.browser>
<jakarta.ee.version>10.0.0</jakarta.ee.version>
<payara.version>6.2023.8</payara.version>
<groovy.version>4.0.14</groovy.version>
<lombok.version>1.18.28</lombok.version>
<eclipselink.version>4.0.2</eclipselink.version>
<shrinkwrap.api.version>1.2.6</shrinkwrap.api.version>
<shrinkwrap.resolver.version>3.2.1</shrinkwrap.resolver.version>
<omnifaces.version>4.2</omnifaces.version>
<primefaces.version>13.0.0</primefaces.version>
<jacocoPort>52212</jacocoPort>
<jacocoAgent />
<jdk11SurefireOptions>-Xshare:off</jdk11SurefireOptions>
<jdk11FailsafeOptions>--add-opens java.base/java.lang=ALL-UNNAMED</jdk11FailsafeOptions>
<!-- checkstyle -->
<checkstyle.configLocation>${flowlogix.basedir}/checkstyle/checkstyle.xml</checkstyle.configLocation>
<checkstyle.supressionsLocation>${flowlogix.basedir}/checkstyle/suppressions.xml</checkstyle.supressionsLocation>
<checkstyle.headerLocation>${flowlogix.basedir}/checkstyle/header.txt</checkstyle.headerLocation>
<project.build.outputTimestamp>2023-09-06T23:31:21Z</project.build.outputTimestamp>
</properties>
<modules>
<module>flowlogix-bom</module>
<module>jakarta-ee</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.6</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>test-jar</id>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-demos</id>
<configuration>
<sources>
<source>src/demo/java</source>
</sources>
</configuration>
<phase>validate</phase>
<goals>
<goal>add-test-source</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.commonjava.maven.plugins</groupId>
<artifactId>directory-maven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>directories</id>
<goals>
<goal>directory-of</goal>
</goals>
<phase>validate</phase>
<configuration>
<property>flowlogix.basedir</property>
<project>
<groupId>com.flowlogix</groupId>
<artifactId>flowlogix</artifactId>
</project>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<version>3.0.0</version>
<dependencies>
<dependency>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>${groovy.version}</version>
<scope>runtime</scope>
<type>pom</type>
</dependency>
</dependencies>
<executions>
<execution>
<id>testGroups</id>
<phase>initialize</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<scripts>
<!-- combine individual test profiles into a single test group property -->
<script>${flowlogix.basedir}/setTestGroupProperties.groovy</script>
</scripts>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.soebes.maven.plugins</groupId>
<artifactId>echo-maven-plugin</artifactId>
<version>0.5.0</version>
<executions>
<execution>
<id>echo test groups</id>
<phase>initialize</phase>
<goals>
<goal>echo</goal>
</goals>
<configuration>
<echos>
<echo>Test Groups (Tags): ${groups}</echo>
</echos>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<configLocation>${checkstyle.configLocation}</configLocation>
<suppressionsLocation>${checkstyle.supressionsLocation}</suppressionsLocation>
<headerLocation>${checkstyle.headerLocation}</headerLocation>
<linkXRef>true</linkXRef>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
<failOnViolation>true</failOnViolation>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<enableRulesSummary>true</enableRulesSummary>
<propertyExpansion>flowlogix.basedir=${flowlogix.basedir}</propertyExpansion>
<excludes>**/module-info.java</excludes>
</configuration>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>checkstyle</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>10.12.3</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.10</version>
<configuration>
<includes>
<include>com/flowlogix/**</include>
</includes>
<excludes>
<exclude>com/flowlogix/**/*Test</exclude>
<exclude>com/flowlogix/**/*Test$*</exclude>
<exclude>com/flowlogix/**/*IT</exclude>
<exclude>com/flowlogix/**/*IT$*</exclude>
<exclude>com/flowlogix/**/__EJB31_Generated*</exclude>
<!-- cause too many coverage misses -->
<exclude>com/flowlogix/examples/**</exclude>
<exclude>com/flowlogix/demo/**</exclude>
<exclude>com/flowlogix/logcapture/**</exclude>
</excludes>
<classDumpDir>${flowlogix.basedir}/target/classes-jacoco</classDumpDir>
<address>localhost</address>
<port>${jacocoPort}</port>
<reset>true</reset>
<propertyName>jacocoAgent</propertyName>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<showWarnings>true</showWarnings>
<compilerArgs>
<arg>-Xlint:deprecation</arg>
<arg>-Xlint:unchecked</arg>
</compilerArgs>
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</annotationProcessorPath>
<annotationProcessorPath>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.jpa.modelgen.processor</artifactId>
<version>${eclipselink.version}</version>
</annotationProcessorPath>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<parallel>all</parallel>
<threadCount>10</threadCount>
<runOrder>random</runOrder>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<argLine>@{jacocoAgent} @{jdk11SurefireOptions}</argLine>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.1.2</version>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
<configuration>
<parallel>all</parallel>
<threadCount>10</threadCount>
<runOrder>random</runOrder>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<argLine>@{jacocoAgent} @{jdk11FailsafeOptions}</argLine>
<systemPropertyVariables>
<arquillian.launch>${arquillian.launch}</arquillian.launch>
<integration.test.mode>${integration.test.mode}</integration.test.mode>
<webdriver.browser>${webdriver.browser}</webdriver.browser>
<webdriver.chrome.driver>${webdriver.chrome.driver}</webdriver.chrome.driver>
<webdriver.chrome.binary>${webdriver.chrome.binary}</webdriver.chrome.binary>
<webdriver.gecko.driver>${webdriver.gecko.driver}</webdriver.gecko.driver>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>${docs.phase}</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<doclint>all,-reference</doclint>
<overview>${project.build.sourceDirectory}/overview.html</overview>
<sourcepath>${project.build.sourceDirectory}
:${project.build.directory}/generated-sources/annotations</sourcepath>
<additionalOptions>--snippet-path ${snippet.path}</additionalOptions>
<doctitle>${javadoc.title}</doctitle>
<bottom>Copyright © ${project.inceptionYear}-2023 Flow Logix, Inc. All Rights Reserved.</bottom>
<excludePackageNames>*.impl</excludePackageNames>
<links>
<link>https://javadoc.io/doc/jakarta.platform/jakarta.jakartaee-api/${jakarta.ee.version}</link>
<link>https://javadoc.io/doc/org.jboss.shrinkwrap/shrinkwrap-api/${shrinkwrap.api.version}</link>
<link>https://javadoc.io/doc/org.omnifaces/omnifaces/${omnifaces.version}</link>
<link>https://javadoc.io/doc/org.primefaces/primefaces/${primefaces.version}</link>
<link>https://javadoc.io/doc/org.projectlombok/lombok/${lombok.version}</link>
</links>
<notimestamp>true</notimestamp>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>${docs.phase}</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.4.0</version>
</plugin>
<plugin>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-maven-plugin</artifactId>
<version>1.18.20.0</version>
<configuration>
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
<addOutputDirectory>false</addOutputDirectory>
</configuration>
<executions>
<execution>
<phase>${delombok.phase}</phase>
<goals>
<goal>delombok</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<overWriteIfNewer>false</overWriteIfNewer>
<artifactItems>
<artifactItem>
<groupId>fish.payara.distributions</groupId>
<artifactId>payara</artifactId>
<version>${payara.version}</version>
<type>zip</type>
</artifactItem>
</artifactItems>
<skip>${payara.start.skip}</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<retryFailedDeploymentCount>5</retryFailedDeploymentCount>
<deployAtEnd>true</deployAtEnd>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
<preparationGoals>validate</preparationGoals>
<releaseProfiles>${release.profile},docs,javadoc-release</releaseProfiles>
<tagNameFormat>Version-@{project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.simplify4u.plugins</groupId>
<artifactId>sign-maven-plugin</artifactId>
<version>1.0.1</version>
<configuration>
<serverId>${gpg.keyname}</serverId>
<skipNoKey>false</skipNoKey>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<skipIfEmpty>true</skipIfEmpty>
</configuration>
</plugin>
<plugin>
<groupId>io.github.git-commit-id</groupId>
<artifactId>git-commit-id-maven-plugin</artifactId>
<version>6.0.0</version>
<configuration>
<useNativeGit>false</useNativeGit>
<dotGitDirectory>${flowlogix.basedir}/.git</dotGitDirectory>
<failOnNoGitDirectory>false</failOnNoGitDirectory>
<abbrevLength>7</abbrevLength>
<gitDescribe>
<skip>true</skip>
</gitDescribe>
<generateGitPropertiesFile>true</generateGitPropertiesFile>
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename>
<includeOnlyProperties>
<includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty>
<includeOnlyProperty>^git.commit.id.(abbrev|full)$</includeOnlyProperty>
</includeOnlyProperties>
<commitIdGenerationMode>full</commitIdGenerationMode>
<dateFormatTimeZone>UTC</dateFormatTimeZone>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<reporting>
<plugins>
<plugin>
<artifactId>maven-jxr-plugin</artifactId>
<version>3.3.0</version>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>payara-server-remote</id>
<properties>
<payara.start.skip>true</payara.start.skip>
</properties>
</profile>
<profile>
<id>payara-docker</id>
<properties>
<payara.start.skip>true</payara.start.skip>
<arquillian.launch>payara-docker</arquillian.launch>
</properties>
</profile>
<profile>
<id>stress-test</id>
<properties>
<test_groups>StressTest</test_groups>
</properties>
</profile>
<profile>
<id>ui-test</id>
<properties>
<test_groups>UserInterface</test_groups>
</properties>
</profile>
<profile>
<id>all-tests</id>
<properties>
<test_groups>any()</test_groups>
</properties>
</profile>
<profile>
<id>release-flowlogix-to-central</id>
<build>
<plugins>
<plugin>
<groupId>org.simplify4u.plugins</groupId>
<artifactId>sign-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>${staging.server}</id>
<url>${nexus.url}/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>release-flowlogix-to-hope</id>
<properties>
<staging.server>hope-nexus-artifacts</staging.server>
<nexus.url>https://nexus.hope.nyc.ny.us</nexus.url>
</properties>
<distributionManagement>
<repository>
<id>${staging.server}</id>
<url>${nexus.url}/repository/maven-releases/</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>docs</id>
<properties>
<docs.phase>package</docs.phase>
</properties>
</profile>
<profile>
<id>javadoc-release</id>
<properties>
<javadoc.title>${project.name} ${project.version}</javadoc.title>
</properties>
</profile>
<profile>
<id>skip-checkstyle</id>
<activation>
<property>
<name>checkstyle.skip</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<executions>
<execution>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>coverage</id>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
<goal>dump</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<scm>
<url>https://github.com/flowlogix/flowlogix</url>
<connection>scm:git:git@github.com:flowlogix/flowlogix.git</connection>
<developerConnection>scm:git:git@github.com:flowlogix/flowlogix.git</developerConnection>
<tag>Version-7.1.1</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>${staging.server}</id>
<url>${nexus.url}/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.jpa.modelgen.processor</artifactId>
<version>${eclipselink.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>