<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
	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>org.eclipse.dirigible</groupId>
		<artifactId>dirigible-components-parent</artifactId>
		<version>12.45.0</version>
		<relativePath>../../pom.xml</relativePath>
	</parent>

	<name>Components - Engine - Jobs</name>
	<artifactId>dirigible-components-engine-jobs</artifactId>
    <packaging>jar</packaging>

    <dependencies>
    	<!-- Base -->
		<dependency>
			<groupId>org.eclipse.dirigible</groupId>
			<artifactId>dirigible-components-data-sources</artifactId>
		</dependency>
    	<dependency>
	    	<groupId>org.eclipse.dirigible</groupId>
			<artifactId>dirigible-components-core-repository</artifactId>
    	</dependency>
        <dependency>
            <groupId>org.eclipse.dirigible</groupId>
            <artifactId>dirigible-components-core-base</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.eclipse.dirigible</groupId>
            <artifactId>dirigible-components-core-tracing</artifactId>
            <scope>compile</scope>
        </dependency>
		<dependency>
			<groupId>org.eclipse.dirigible</groupId>
			<artifactId>dirigible-components-engine-template</artifactId>
		</dependency>
		
		<!-- Libraries -->
        <dependency>
            <groupId>commons-validator</groupId>
            <artifactId>commons-validator</artifactId>
            <version>1.10.0</version>
            <scope>compile</scope>
        </dependency>
		<dependency>
			<groupId>org.eclipse.dirigible</groupId>
			<artifactId>dirigible-components-core-registry</artifactId>
			<scope>compile</scope>
		</dependency>
		<dependency>
	    	<groupId>org.eclipse.dirigible</groupId>
			<artifactId>dirigible-parsers-typescript</artifactId>
    	</dependency>
		
		<!-- Engines -->
		<dependency>
			<groupId>org.eclipse.dirigible</groupId>
			<artifactId>dirigible-components-engine-javascript</artifactId>
		</dependency>
		
		<!-- TODO -->
		<dependency>
			<groupId>org.eclipse.dirigible</groupId>
			<artifactId>dirigible-components-api-mail</artifactId>
			<scope>compile</scope>
		</dependency>
		
		<!-- spring's support for quartz -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context-support</artifactId>
        </dependency>
        <!-- quartz -->
        <dependency>
            <groupId>org.quartz-scheduler</groupId>
            <artifactId>quartz</artifactId>
            <exclusions>
            	<exclusion>
            		<groupId>com.zaxxer</groupId>
            		<artifactId>HikariCP-java7</artifactId>
            	</exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.mchange</groupId>
            <artifactId>c3p0</artifactId>
            <version>${c3p0.version}</version>
        </dependency>
		
	</dependencies>

	<properties>
		<license.header.location>../../../licensing-header.txt</license.header.location>
		<parent.pom.folder>../../../</parent.pom.folder>
	</properties>

</project>
