activejdbc-instrumentation
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.javalite</groupId> <artifactId>activejdbc-instrumentation</artifactId> <version>3.5-j11</version> </dependency>
<?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/maven-v4_0_0.xsd"> <parent> <artifactId>javalite</artifactId> <groupId>org.javalite</groupId> <version>3.5-j11</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>activejdbc-instrumentation</artifactId> <packaging>maven-plugin</packaging> <name>JavaLite - ActiveJDBC Instrumentation Plugin</name> <version>3.5-j11</version> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.3</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer> <manifestEntries> <Premain-Class>org.javalite.instrumentation.JavaAgent</Premain-Class> </manifestEntries> </transformer> </transformers> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>3.0-alpha-2</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>plexus-interpolation</artifactId> <groupId>org.codehaus.plexus</groupId> </exclusion> <exclusion> <artifactId>maven-compat</artifactId> <groupId>org.apache.maven</groupId> </exclusion> <exclusion> <artifactId>plexus-container-default</artifactId> <groupId>org.codehaus.plexus</groupId> </exclusion> <exclusion> <artifactId>wstx-asl</artifactId> <groupId>org.codehaus.woodstox</groupId> </exclusion> <exclusion> <artifactId>model-builder</artifactId> <groupId>org.sonatype.spice</groupId> </exclusion> <exclusion> <artifactId>maven-project-builder</artifactId> <groupId>org.apache.maven</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>