All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.maven.com.undefinedlabs.scope.scope-rule-tomcat.pom.xml Maven / Gradle / Ivy

<?xml version="1.0" encoding="UTF-8"?>

<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">
    <parent>
        <groupId>com.undefinedlabs.scope</groupId>
        <artifactId>scope-rules</artifactId>
        <version>0.2.1-beta.3</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>scope-rule-tomcat</artifactId>
    <packaging>jar</packaging>

    <name>Scope Rule for Apache Tomcat</name>
    <description>
        Scope is a APM for tests to give engineering teams unprecedented visibility into their CI process to quickly identify, troubleshoot and fix failed builds.
        This artifact contains the classes to instrument Apache Tomcat.
    </description>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.undefinedlabs.scope</groupId>
            <artifactId>scope-rule-javax-servlet</artifactId>
        </dependency>

        <!-- Test dependencies -->
        <dependency>
            <groupId>net.bytebuddy</groupId>
            <artifactId>byte-buddy-agent</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>com.undefinedlabs.scope</groupId>
            <artifactId>scope-rules-testing</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.apache.tomcat</groupId>
            <artifactId>tomcat-catalina</artifactId>
            <version>${tomcat.version}</version>
            <scope>test</scope>
        </dependency>

        <!--<dependency>
            <groupId>org.apache.tomcat</groupId>
            <artifactId>tomcat-util</artifactId>
            <version>7.0.94</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.apache.tomcat</groupId>
            <artifactId>tomcat-juli</artifactId>
            <version>7.0.94</version>
            <scope>test</scope>
        </dependency>-->




    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-failsafe-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>integration-test</goal>
                            <goal>verify</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifest>
                            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                        </manifest>
                    </archive>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>scope-rule-tomcat-9_0_22-version</id>
            <properties>
                <tomcat.version>9.0.22</tomcat.version>
            </properties>
        </profile>
        <profile>
            <id>scope-rule-tomcat-9_0_1-version</id>
            <properties>
                <tomcat.version>9.0.1</tomcat.version>
            </properties>
        </profile>
        <profile>
            <id>scope-rule-tomcat-8_5_43-version</id>
            <properties>
                <tomcat.version>8.5.43</tomcat.version>
            </properties>
        </profile>
        <profile>
            <id>scope-rule-tomcat-8_5_9-version</id>
            <properties>
                <tomcat.version>8.5.9</tomcat.version>
            </properties>
        </profile>
        <profile>
            <id>scope-rule-tomcat-8_0_53-version</id>
            <properties>
                <tomcat.version>8.0.53</tomcat.version>
            </properties>
        </profile>
        <profile>
            <id>scope-rule-tomcat-8_0_1-version</id>
            <properties>
                <tomcat.version>8.0.1</tomcat.version>
            </properties>
        </profile>

    </profiles>
</project>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy