Created
December 21, 2012 11:59
-
-
Save katta/4352385 to your computer and use it in GitHub Desktop.
Elastic search plugin descriptor for maven assembly plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<assembly> | |
<id>plugin</id> | |
<formats> | |
<format>zip</format> | |
</formats> | |
<includeBaseDirectory>false</includeBaseDirectory> | |
<dependencySets> | |
<dependencySet> | |
<outputDirectory>/</outputDirectory> | |
<useProjectArtifact>true</useProjectArtifact> | |
<unpack>false</unpack> | |
<scope>compile</scope> | |
<excludes> | |
<exclude>org.elasticsearch:elasticsearch</exclude> | |
<exclude>org.apache.lucene:lucene-core</exclude> | |
<exclude>org.apache.lucene:lucene-analyzers</exclude> | |
<exclude>org.apache.lucene:lucene-queries</exclude> | |
<exclude>org.apache.lucene:lucene-memory</exclude> | |
<exclude>org.apache.lucene:lucene-highlighter</exclude> | |
</excludes> | |
</dependencySet> | |
</dependencySets> | |
<fileSets> | |
<fileSet> | |
<directory>${project.build.directory}</directory> | |
<outputDirectory>/</outputDirectory> | |
<includes> | |
<include>*.jar</include> | |
</includes> | |
</fileSet> | |
</fileSets> | |
</assembly> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment