assemblies.uima-single-project-bin.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of uima-build-resources
Show all versions of uima-build-resources
This Jar contains resources
referred to by maven coordinates,
needed during building
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <!-- This is the bin assembly for standard single-project components other than PEARs --> <assembly> <id>bin</id> <formats> <format>tar.gz</format> <format>zip</format> </formats> <includeBaseDirectory>false</includeBaseDirectory> <baseDirectory>/apache-uima</baseDirectory> <dependencySets> <!-- include all compile/runtime dependencies in the lib dir --> <dependencySet> <outputDirectory>lib</outputDirectory> <useProjectArtifact>false</useProjectArtifact> <fileMode>644</fileMode> <directoryMode>755</directoryMode> <useTransitiveDependencies>false</useTransitiveDependencies> </dependencySet> </dependencySets> <!-- Add other files - scripts, documentation, examples --> <fileSets> <!-- add main jar artifact to lib/ directory --> <fileSet> <directory>target</directory> <outputDirectory>lib</outputDirectory> <includes><include>*.jar</include></includes> <fileMode>644</fileMode> </fileSet> <!-- These next are the directories that are the "standard" ones and position per the PEAR spec --> <fileSet> <directory>bin</directory> <outputDirectory>bin</outputDirectory> <includes><include>*.sh</include></includes> <fileMode>755</fileMode> <directoryMode>755</directoryMode> </fileSet> <fileSet> <directory>bin</directory> <outputDirectory>bin</outputDirectory> <excludes><exclude>*.sh</exclude></excludes> <fileMode>644</fileMode> <directoryMode>755</directoryMode> </fileSet> <fileSet> <directory>.</directory> <outputDirectory>.</outputDirectory> <fileMode>644</fileMode> <directoryMode>755</directoryMode> <includes> <include>README*</include> <include>readme*</include> <include>LICENSE*</include> <include>NOTICE*</include> <include>RELEASE_NOTES*</include> <include>Release-Notes*</include> <include>desc/**</include> <include>doc/**</include> <include>data/**</include> <include>resources/**</include> <include>conf/**</include> <include>issuesFixed/**</include> </includes> </fileSet> <!-- docbooks --> <fileSet> <directory>target/site/d</directory> <outputDirectory>docs</outputDirectory> <fileMode>644</fileMode> <directoryMode>755</directoryMode> </fileSet> </fileSets> </assembly>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy