pom.xml 2.1 KB
Newer Older
S
sewen 已提交
1
<?xml version="1.0" encoding="UTF-8"?>
S
sewen 已提交
2 3
<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/maven-v4_0_0.xsd">
S
sewen 已提交
4

S
sewen 已提交
5
	<modelVersion>4.0.0</modelVersion>
S
sewen 已提交
6

S
sewen 已提交
7 8
	<parent>
		<groupId>eu.stratosphere</groupId>
S
StephanEwen 已提交
9
		<artifactId>ozone</artifactId>
10
		<version>0.2-ozone</version>
S
sewen 已提交
11
	</parent>
S
sewen 已提交
12

S
sewen 已提交
13 14 15
	<artifactId>pact</artifactId>
	<packaging>pom</packaging>
	<name>pact</name>
S
sewen 已提交
16

S
sewen 已提交
17 18 19 20 21 22 23 24
	<inceptionYear>2009</inceptionYear>
	<licenses>
		<license>
			<name>The Apache Software License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>nephele</distribution>
		</license>
	</licenses>
S
sewen 已提交
25

S
sewen 已提交
26 27
	<developers>
	</developers>
S
sewen 已提交
28

S
sewen 已提交
29 30
	<properties>
	</properties>
S
sewen 已提交
31

S
sewen 已提交
32 33 34 35 36 37
	<dependencyManagement>
		<!-- this section defines the module versions that are used if nothing 
			else is specified. -->
		<dependencies>
		</dependencies>
	</dependencyManagement>
S
sewen 已提交
38

S
sewen 已提交
39 40 41 42
	<dependencies>
	</dependencies>

	<build>
43 44 45 46 47 48 49
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.1.1</version>
				<executions>
					<execution>
S
sewen 已提交
50 51 52 53 54
						<id>source:aggregate</id>
						<phase>package</phase>
						<goals>
							<goal>aggregate</goal>
						</goals>
55 56 57 58 59 60 61 62
					</execution>
				</executions>
				<configuration>
					<includes>
						<include>eu/stratosphere/pact/*</include>
					</includes>
				</configuration>
			</plugin>
S
sewen 已提交
63

64 65
		</plugins>
	</build>
S
sewen 已提交
66

S
sewen 已提交
67 68 69 70
	<modules>
		<module>pact-common</module>
		<module>pact-runtime</module>
		<module>pact-compiler</module>
71
		<module>pact-compiler-tests</module>
S
sewen 已提交
72 73 74 75 76
		<module>pact-clients</module>
		<module>pact-examples</module>
		<module>pact-tests</module>
		<module>pact-array-datamodel</module>
	</modules>
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
	
	<profiles>
		<profile>
			<id>hadoop_yarn</id>
			<activation>
				<activeByDefault>true</activeByDefault>
			</activation>
			<modules>
				<module>pact-hbase</module>
			</modules>
		</profile>
		<profile>
			<id>hadoop_v1</id>
			<modules>
				<!-- No extra modules: pact-hbase is currently not compatible with Hadoop v1 -->
			</modules>
		</profile>
	</profiles>

S
sewen 已提交
96
</project>