plugins
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.opentracing.contrib.specialagent.plugins</groupId> <artifactId>plugins</artifactId> <version>0.9.0</version> </dependency>
<!-- Copyright 2018-2019 The OpenTracing Authors Licensed 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. --> <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>io.opentracing.contrib.specialagent</groupId> <artifactId>specialagent</artifactId> <version>0.9.0</version> </parent> <groupId>io.opentracing.contrib.specialagent.plugins</groupId> <artifactId>plugins</artifactId> <packaging>pom</packaging> <name>${project.groupId}:${project.artifactId}</name> <url>https://github.com/opentracing-contrib/java-specialagent/tree/master/plugins</url> <modules> <module>opentracing-specialagent-okhttp</module> <module>opentracing-specialagent-jdbc</module> <module>opentracing-specialagent-concurrent</module> <module>opentracing-specialagent-mongo-driver</module> <module>opentracing-specialagent-web-servlet-filter</module> <module>opentracing-specialagent-camel</module> <module>opentracing-specialagent-aws-sdk</module> <module>opentracing-specialagent-cassandra-driver</module> <module>opentracing-specialagent-jms-1</module> <module>opentracing-specialagent-jms-2</module> </modules> <profiles> <profile> <id>assemble</id> <activation> <property> <name>assemble</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <id>integration-test</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <phase>integration-test</phase> <configuration> <skip>true</skip> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>default</id> <activation> <property> <name>!assemble</name> </property> </activation> <dependencies> <dependency> <groupId>io.opentracing.contrib.specialagent</groupId> <artifactId>opentracing-specialagent</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> </dependencies> </profile> </profiles> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> <resource> <directory>${project.build.directory}/generated-resources</directory> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-testCompile</id> <goals> <goal>testCompile</goal> </goals> <configuration> <skip>${deploy}</skip> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <goals> <goal>tree</goal> </goals> <phase>generate-resources</phase> <configuration> <outputType>tgf</outputType> <outputFile>${project.build.directory}/generated-resources/dependencies.tgf</outputFile> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <trimStackTrace>false</trimStackTrace> <reuseForks>false</reuseForks> <includes> <include>**/*Test</include> <include>**/*TestCase</include> </includes> <excludes> <exclude>**/*ITest</exclude> <exclude>**/*IntegrationTest</exclude> <exclude>**/*IntegrationTestCase</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <id>integration-test</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> <phase>integration-test</phase> <configuration> <trimStackTrace>false</trimStackTrace> <reuseForks>false</reuseForks> <includes> <include>**/*ITest</include> <include>**/*IntegrationTest</include> <include>**/*IntegrationTestCase</include> </includes> <excludes> <exclude></exclude> <!-- This is necessary for inner classes to be run --> </excludes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>io.opentracing.contrib.specialagent</groupId> <artifactId>agentplugin-maven-plugin</artifactId> <version>${project.version}</version> <executions> <execution> <goals> <goal>fingerprint</goal> </goals> <phase>generate-resources</phase> <configuration> <destFile>${project.build.directory}/generated-resources/fingerprint.bin</destFile> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy-agent</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.opentracing.contrib.specialagent</groupId> <artifactId>opentracing-specialagent-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.opentracing</groupId> <artifactId>opentracing-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.opentracing</groupId> <artifactId>opentracing-util</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.opentracing</groupId> <artifactId>opentracing-noop</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.opentracing.contrib</groupId> <artifactId>opentracing-tracerresolver</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.opentracing</groupId> <artifactId>opentracing-mock</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-embedder</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-compat</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> </project>