<?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">
	<modelVersion>4.0.0</modelVersion>

	<parent>
		<groupId>com.appjars</groupId>
		<artifactId>appjars-process-manager</artifactId>
		<version>2.0.0</version>
	</parent>

	<artifactId>appjars-process-manager-flow</artifactId>
	<packaging>jar</packaging>
	<name>Process Manager - Flow</name>
	<description>Process Manager Views for Vaadin Flow</description>

	<properties>
		<appjars.automatic.module.name>com.appjars.processmanager.flow</appjars.automatic.module.name>
	</properties>

	<dependencies>
		

		<dependency>
			<groupId>com.vaadin</groupId>
			<!-- Replace artifactId with vaadin-core to use only free components -->
			<artifactId>vaadin-core</artifactId>
		</dependency>
		<dependency>
			<groupId>com.vaadin</groupId>
			<artifactId>vaadin-spring-boot-starter</artifactId>
		</dependency>

		<dependency>
		   <groupId>com.appjars</groupId>
		   <artifactId>appjars-flow-utils</artifactId>
		   <version>${appjars.utils.version}</version>
		</dependency> 		

		<!-- Process manager -->
		<dependency>
			<groupId>com.appjars</groupId>
			<artifactId>appjars-process-manager-business</artifactId>
			<version>${project.version}</version>
		</dependency>
		
		<dependency>
		  <groupId>it.burning</groupId>
		  <artifactId>cron-expression-descriptor</artifactId>
		  <version>${cron.expression.descriptor.version}</version>
		</dependency>
		
		<dependency>
		   <groupId>com.flowingcode.vaadin.addons</groupId>
		   <artifactId>error-window-vaadin</artifactId>
		   <version>${error.window.vaadin.version}</version>
		</dependency>
		
		<dependency>
			<groupId>org.projectlombok</groupId>
			<artifactId>lombok</artifactId>
			<scope>provided</scope>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>

	</dependencies>

	

	<profiles>
		<profile>
			<id>it</id>
			<build>
				<plugins>
					<!-- Runs the integration tests (*IT) after the server is started -->
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-failsafe-plugin</artifactId>
						<executions>
							<execution>
								<goals>
									<goal>integration-test</goal>
									<goal>verify</goal>
								</goals>
							</execution>
						</executions>
						<configuration>
							<trimStackTrace>false</trimStackTrace>
							<enableAssertions>true</enableAssertions>
						</configuration>
					</plugin>
				</plugins>
			</build>
		</profile>

	</profiles>
</project>