tomcat10-config
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.hazendaz.tomcat</groupId>
<artifactId>tomcat10-config</artifactId>
<version>10.1.52</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
SPDX-License-Identifier: Apache-2.0
See LICENSE file for details.
Copyright 2011-2026 hazendaz
-->
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.hazendaz</groupId>
<artifactId>base-parent</artifactId>
<version>57</version>
<relativePath />
</parent>
<groupId>com.github.hazendaz.tomcat</groupId>
<artifactId>tomcat10-config</artifactId>
<version>10.1.52</version>
<packaging>pom</packaging>
<name>tomcat10-config</name>
<description>Distribution for Apache Tomcat10 Configuration Only</description>
<url>https://hazendaz.github.io/tomcat10-config/</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>manual</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<scm>
<connection>scm:git:ssh://git@github.com/hazendaz/tomcat10-config.git</connection>
<developerConnection>scm:git:ssh://git@github.com/hazendaz/tomcat10-config.git</developerConnection>
<tag>tomcat10-config-10.1.52</tag>
<url>https://github.com/hazendaz/tomcat10-config</url>
</scm>
<distributionManagement>
<site>
<id>gh-pages-scm</id>
<name>Apache Tomcat 10 Configuration Distribution Wrapper GitHub Pages</name>
<url>scm:git:ssh://git@github.com/hazendaz/tomcat10-config.git</url>
</site>
</distributionManagement>
<properties>
<tomcat.version>10.1.52</tomcat.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat</artifactId>
<version>${tomcat.version}</version>
<type>tar.gz</type>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Unpack -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<goals>
<goal>unpack</goal>
</goals>
<phase>package</phase>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat</artifactId>
<version>${tomcat.version}</version>
<type>tar.gz</type>
<outputDirectory>${project.build.directory}/tomcat-config</outputDirectory>
<includes>**/*bootstrap.jar,**/*tomcat-native.tar.gz,**/*.sh,**/*.xml,**/*catalina.policy,**/*catalina.properties,**/*.xsd,**/*LICENSE,**/*NOTICE,**/*RELEASE-NOTES,**/*RUNNING.txt</includes>
<excludes>**/*lib/**,**/*logs/**,**/*temp/**,**/*webapps/**,**/*work/**</excludes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<!-- Assembly -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>${project.basedir}/src/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<goals>
<goal>single</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>