diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-11-17 20:49:06 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-11-30 11:10:13 +0100 |
commit | 1511b9d96b1690428bd794d13209183e56e26f15 (patch) | |
tree | 603db39cdf8232a5168e64ea628fbe6ba33423d8 /sonar-application/assembly.xml | |
parent | 7c5e4417d36b93690629df5fe398028e38740b81 (diff) | |
download | sonarqube-1511b9d96b1690428bd794d13209183e56e26f15.tar.gz sonarqube-1511b9d96b1690428bd794d13209183e56e26f15.zip |
SONAR-7959 Remove ppc64 arch from wrapper
Diffstat (limited to 'sonar-application/assembly.xml')
-rw-r--r-- | sonar-application/assembly.xml | 34 |
1 files changed, 13 insertions, 21 deletions
diff --git a/sonar-application/assembly.xml b/sonar-application/assembly.xml index a860949142d..e4f951c2858 100644 --- a/sonar-application/assembly.xml +++ b/sonar-application/assembly.xml @@ -132,30 +132,22 @@ <unpack>false</unpack> <scope>provided</scope> </dependencySet> - <!-- Java Service Wrapper --> - <dependencySet> - <outputDirectory>bin</outputDirectory> - <includes> - <include>org.sonatype.jsw-binaries:jsw-binaries</include> - </includes> - <unpack>true</unpack> - <scope>provided</scope> - <unpackOptions> - <excludes> - <exclude>**/app</exclude> - <exclude>**/*.bat</exclude> - <exclude>**/sample*/**</exclude> - <exclude>**/macosx-universal-32/**</exclude> - <exclude>**/solaris*/**</exclude> - <!-- SONAR-6110 - Drop support files for Linux PPC 64 --> - <exclude>**/linux-ppc-64/**</exclude> - </excludes> - </unpackOptions> - <fileMode>0755</fileMode> - </dependencySet> </dependencySets> <fileSets> + <!-- wrapper binaries --> + <fileSet> + <directory>src/main/assembly</directory> + <outputDirectory>/</outputDirectory> + <includes> + <include>bin/*/lib/*.so</include> + <include>bin/*/lib/*.jnilib</include> + <include>bin/*/lib/*.dll</include> + <include>bin/*/wrapper</include> + <include>bin/*/wrapper.exe</include> + </includes> + <fileMode>0755</fileMode> + </fileSet> <!-- Configuration Files --> <fileSet> <directory>src/main/assembly</directory> |