| 组织ID: |
com.googlecode.usc |
| 项目ID: |
jdbcdslog |
| 版本: |
1.0.6.2 |
| 最后修改时间: |
2018-07-28 06:52:19 |
| 包类型: |
jar |
| 标题: |
jdbcdslog |
| 相关URL: |
http://code.google.com/p/jdbcdslog-exp/ |
| 大小: |
33.71KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.googlecode.usc</groupId>
<artifactId>jdbcdslog</artifactId>
<version>1.0.6.2</version>
</dependency>
|
| Gradle引入代码: |
com.googlecode.usc:jdbcdslog:1.0.6.2
|
| 下载Jar包: |
|
| POM文件内容: |
<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>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.googlecode.usc</groupId>
<artifactId>jdbcdslog</artifactId>
<version>1.0.6.2</version>
<packaging>jar</packaging>
<name>jdbcdslog</name>
<url>http://code.google.com/p/jdbcdslog-exp/</url>
<licenses>
<license>
<name>Apache License,Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<scm>
<connection>scm:svn:http://jdbcdslog-exp.googlecode.com/svn/tags/jdbcdslog-1.0.6.2</connection>
<developerConnection>scm:svn:https://jdbcdslog-exp.googlecode.com/svn/tags/jdbcdslog-1.0.6.2</developerConnection>
<url>http://jdbcdslog-exp.googlecode.com/svn/tags/jdbcdslog-1.0.6.2</url>
</scm>
<issueManagement>
<url>http://code.google.com/p/jdbcdslog-exp/issues/list</url>
</issueManagement>
<developers>
<developer>
<name>akolyadenko</name>
<id>akolyadenko</id>
<email>akolyadenko@gmail.com</email>
<organization>jdbcdslog</organization>
<organizationUrl>http://code.google.com/p/jdbcdslog/</organizationUrl>
<roles>
<role>Owner</role>
</roles>
</developer>
<developer>
<name>Li Shunli</name>
<id>ShunLi</id>
<url>http://blogjava.net/lishunli</url>
<email>lishunli.me@gmail.com</email>
<organization>USC</organization>
<organizationUrl>http://code.google.com/p/usc/</organizationUrl>
<timezone>+8</timezone>
<roles>
<role>Owner</role>
</roles>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<JAVA_1_5_HOME>C:\Progra~1\Java\jdk1.5.0_22</JAVA_1_5_HOME>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.5.10</version>
<scope>compile</scope>
</dependency>
<!-- test scope -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.5.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.15</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
</exclusion>
<exclusion>
<groupId>javax.jms</groupId>
<artifactId>jms</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jdmk</groupId>
<artifactId>jmxtools</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jmx</groupId>
<artifactId>jmxri</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>1.8.0.10</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<encoding>${project.build.sourceEncoding}</encoding>
<fork>true</fork>
<executable>${JAVA_1_5_HOME}/bin/javac</executable>
<compilerVersion>1.5</compilerVersion>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-9</version>
<configuration>
<tagBase>https://jdbcdslog-exp.googlecode.com/svn/tags/</tagBase>
<branchBase>https://jdbcdslog-exp.googlecode.com/svn/branches/</branchBase>
<mavenExecutorId>forked-path</mavenExecutorId>
</configuration>
</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-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<includePom>true</includePom>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<locale>en_US</locale>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
org.jdbcdslog.CallableStatementLoggingHandler.class
org.jdbcdslog.ConfigurationParameters.class
org.jdbcdslog.ConnectionLogger.class
org.jdbcdslog.ConnectionLoggingProxy.class
org.jdbcdslog.ConnectionPoolDataSourceProxy.class
org.jdbcdslog.ConnectionPoolXADataSourceProxy.class
org.jdbcdslog.DataSourceProxy.class
org.jdbcdslog.DataSourceProxyBase.class
org.jdbcdslog.DriverLoggingProxy.class
org.jdbcdslog.GenericLoggingHandler.class
org.jdbcdslog.JDBCDSLogException.class
org.jdbcdslog.LogUtils.class
org.jdbcdslog.MySqlRdbmsSpecifics.class
org.jdbcdslog.OracleRdbmsSpecifics.class
org.jdbcdslog.PooledConnectionLoggingProxy.class
org.jdbcdslog.PreparedStatementLoggingHandler.class
org.jdbcdslog.RdbmsSpecifics.class
org.jdbcdslog.ResultSetLogger.class
org.jdbcdslog.ResultSetLoggingHandler.class
org.jdbcdslog.SlowQueryLogger.class
org.jdbcdslog.SqlServerRdbmsSpecifics.class
org.jdbcdslog.StatementLogger.class
org.jdbcdslog.StatementLoggingHandler.class
org.jdbcdslog.XAConnectionLoggingProxy.class
org.jdbcdslog.XADataSourceProxy.class
META-INF/maven/com.googlecode.usc/jdbcdslog/pom.xml
META-INF/maven/com.googlecode.usc/jdbcdslog/pom.properties
|
| 依赖Jar: |
slf4j-api-1.5.10.jar
/org.slf4j/slf4j-api/1.5.10
查看slf4j-api所有版本文件
slf4j-log4j12-1.5.10.jar
/org.slf4j/slf4j-log4j12/1.5.10
查看slf4j-log4j12所有版本文件
log4j-1.2.15.jar
/log4j/log4j/1.2.15
查看log4j所有版本文件
junit-4.9.jar
/junit/junit/4.9
查看junit所有版本文件
hsqldb-1.8.0.10.jar
/hsqldb/hsqldb/1.8.0.10
查看hsqldb所有版本文件
|