|
@@ -0,0 +1,37 @@
|
|
|
+<project>
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+ <groupId>org.elasticsearch</groupId>
|
|
|
+ <artifactId>rest-api-spec</artifactId>
|
|
|
+ <version>2.0.0-SNAPSHOT</version>
|
|
|
+ <name>Elasticsearch Rest API Spec</name>
|
|
|
+ <parent>
|
|
|
+ <groupId>org.sonatype.oss</groupId>
|
|
|
+ <artifactId>oss-parent</artifactId>
|
|
|
+ <version>7</version>
|
|
|
+ <relativePath></relativePath>
|
|
|
+ </parent>
|
|
|
+ <properties>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ </properties>
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-remote-resources-plugin</artifactId>
|
|
|
+ <version>1.5</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <goals>
|
|
|
+ <goal>bundle</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ <configuration>
|
|
|
+ <includes>
|
|
|
+ <include>**/*</include>
|
|
|
+ </includes>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+</project>
|