<?xml version="1.0" encoding="UTF-8"?>
<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.xilinx.rapidwright</groupId>
    <artifactId>jupyter-kernel-jsr223</artifactId>
    <version>1.0.1</version>
    <url>https://github.com/clavin-xlnx/jupyter-kernel-jsr223</url>
    <name>Jupyter Kernel JSR223</name>
    <description>Fork of Jupyter Kernel JSR223 for RapidWright Jython Kernel</description>
    <scm>
      <url>git@github.com:clavin-xlnx/jupyter-kernel-jsr223.git</url>
      <connection>scm:git@github.com:clavin-xlnx/jupyter-kernel-jsr223.git</connection>
    </scm>
    <licenses>
      <license>
	<name>Apache 2.0</name>
        <url>https://www.apache.org/licenses/LICENSE-2.0</url>
        <distribution>repo</distribution>
      </license>
    </licenses>
    <developers>
      <developer>
	<name>Jupyter Kernel JSR-223 Developers</name>
      </developer>
    </developers>
    <properties>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
    <dependencies>
        <dependency>
            <groupId>commons-cli</groupId>
            <artifactId>commons-cli</artifactId>
            <version>1.2</version>
        </dependency>
        <dependency>
            <groupId>org.zeromq</groupId>
            <artifactId>jeromq</artifactId>
            <version>0.5.2</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.json/json -->
        <dependency>
            <groupId>org.json</groupId>
            <artifactId>json</artifactId>
            <version>20160810</version>
        </dependency>

    </dependencies>
    <!-- Build package files with 'mvn clean install' -->
    <build>
      <plugins>
	<plugin>
	  <artifactId>maven-resources-plugin</artifactId>
	  <version>3.0.2</version>
	  <configuration>
	    <outputDirectory>target/classes/org/jupyterkernel/console/resources</outputDirectory>
	    <resources>
              <resource>
		<directory>src/main/java/org/jupyterkernel/console/resources</directory>
		<includes>
		  <include>start.py</include>
		</includes>
              </resource>
	    </resources>
	  </configuration>
	</plugin>
	<plugin>
	  <groupId>org.apache.maven.plugins</groupId>
	  <artifactId>maven-source-plugin</artifactId>
	  <version>3.2.1</version>
	  <executions>
	    <execution>
	      <id>attach-sources</id>
	      <goals>
		<goal>jar</goal>
	      </goals>
	    </execution>
	  </executions>
	</plugin>
	<plugin>
	  <groupId>org.apache.maven.plugins</groupId>
	  <artifactId>maven-javadoc-plugin</artifactId>
	  <version>3.3.1</version>
	  <executions>
	    <execution>
	      <id>attach-javadocs</id>
	      <goals>
		<goal>jar</goal>
	      </goals>
	    </execution>
	  </executions>
	</plugin>
      </plugins>
    </build>
</project>
