<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>pojo</artifactId>
		<version>0.6.0</version>
	</parent>

	<groupId>br.com.objectos.way</groupId>
	<artifactId>pojo-compiler</artifactId>
	<name>objectos :: way :: pojo :: compiler</name>

	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-compiler-plugin</artifactId>
					<configuration>
						<fork>true</fork>
						<compilerArgument>-proc:none</compilerArgument>
					</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>
					<dependency>
						<groupId>br.com.objectos.way</groupId>
						<artifactId>metainf-compiler</artifactId>
						<version>0.6.0</version>
					</dependency>
				</dependencies>
			</plugin>
		</plugins>
	</build>

	<dependencies>
		<dependency>
			<groupId>br.com.objectos.way</groupId>
			<artifactId>pojo-annotations</artifactId>
			<version>0.6.0</version>
		</dependency>
		<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.way</groupId>
			<artifactId>pojo-plugin</artifactId>
			<version>0.6.0</version>
		</dependency>

		<dependency>
			<groupId>br.com.objectos.way</groupId>
			<artifactId>code-apt</artifactId>
			<version>0.6.0</version>
		</dependency>
		<dependency>
			<groupId>br.com.objectos.way</groupId>
			<artifactId>code-core</artifactId>
			<version>0.6.0</version>
		</dependency>
		<dependency>
			<groupId>br.com.objectos.way</groupId>
			<artifactId>code-testing</artifactId>
			<version>0.6.0</version>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>br.com.objectos.way</groupId>
			<artifactId>metainf-annotations</artifactId>
			<version>0.6.0</version>
			<optional>true</optional>
		</dependency>
	</dependencies>

</project>
