<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.github.naskarlab</groupId>
  <artifactId>fluent-query</artifactId>
  <version>master-SNAPSHOT</version>
  <name>fluent-query</name>
  <description>Create Queries using only POJO classes.</description>
  <url>https://github.com/naskarlab/fluent-query</url>
  <inceptionYear>2016</inceptionYear>
  <licenses>
    <license>
      <name>GNU Lesser General Public License v3.0</name>
      <url>https://api.github.com/licenses/lgpl-3.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>naskarlab</id>
      <name>naskarlab</name>
      <email></email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git://github.com/naskarlab/fluent-query.git</connection>
    <developerConnection>scm:git://github.com/naskarlab/fluent-query.git</developerConnection>
    <url>git://github.com/naskarlab/fluent-query.git</url>
  </scm>
  <properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>cglib</groupId>
      <artifactId>cglib-nodep</artifactId>
      <version>3.1</version>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
