p7spy
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.randomnoun.p7spy</groupId>
<artifactId>p7spy</artifactId>
<version>2.0.1</version>
</dependency><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>
<groupId>com.randomnoun.p7spy</groupId>
<artifactId>p7spy</artifactId>
<version>2.0.1</version>
<packaging>jar</packaging>
<name>p7spy</name>
<description>JDBC tracing/benchmarking utility</description>
<url>https://github.com/randomnoun/p7spy</url>
<!-- version 0.x of this project was when it was hosted on sourceforge; driver name was net.sf.p7spy.P7SpyDriver.
It self-reported as version 1 in P7SpyDriver.getMajorVersion()
version 1.x never existed
-->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jdk.version>11</jdk.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.randomnoun.log4j</groupId>
<artifactId>log4j-good-bits</artifactId>
<version>1.2.17-1</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.3.29</version>
</dependency>
<!-- might need an older version of derby to test in older JDKs -->
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.15.2.0</version><!-- 10.16.1.1 requires jdk 17 -->
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbyclient</artifactId>
<version>10.15.2.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<scm>
<connection>scm:git:http://gitlab.dev.randomnoun/randomnoun/p7spy.git</connection>
<developerConnection>scm:git:http://gitlab.dev.randomnoun/randomnoun/p7spy.git</developerConnection>
<url>http://gitlab.dev.randomnoun/randomnoun/p7spy</url>
<tag>p7spy-2.0.1</tag>
</scm>
<ciManagement>
<system>Bamboo</system>
<url>http://bamboo.dev.randomnoun/browse/RANDOMNOUN-COMMONPUBLIC</url>
</ciManagement>
<licenses>
<license>
<name>Simplified BSD License</name>
<url>http://www.randomnoun.com/licences/bsd-simplified.txt</url>
<!-- <url>http://opensource.org/licenses/BSD-2-Clause</url> -->
<distribution>repo</distribution>
<comments>Simplified BSD License (BSD 2-clause license).</comments>
</license>
</licenses>
<mailingLists>
<mailingList>
<name>common-public Mailing List</name>
<subscribe>common-public-subscribe@lists.randomnoun.com</subscribe>
<unsubscribe>common-public-unsubscribe@lists.randomnoun.com</unsubscribe>
<post>common-public@lists.randomnoun.com</post>
<archive>http://lists.randomnoun.com/pipermail/common-public/</archive>
</mailingList>
</mailingLists>
<organization>
<name>randomnoun</name>
<url>http://www.randomnoun.com</url>
</organization>
<developers>
<developer>
<id>knoxg</id>
<name>Greg Knox</name>
<email>knoxg@randomnoun.com</email>
<organization>randomnoun</organization>
<organizationUrl>http://www.randomnoun.com</organizationUrl>
<roles>
<role>Software Gazelle</role>
</roles>
<timezone>Australia/Brisbane</timezone>
<properties>
<picUrl>http://www.gravatar.com/avatar/10b6f00fa8d70d6f4e042558a9433086.jpg?s=32</picUrl>
</properties>
</developer>
</developers>
<build>
<finalName>p7spy</finalName>
<!-- Build with Java 11 -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>11</source>
<target>11</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.15</version>
<configuration>
<!-- x<argLine>${surefireArgLine} ${surefireArgLine2}</argLine> -->
<systemPropertyVariables>
<runOrder>alphabetical</runOrder>
</systemPropertyVariables>
<includes>
<include>**/*Test.java</include>
<include>**/*TestSuite.java</include>
</includes>
</configuration>
<executions>
<execution>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
<dependencies>
<dependency>
<groupId>lt.velykis.maven.skins</groupId>
<artifactId>reflow-velocity-tools</artifactId>
<version>1.0.0</version>
</dependency>
<!-- Reflow skin requires Velocity >= 1.7 -->
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<version>1.7</version>
</dependency>
<dependency>
<groupId>com.randomnoun.maven.doxia</groupId>
<artifactId>doxia-module-html</artifactId>
<version>1.1.0</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<!--
this configuration is used during the javadoc:jar goal during the release
configuration for the reports is in the <reporting> section
-->
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<failOnError>false</failOnError>
<javadocDirectory>${project.basedir}/src/main/javadoc</javadocDirectory>
<docfilessubdirs>true</docfilessubdirs>
<author>true</author>
<linksource>true</linksource>
</configuration>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
javacc-maven-plugin
</artifactId>
<versionRange>
[2.5,)
</versionRange>
<goals>
<goal>jtb-javacc</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
exec-maven-plugin
</artifactId>
<versionRange>
[3.0.0,)
</versionRange>
<goals>
<goal>java</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
<executions>
<execution>
<id>compile-generator</id>
<phase>generate-sources</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>generate-codes</id>
<goals>
<goal>java</goal>
</goals>
<phase>process-sources</phase>
<configuration>
<mainClass>com.randomnoun.p7spy.generator.ClassStubGenerator</mainClass>
<arguments>
<argument>-p</argument>
<argument>com.randomnoun.p7spy.jdbc_4_3</argument>
<argument>target/generated-sources/java</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>process-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.9</version>
<configuration>
<webAccessUrl>https://github.com/randomnoun/log4j-one</webAccessUrl>
<anonymousConnection>scm:git:ssh://git@github.com:randomnoun/log4j-one.git</anonymousConnection>
<developerConnection>scm:git:ssh://git@github.com:randomnoun/log4j-one.git</developerConnection>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<!--
this configuration is used during the site:site goal during the release
configuration for the javadoc artifact is in the <pluginManagement> section
-->
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<failOnError>false</failOnError>
<javadocDirectory>${project.basedir}/src/main/javadoc</javadocDirectory>
<docfilessubdirs>true</docfilessubdirs>
<author>true</author>
<linksource>true</linksource>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>javadoc</report>
<report>test-javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.19.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.5</version>
<configuration>
<linkJavadoc>true</linkJavadoc>
<javadocDir>target/site/apidocs</javadocDir>
</configuration>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<repository>
<id>releases</id>
<name>randomnoun releases</name>
<url>http://nexus2.dev.randomnoun/nexus/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>randomnoun snapshots</name>
<url>http://nexus2.dev.randomnoun/nexus/content/repositories/snapshots/</url>
<uniqueVersion>false</uniqueVersion>
</snapshotRepository>
</distributionManagement>
</project>