# ------------------------------------------------------------------- # 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. # ------------------------------------------------------------------- # ------------------------------------------------------------------- # Properties for the Announcement plugin # ------------------------------------------------------------------- # Version for which to create a release note. If not defined, it # defaults to ${pom.currentVersion}. # For example: # maven.announcement.version = ${pom.currentVersion} # Remote repository where the artifact is distributed. For now, this # property does not exist in the POM (there's only a distributionSite and # distributionDirectory which doesn't map to anything for the web). We'll # need to remove this property once it makes it into the POM. maven.announcement.repo.remote = ${maven.repo.remote} # Distribution location. maven.announcement.distributionUrl = ${maven.announcement.repo.remote}/${pom.groupId}/plugins # Stylesheet to use to generate the text announcement maven.announcement.stylesheet.path = ${plugin.resources}/announcement.jsl # Encoding to be used to generate the file maven.announcement.encoding = UTF-8 # IP address or name of the SMTP server used to send an announcement email # maven.announcement.mail.server = # IP address or name of the host used to log on the SMTP server maven.announcement.mail.client = localhost # From address to use when sending an announcement email. If not defined, # the first email address found in the POM will be used. # maven.announcement.mail.from = # Comma-separated list of addresses to use when sending an announcement email. # maven.announcement.mail.to = # Mail subject to use when sending an announcement email. maven.announcement.mail.subject = [ANN] ${pom.name} %VERSION% released # Flag indicating if the announcement should be generated when restrictions # doesn't apply: # - changes.xml is missing # - release version is missing on changes.xml # - release version is missing on project.xml tag # If set to true, these restrictions are ignored maven.announcement.lenient = false