psi-probe-tomcat9
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.psi-probe</groupId> <artifactId>psi-probe-tomcat9</artifactId> <version>4.4.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed under the GPL License. You may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.gnu.org/licenses/old-licenses/gpl-2.0.html THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. --> <project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://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.psi-probe</groupId> <artifactId>psi-probe</artifactId> <version>4.4.0</version> </parent> <groupId>com.github.psi-probe</groupId> <artifactId>psi-probe-tomcat9</artifactId> <version>4.4.0</version> <name>psi-probe-tomcat9</name> <description>PSI Probe Tomcat 9.0.x Adapter - Implementation of features specific to Apache Tomcat 9.0.x</description> <url>https://github.com/psi-probe/psi-probe/</url> <scm> <connection>scm:git:ssh://git@github.com/psi-probe/psi-probe.git</connection> <developerConnection>scm:git:ssh://git@github.com/psi-probe/psi-probe.git</developerConnection> <tag>psi-probe-4.4.0</tag> <url>https://github.com/psi-probe/psi-probe/</url> </scm> <properties> <tomcat.version>9.0.105</tomcat.version> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>psi-probe-core</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-catalina</artifactId> <version>${tomcat.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-jasper</artifactId> <version>${tomcat.version}</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.eclipse.jdt</groupId> <artifactId>ecj</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-dbcp</artifactId> <version>${tomcat.version}</version> <scope>provided</scope> </dependency> </dependencies> </project>