<?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/maven-v4_0_0.xsd">
  <parent>
    <artifactId>oss-parent</artifactId>
    <groupId>org.sonatype.oss</groupId>
    <version>7</version>
    <relativePath>../pom.xml/pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.github.igor-suhorukov</groupId>
  <artifactId>java-as-script</artifactId>
  <version>1.1</version>
  <developers>
    <developer>
      <name>Igor Sukhorukov</name>
      <email>igor.suhorukov[skip this] at gmail.com</email>
      <url>http://suhorukov.blogspot.ru</url>
    </developer>
  </developers>
  <licenses>
    <license>
      <name>New BSD License</name>
      <url>https://raw.githubusercontent.com/vaadin/vaadin-deps/master/licenses/licenses/new-bsd-license.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:git://github.com/igor-suhorukov/java-as-script.git</connection>
    <developerConnection>scm:git:ssh://git@github.com/igor-suhorukov/java-as-script.git</developerConnection>
    <url>https://github.com/igor-suhorukov/java-as-script.git</url>
  </scm>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>2.4</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <artifactSet>
            <includes>
              <include>com.github.igor-suhorukov:janino-commons-compiler-ecj</include>
              <include>com.github.igor-suhorukov:mvn-classloader</include>
            </includes>
          </artifactSet>
          <transformers>
            <transformer>
              <mainClass>org.github.suhorukov.java.as.script.ScriptRunner</mainClass>
            </transformer>
          </transformers>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>hamcrest-core</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
  <properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>
</project>

