pom.xml 2.01 KB
<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>
	<groupId>pl.waw.ipipan.zil.trendminer</groupId>
	<artifactId>ptp</artifactId>
	<packaging>pom</packaging>
	<version>0.0.1-SNAPSHOT</version>
	<name>Polish Tweet Processor master project</name>
	<inceptionYear>2014</inceptionYear>
	<organization>
		<name>Institute of Computer Science, Polish Academy of Sciences</name>
		<url>http://www.ipipan.eu</url>
	</organization>
	<developers>
		<developer>
			<id>mkopec</id>
			<name>Mateusz Kopeć</name>
			<email>m.kopec@ipipan.waw.pl</email>
			<url>http://zil.ipipan.waw.pl/MateuszKopec</url>
			<organization>Institute of Computer Science, Polish Academy of Sciences</organization>
			<organizationUrl>http://www.ipipan.eu</organizationUrl>
			<roles>
				<role>architect</role>
				<role>developer</role>
			</roles>
			<timezone>0</timezone>
		</developer>
	</developers>
	<modules>
		<module>ptp-process</module>
		<module>ptp-nlp</module>
		<module>ptp-upload</module>
		<module>ptp-common</module>
		<module>ptp-export</module>
	</modules>
	<dependencies>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.17</version>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.0</version>
				<configuration>
					<source>1.7</source>
					<target>1.7</target>
				</configuration>
			</plugin>
		</plugins>
	</build>
	<repositories>
		<repository>
			<id>OpenIMAJ maven releases repository</id>
			<url>http://maven.openimaj.org</url>
		</repository>
		<repository>
			<id>OpenIMAJ maven snapshots repository</id>
			<url>http://snapshots.openimaj.org</url>
		</repository>
	</repositories>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>
</project>