2011-12-05 10:23:33 -05:00
|
|
|
<?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>
|
2014-12-17 03:49:39 -05:00
|
|
|
|
2011-12-05 10:23:33 -05:00
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch-lang-javascript</artifactId>
|
2014-03-28 13:35:10 -04:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2011-12-05 10:23:33 -05:00
|
|
|
<packaging>jar</packaging>
|
2014-03-07 09:41:46 -05:00
|
|
|
<name>Elasticsearch JavaScript language plugin</name>
|
|
|
|
<description>The JavaScript language plugin allows to have javascript as the language of scripts to execute.</description>
|
2015-03-28 11:47:10 -04:00
|
|
|
<url>https://github.com/elastic/elasticsearch-lang-javascript/</url>
|
2011-12-05 10:23:33 -05:00
|
|
|
<inceptionYear>2009</inceptionYear>
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
<scm>
|
2015-03-28 11:47:10 -04:00
|
|
|
<connection>scm:git:git@github.com:elastic/elasticsearch-lang-javascript.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:elastic/elasticsearch-lang-javascript.git</developerConnection>
|
|
|
|
<url>http://github.com/elastic/elasticsearch-lang-javascript</url>
|
2011-12-05 10:23:33 -05:00
|
|
|
</scm>
|
|
|
|
|
2015-03-28 11:48:30 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch-parent</artifactId>
|
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
2011-12-05 10:23:33 -05:00
|
|
|
<properties>
|
2014-12-17 03:49:39 -05:00
|
|
|
<!-- You can add any specific project property here -->
|
2011-12-05 10:23:33 -05:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mozilla</groupId>
|
|
|
|
<artifactId>rhino</artifactId>
|
2012-06-23 15:48:22 -04:00
|
|
|
<version>1.7R4</version>
|
2011-12-05 10:23:33 -05:00
|
|
|
<exclusions>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2014-12-17 03:49:39 -05:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2011-12-05 10:23:33 -05:00
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-01-02 12:39:08 -05:00
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>oss-snapshots</id>
|
|
|
|
<name>Sonatype OSS Snapshots</name>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2013-02-24 16:32:11 -05:00
|
|
|
</project>
|