OpenSearch/plugins/lang-python/pom.xml

43 lines
1.3 KiB
XML
Raw Normal View History

2011-12-05 10:54:04 -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>
2015-06-09 09:17:22 -04:00
<groupId>org.elasticsearch.plugin</groupId>
2011-12-05 10:54:04 -05:00
<artifactId>elasticsearch-lang-python</artifactId>
2015-06-09 09:17:22 -04:00
2011-12-05 10:54:04 -05:00
<packaging>jar</packaging>
<name>Elasticsearch Python language plugin</name>
<description>The Python language plugin allows to have python as the language of scripts to execute.</description>
2011-12-05 10:54:04 -05:00
2015-03-28 09:09:16 -04:00
<parent>
<groupId>org.elasticsearch</groupId>
2015-05-21 22:55:42 -04:00
<artifactId>elasticsearch-plugin</artifactId>
2015-03-28 09:09:16 -04:00
<version>2.0.0-SNAPSHOT</version>
</parent>
2011-12-05 10:54:04 -05:00
<properties>
<!-- You can add any specific project property here -->
2011-12-05 10:54:04 -05:00
</properties>
<dependencies>
<!-- Jython -->
2011-12-05 10:54:04 -05:00
<dependency>
<groupId>org.python</groupId>
<artifactId>jython-standalone</artifactId>
<version>2.7.0</version>
2011-12-05 10:54:04 -05:00
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2011-12-05 10:54:04 -05:00
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>
2015-01-02 12:42:56 -05:00
</project>