log4jdbc JDBC proxy driver.
JDBC proxy driver for logging SQL and other interesting information..
Here is the list of declaration for log4jdbc. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.googlecode.log4jdbc</groupId> <artifactId>log4jdbc</artifactId> <version>1.2</version> </dependency>
If you think this Maven repository POM file listing for log4jdbc is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The log4jdbc-1.2 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Log | slf4j-api 1.6.0 The slf4j API | 68 |
The following packages are defined in the log4jdbc-1.2.jar
net.sf.log4jdbc
Here is the content of the POM file.
<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"> <modelVersion>4.0.0</modelVersion> <groupId>com.googlecode.log4jdbc</groupId> <artifactId>log4jdbc</artifactId> <packaging>jar</packaging> <version>1.2</version> <name>log4jdbc JDBC proxy driver</name> <description>JDBC proxy driver for logging SQL and other interesting information.</description> <url>https://code.google.com/p/log4jdbc</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <scm> <connection>scm:hg:https://code.google.com/p/log4jdbc/</connection> <url>https://code.google.com/p/log4jdbc/source/checkout</url> </scm> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <build> <sourceDirectory>src-jdbc4</sourceDirectory> </build> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.0</version> <scope>compile</scope> </dependency> </dependencies> <!-- just to make maven quiet, we don't have any resources that get copied anyway --> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <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> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>