| 组织ID: |
org.vibur |
| 项目ID: |
vibur-object-pool |
| 版本: |
0.8.9 |
| 最后修改时间: |
2019-04-15 14:02:52 |
| 包类型: |
jar |
| 标题: |
Vibur Object Pool |
| 描述: |
Vibur Object Pool is a general-use concurrent Java object pool. |
| 相关URL: |
https://code.google.com/p/vibur-object-pool |
| 大小: |
17.26KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.vibur</groupId>
<artifactId>vibur-object-pool</artifactId>
<version>0.8.9</version>
</dependency>
|
| Gradle引入代码: |
org.vibur:vibur-object-pool:0.8.9
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2013 Simeon Malchev
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<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>org.vibur</groupId>
<artifactId>vibur-object-pool</artifactId>
<version>0.8.9</version>
<packaging>jar</packaging>
<name>Vibur Object Pool</name>
<description>Vibur Object Pool is a general-use concurrent Java object pool.</description>
<url>https://code.google.com/p/vibur-object-pool</url>
<inceptionYear>2013</inceptionYear>
<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>
</license>
</licenses>
<!--<parent>-->
<!--<groupId>org.sonatype.oss</groupId>-->
<!--<artifactId>oss-parent</artifactId>-->
<!--<version>7</version>-->
<!--</parent>-->
<scm>
<connection>scm:svn:http://vibur-object-pool.googlecode.com/svn/tags/0.8.9</connection>
<developerConnection>scm:svn:https://vibur-object-pool.googlecode.com/svn/tags/0.8.9</developerConnection>
<url>http://vibur-object-pool.googlecode.com/svn/tags/0.8.9</url>
</scm>
<developers>
<developer>
<name>Simeon Malchev</name>
<email>simeon.malchev@gmail.com</email>
<id>simeonmalchev</id>
<url>http://simeonmalchev.com</url>
<timezone>+10</timezone>
<roles>
<role>owner</role>
<role>developer</role>
</roles>
</developer>
</developers>
<organization>
<name>Simeon Malchev</name>
<url>http://simeonmalchev.com</url>
</organization>
<issueManagement>
<system>code.google.com</system>
<url>http://code.google.com/p/vibur-object-pool/issues</url>
</issueManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.6</java.version>
<junit.version>4.11</junit.version>
<maven.compiler.plugin.version>2.3.2</maven.compiler.plugin.version>
<maven.release.plugin.version>2.2</maven.release.plugin.version>
<maven.javadoc.plugin.version>2.8</maven.javadoc.plugin.version>
<maven.surefire.plugin.version>2.10</maven.surefire.plugin.version>
<maven.source.plugin.version>2.1.2</maven.source.plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven.release.plugin.version}</version>
<configuration>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugin.version}</version>
<configuration>
<reportOutputDirectory>${project.basedir}</reportOutputDirectory>
<destDir>doc</destDir>
</configuration>
<executions>
<execution>
<id>aggregate</id>
<goals>
<goal>aggregate</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.source.plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
<execution>
<id>deploy-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
org.vibur.objectpool.AbstractBasePoolService.class
org.vibur.objectpool.AbstractValidatingPoolService.class
org.vibur.objectpool.BasePoolService.class
org.vibur.objectpool.ConcurrentHolderLinkedPool$1.class
org.vibur.objectpool.ConcurrentHolderLinkedPool$ObjectHolder.class
org.vibur.objectpool.ConcurrentHolderLinkedPool.class
org.vibur.objectpool.ConcurrentLinkedPool.class
org.vibur.objectpool.Holder.class
org.vibur.objectpool.HolderValidatingPoolService.class
org.vibur.objectpool.NonValidatingPoolService.class
org.vibur.objectpool.PoolObjectFactory.class
org.vibur.objectpool.util.SamplingPoolReducer$1.class
org.vibur.objectpool.util.SamplingPoolReducer$PoolReducerRunnable.class
org.vibur.objectpool.util.SamplingPoolReducer.class
org.vibur.objectpool.util.ThreadedPoolReducer.class
META-INF/maven/org.vibur/vibur-object-pool/pom.xml
META-INF/maven/org.vibur/vibur-object-pool/pom.properties
|
| 依赖Jar: |
junit-${junit.version}.jar
/junit/junit/${junit.version}
查看junit所有版本文件
|