1<!-- 2 ~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 ~ 4 ~ Licensed under the Apache License, Version 2.0 (the "License"). 5 ~ You may not use this file except in compliance with the License. 6 ~ A copy of the License is located at 7 ~ 8 ~ http://aws.amazon.com/apache2.0 9 ~ 10 ~ or in the "license" file accompanying this file. This file is distributed 11 ~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 12 ~ express or implied. See the License for the specific language governing 13 ~ permissions and limitations under the License. 14 --> 15 16<assembly 17 xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3" 18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 19 xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd"> 20 <id>uber</id> 21 <formats> 22 <format>jar</format> 23 </formats> 24 <includeBaseDirectory>false</includeBaseDirectory> 25 <dependencySets> 26 <dependencySet> 27 <outputDirectory>/</outputDirectory> 28 <useProjectArtifact>true</useProjectArtifact> 29 <unpack>true</unpack> 30 <scope>test</scope> 31 </dependencySet> 32 </dependencySets> 33 <fileSets> 34 <fileSet> 35 <directory>${project.build.directory}/test-classes</directory> 36 <outputDirectory>/</outputDirectory> 37 <includes> 38 <include>**/*.class</include> 39 <include>*.properties</include> 40 </includes> 41 <useDefaultExcludes>true</useDefaultExcludes> 42 </fileSet> 43 </fileSets> 44</assembly>