blob: d49df9f173564296d5a937e06ccfce38b28ba220 [file] [log] [blame]
<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>
<!-- The basics. -->
<groupId>net.hydromatic</groupId>
<artifactId>linq4j</artifactId>
<version>0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<!-- More project information. -->
<name>linq4j</name>
<description>linq4j is a port of LINQ (Language-Integrated Query) to Java.</description>
<url>http://github.com/julianhyde/linq4j</url>
<inceptionYear>2012</inceptionYear>
<organization>
<name>Julian Hyde</name>
<url>http://www.hydromatic.net</url>
</organization>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>julianhyde</id>
<name>Julian Hyde</name>
<email>jhyde@pentaho.com</email>
<url>https://github.com/julianhyde</url>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>-8</timezone>
<properties/>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!-- Environment settings. -->
<issueManagement>
<system>github</system>
<url>https://github.com/julianhyde/linq4j/issues</url>
</issueManagement>
<mailingLists/>
<scm>
<connection>scm:git:git://github.com/julianhyde/linq4j.git</connection>
<url>scm:git:git://github.com/julianhyde/linq4j.git</url>
</scm>
<!-- Dependencies. -->
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
<configuration>
<links>
<link>http://docs.oracle.com/javase/7/docs/api/</link>
</links>
</configuration>
</plugin>
</plugins>
</reporting>
</project>