<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>com.github.eborgbjerg</groupId>
  <artifactId>chessshell-pgn-file-accessor-sqlite4java</artifactId>
  <version>1.0.0</version>
  <name>${project.groupId}:${project.artifactId}</name>
  <description>ChessShell Plugin - PGN file access helper, based on sqlite4java</description>
  <url>https://github.com/eborgbjerg/chessshell-api-1</url>
  
  <!-- NOTE project is built by Apache Ant
       POM file exists primarily in order to publish to Maven Central -->
  
  <build>
    <sourceDirectory>src</sourceDirectory>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.3</version>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
  
  <licenses>
    <license>
      <name>FreeBSD License</name>
      <url>https://en.wikipedia.org/wiki/BSD_licenses</url>
    </license>
  </licenses>
  
  <developers>
    <developer>
      <name>Ejner Borgbjerg</name>
      <email>ejner1@gmail.com</email>
      <organization>GitHub</organization>
      <organizationUrl>https://github.com/eborgbjerg</organizationUrl>
    </developer>
  </developers>  
  
  <scm>
    <connection>scm:git:git://github.com/eborgbjerg/chessshell-api-1.git</connection>
    <developerConnection>scm:git:ssh://github.com/eborgbjerg/chessshell-api-1.git</developerConnection>
    <url>https://github.com/eborgbjerg/chessshell-api-1</url>
  </scm>  
  
  <dependencies>
  
    <!-- TODO  dependencies on sqlite4java and its C library OS dependent binaries
    	 - we avoid putting that here because other plugins will need approximately (if not exactly) the same set
    	 of dependencies, so long-term it may be better to put these dep's in separate POM.
    	 In current version, it will be up to main application to include them.  
     -->
  
  </dependencies>

</project>