training-tools
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.training</groupId> <artifactId>training-tools</artifactId> <version>1.3.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- 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 https://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. --> <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> <parent> <groupId>org.apache</groupId> <artifactId>apache</artifactId> <version>33</version> <!-- Required in our case as per http://maven.apache.org/ref/3.0.3/maven-model/maven.html#class_parent --> <relativePath /> </parent> <groupId>org.apache.training</groupId> <artifactId>training-tools</artifactId> <version>1.3.0</version> <packaging>pom</packaging> <name>Training: Tools</name> <scm> <connection>scm:git:https://gitbox.apache.org/repos/asf/incubator-training.git</connection> <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/incubator-training.git</developerConnection> <url>https://github.com/apache/incubator-training</url> <tag>release/tools/1.3.0</tag> </scm> <modules> <module>content-archetype</module> <module>content-parent-pom</module> <module>content-parent-resources</module> </modules> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <!-- Tell the plugin to always release all modules using the same version --> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> <!-- Generate the legally required text files in the jars --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-remote-resources-plugin</artifactId> <executions> <execution> <id>process-resource-bundles</id> <goals> <goal>process</goal> </goals> <configuration> <resourceBundles> <!-- Will generate META-INF/{DEPENDENCIES,LICENSE,NOTICE} --> <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle> <!-- Will generate META-INF/DISCLAIMER --> <resourceBundle>org.apache:apache-incubator-disclaimer-resource-bundle:1.1</resourceBundle> </resourceBundles> <!-- Content in this directory will be appended to generated resources --> <appendedResourcesDirectory>${basedir}/src/remote-resources</appendedResourcesDirectory> </configuration> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.6.0</version> <configuration> <finalName>apache-training-incubating-tools-${project.version}</finalName> </configuration> </plugin> <!-- As we renamed the default output name in the plugin above, we also have to tell the checksum plugin where the new file is --> <plugin> <groupId>net.nicoulaj.maven.plugins</groupId> <artifactId>checksum-maven-plugin</artifactId> <version>1.11</version> <configuration> <algorithms> <algorithm>SHA-512</algorithm> </algorithms> <csvSummary>false</csvSummary> <fileSets> <fileSet> <directory>${project.build.directory}</directory> <includes> <include>apache-training-incubating-tools-${project.version}-source-release.zip</include> </includes> </fileSet> </fileSets> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>