<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>br.com.objectos.way</groupId>
		<artifactId>xls</artifactId>
		<version>0.6.0</version>
	</parent>

	<groupId>br.com.objectos.way</groupId>
	<artifactId>xls-api</artifactId>
	<name>objectos :: way :: xls :: api</name>

	<properties>
		<apache.poi.version>3.15</apache.poi.version>
	</properties>

	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-compiler-plugin</artifactId>
					<configuration>
						<!-- workaround for https://bugs.openjdk.java.net/browse/JDK-8062800 -->
						<useIncrementalCompilation>false</useIncrementalCompilation>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
		<plugins>
			<plugin>
				<groupId>org.bsc.maven</groupId>
				<artifactId>maven-processor-plugin</artifactId>
				<executions>
					<execution>
						<id>process</id>
						<goals>
							<goal>process</goal>
						</goals>
						<phase>generate-sources</phase>
					</execution>
				</executions>
				<dependencies>
					<dependency>
						<groupId>br.com.objectos.way</groupId>
						<artifactId>pojo-boot-compiler</artifactId>
						<version>0.6.0</version>
					</dependency>
				</dependencies>
			</plugin>
		</plugins>
	</build>

	<dependencies>
		<dependency>
			<groupId>br.com.objectos.way</groupId>
			<artifactId>pojo-boot</artifactId>
			<version>0.6.0</version>
			<optional>true</optional>
		</dependency>
	
		<dependency>
			<groupId>br.com.objectos</groupId>
			<artifactId>assertion</artifactId>
		</dependency>
		
		<dependency>
			<groupId>br.com.objectos.core</groupId>
			<artifactId>collections</artifactId>
			<scope>test</scope>
		</dependency>
		
		<dependency>
			<groupId>br.com.objectos</groupId>
			<artifactId>io-cl</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>br.com.objectos</groupId>
			<artifactId>io-fs</artifactId>
		</dependency>
		
		<dependency>
			<groupId>org.apache.poi</groupId>
			<artifactId>poi</artifactId>
			<version>${apache.poi.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.poi</groupId>
			<artifactId>poi-ooxml</artifactId>
			<version>${apache.poi.version}</version>
		</dependency>
	</dependencies>

</project>