| 组织ID: |
com.github.chris2018998 |
| 项目ID: |
BeeCP |
| 版本: |
0.82 |
| 最后修改时间: |
2019-12-14 00:04:15 |
| 包类型: |
jar |
| 标题: |
BeeCP |
| 描述: |
Bee Connection Pool |
| 相关URL: |
https://github.com/Chris2018998/BeeCP |
| 大小: |
69.11KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.github.chris2018998</groupId>
<artifactId>BeeCP</artifactId>
<version>0.82</version>
</dependency>
|
| Gradle引入代码: |
com.github.chris2018998:BeeCP:0.82
|
| 下载Jar包: |
|
| POM文件内容: |
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.chris2018998</groupId>
<artifactId>BeeCP</artifactId>
<version>0.82</version>
<name>BeeCP</name>
<url>https://github.com/Chris2018998/BeeCP</url>
<description>Bee Connection Pool</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Chris2018998</name>
<email>Chris2018998@tom.com</email>
<url>https://github.com/Chris2018998/BeeCP</url>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:Chris2018998/BeeCP.git</connection>
<developerConnection>scm:git:git@github.com:Chris2018998/BeeCP.git</developerConnection>
<url>https://github.com/Chris2018998/BeeCP</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.20.0-GA</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<compilerArguments>
<extdirs>lib</extdirs>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1.1</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<mainClass>org.jmin.bee.pool.util.ProxyClassUtil</mainClass>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
org.jmin.bee.BeeDataSource.class
org.jmin.bee.BeeDataSourceConfig.class
org.jmin.bee.BeeDataSourceFactory.class
org.jmin.bee.pool.Borrower.class
org.jmin.bee.pool.CacheKey.class
org.jmin.bee.pool.ConnectionPool$1.class
org.jmin.bee.pool.ConnectionPool$CompeteTransferPolicy.class
org.jmin.bee.pool.ConnectionPool$ConnectionPoolHook.class
org.jmin.bee.pool.ConnectionPool$CreateConnectionTask.class
org.jmin.bee.pool.ConnectionPool$ExceptionTransferThread.class
org.jmin.bee.pool.ConnectionPool$FairTransferPolicy.class
org.jmin.bee.pool.ConnectionPool$NewConnTransferThread.class
org.jmin.bee.pool.ConnectionPool$PooledConnectionIdleTask.class
org.jmin.bee.pool.ConnectionPool$TransferPolicy.class
org.jmin.bee.pool.ConnectionPool.class
org.jmin.bee.pool.ConnectionPool2.class
org.jmin.bee.pool.PoolBorrowSemaphore.class
org.jmin.bee.pool.PooledConnection.class
org.jmin.bee.pool.PooledConnectionList.class
org.jmin.bee.pool.PooledConnectionState.class
org.jmin.bee.pool.ProxyConnection.class
org.jmin.bee.pool.ProxyConnectionFactory.class
org.jmin.bee.pool.ProxyConnectionImpl.class
org.jmin.bee.pool.ProxyCsStatement.class
org.jmin.bee.pool.ProxyPsStatement.class
org.jmin.bee.pool.ProxyResultSet.class
org.jmin.bee.pool.ProxyResultSetBase.class
org.jmin.bee.pool.ProxyStatement.class
org.jmin.bee.pool.ProxyStatementBase.class
org.jmin.bee.pool.StatementCache.class
org.jmin.bee.pool.StatementCacheUtil.class
org.jmin.bee.pool.StatementCsCacheKey1.class
org.jmin.bee.pool.StatementCsCacheKey2.class
org.jmin.bee.pool.StatementCsCacheKey3.class
org.jmin.bee.pool.StatementPsCacheKey1.class
org.jmin.bee.pool.StatementPsCacheKey2.class
org.jmin.bee.pool.StatementPsCacheKey3.class
org.jmin.bee.pool.StatementPsCacheKey4.class
org.jmin.bee.pool.StatementPsCacheKey5.class
org.jmin.bee.pool.StatementPsCacheKey6.class
org.jmin.bee.pool.util.ConnectionUtil.class
org.jmin.bee.pool.util.ProxyClassUtil.class
org.jmin.bee.pool.util.SystemClock.class
META-INF/maven/com.github.chris2018998/BeeCP/pom.xml
META-INF/maven/com.github.chris2018998/BeeCP/pom.properties
|
| 依赖Jar: |
javassist-3.20.0-GA.jar
/org.javassist/javassist/3.20.0-GA
查看javassist所有版本文件
|