<
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
>
<
groupId
>com.*.es</
groupId
>
<
artifactId
>score-plugins</
artifactId
>
<
version
>1.0.0-SNAPSHOT</
version
>
<
name
>score-plugins</
name
>
<
url
>http://maven.apache.org</
url
>
<
dependencies
>
<
dependency
>
<
groupId
>org.elasticsearch</
groupId
>
<
artifactId
>elasticsearch</
artifactId
>
<
version
>2.3.5</
version
>
<
scope
>provided</
scope
>
</
dependency
>
</
dependencies
>
<
build
>
<
plugins
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-assembly-plugin</
artifactId
>
<
version
>2.6</
version
>
<
configuration
>
<
appendAssemblyId
>false</
appendAssemblyId
>
<
outputDirectory
>${project.build.directory}/releases/</
outputDirectory
>
<
descriptors
>
<
descriptor
>${basedir}/src/main/assemblies/plugin.xml</
descriptor
>
</
descriptors
>
</
configuration
>
<
executions
>
<
execution
>
<
phase
>package</
phase
>
<
goals
>
<
goal
>single</
goal
>
</
goals
>
</
execution
>
</
executions
>
</
plugin
>
<
plugin
>
<
groupId
>org.apache.maven.plugins</
groupId
>
<
artifactId
>maven-compiler-plugin</
artifactId
>
<
version
>3.5.1</
version
>
<
configuration
>
<
source
>1.8</
source
>
<
target
>1.8</
target
>
</
configuration
>
</
plugin
>
</
plugins
>
<
resources
>
<
resource
>
<
directory
>src/main/resources</
directory
>
<
filtering
>false</
filtering
>
<
excludes
>
<
exclude
>*.properties</
exclude
>
</
excludes
>
</
resource
>
</
resources
>
</
build
>
</
project
>