组织ID: |
com.google.code.tempus-fugit |
项目ID: |
tempus-fugit |
版本: |
1.1 |
最后修改时间: |
2018-07-27 20:25:00 |
包类型: |
jar |
标题: |
tempus-fugit |
描述: |
Java classes for temporal testing and concurrency |
相关URL: |
http://code.google.com/p/tempus-fugit/ |
大小: |
54.64KB |
|
Maven引入代码: |
<dependency>
<groupId>com.google.code.tempus-fugit</groupId>
<artifactId>tempus-fugit</artifactId>
<version>1.1</version>
</dependency>
|
Gradle引入代码: |
com.google.code.tempus-fugit:tempus-fugit:1.1
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2009-2011, tempus-fugit committers
~
~ 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">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.code.tempus-fugit</groupId>
<artifactId>tempus-fugit</artifactId>
<version>1.1</version>
<packaging>jar</packaging>
<name>tempus-fugit</name>
<organization>
<name>tempus-fugit committers</name>
</organization>
<description>Java classes for temporal testing and concurrency</description>
<inceptionYear>2009</inceptionYear>
<url>http://code.google.com/p/tempus-fugit/</url>
<scm>
<connection>scm:svn:http://tempus-fugit.googlecode.com/svn/tags/tempus-fugit-1.1</connection>
<developerConnection>scm:svn:https://tempus-fugit.googlecode.com/svn/tags/tempus-fugit-1.1</developerConnection>
<url>http://tempus-fugit.googlecode.com/svn/tags/tempus-fugit-1.1</url>
</scm>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<issueManagement>
<system>Google Code</system>
<url>http://code.google.com/p/tempus-fugit/issues/list</url>
</issueManagement>
<developers>
<developer>
<id>toby.weston</id>
<name>Toby Weston</name>
<email>toby weston gmail com</email>
<organization />
<roles>
<role>Java Developer</role>
</roles>
</developer>
</developers>
<!-- Workaround for SUREFIRE-300 -->
<!--<properties>-->
<!--<maven.test.skip>true</maven.test.skip>-->
<!--</properties>-->
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
</dependency>
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock</artifactId>
<version>2.5.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock-junit4</artifactId>
<version>2.5.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock-legacy</artifactId>
<version>2.5.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jmock</groupId>
<artifactId>jmock-cglib</artifactId>
<version>1.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-idea-plugin</artifactId>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</configuration>
</plugin>
<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>
<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>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.4.2</version>
</plugin>
<!--<plugin>-->
<!--<groupId>org.codehaus.mojo</groupId>-->
<!--<artifactId>cobertura-maven-plugin</artifactId>-->
<!--</plugin>-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
</plugin>
<!--<plugin>-->
<!--<groupId>org.apache.maven.plugins</groupId>-->
<!--<artifactId>maven-changelog-plugin</artifactId>-->
<!--<configuration>-->
<!--<type>date</type>-->
<!--<dates>-->
<!--<date implementation="java.lang.String">2009-10-11</date>-->
<!--<date implementation="java.lang.String">2010-12-01</date>-->
<!--</dates>-->
<!--<dateFormat>yyyy-MM-dd</dateFormat>-->
<!--</configuration>-->
<!--</plugin>-->
</plugins>
</reporting>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.google.code.tempusfugit.CompositeFactory.class
com.google.code.tempusfugit.concurrency.annotations.Concurrent.class
com.google.code.tempusfugit.concurrency.annotations.GuardedBy$Type.class
com.google.code.tempusfugit.concurrency.annotations.GuardedBy.class
com.google.code.tempusfugit.concurrency.annotations.Immutable.class
com.google.code.tempusfugit.concurrency.annotations.Intermittent.class
com.google.code.tempusfugit.concurrency.annotations.Not.class
com.google.code.tempusfugit.concurrency.annotations.Repeating.class
com.google.code.tempusfugit.concurrency.annotations.Task.class
com.google.code.tempusfugit.concurrency.annotations.ThreadSafe.class
com.google.code.tempusfugit.concurrency.Callable.class
com.google.code.tempusfugit.concurrency.CallableAdapter$1.class
com.google.code.tempusfugit.concurrency.CallableAdapter.class
com.google.code.tempusfugit.concurrency.ConcurrentRule.class
com.google.code.tempusfugit.concurrency.ConcurrentScheduler.class
com.google.code.tempusfugit.concurrency.ConcurrentTestRunner$1.class
com.google.code.tempusfugit.concurrency.ConcurrentTestRunner$ConcurrentTestRunnerThreadFactory.class
com.google.code.tempusfugit.concurrency.ConcurrentTestRunner.class
com.google.code.tempusfugit.concurrency.CountDownLatchWithTimeout.class
com.google.code.tempusfugit.concurrency.DeadlockDetector.class
com.google.code.tempusfugit.concurrency.DefaultThreadFactory.class
com.google.code.tempusfugit.concurrency.DefaultTimeoutableCompletionService.class
com.google.code.tempusfugit.concurrency.ExecuteUsingLock.class
com.google.code.tempusfugit.concurrency.ExecutorServiceShutdown$1.class
com.google.code.tempusfugit.concurrency.ExecutorServiceShutdown.class
com.google.code.tempusfugit.concurrency.IntermittentTestRunner.class
com.google.code.tempusfugit.concurrency.InterruptCapturingThread.class
com.google.code.tempusfugit.concurrency.Interrupter$1.class
com.google.code.tempusfugit.concurrency.Interrupter.class
com.google.code.tempusfugit.concurrency.Interruptible.class
com.google.code.tempusfugit.concurrency.RepeatingRule.class
com.google.code.tempusfugit.concurrency.RunConcurrently$1.class
com.google.code.tempusfugit.concurrency.RunConcurrently$StatementEvaluatingTask.class
com.google.code.tempusfugit.concurrency.RunConcurrently.class
com.google.code.tempusfugit.concurrency.RunRepeatedly.class
com.google.code.tempusfugit.concurrency.ThreadDump.class
com.google.code.tempusfugit.concurrency.ThreadUtils$1.class
com.google.code.tempusfugit.concurrency.ThreadUtils.class
com.google.code.tempusfugit.concurrency.TimeoutableCompletionService.class
com.google.code.tempusfugit.concurrency.TimeoutExceptionWithResults.class
com.google.code.tempusfugit.ExceptionWrapper$ExceptionFactory.class
com.google.code.tempusfugit.ExceptionWrapper.class
com.google.code.tempusfugit.Factory.class
com.google.code.tempusfugit.FactoryException.class
com.google.code.tempusfugit.temporal.Clock.class
com.google.code.tempusfugit.temporal.Condition.class
com.google.code.tempusfugit.temporal.Conditions$ExecutorShutdownCondition.class
com.google.code.tempusfugit.temporal.Conditions$MatcherCondition.class
com.google.code.tempusfugit.temporal.Conditions$NotCondition.class
com.google.code.tempusfugit.temporal.Conditions$ThreadAliveCondition.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
junit-4.7.jar
/junit/junit/4.7
查看junit所有版本文件
jmock-2.5.1.jar
/org.jmock/jmock/2.5.1
查看jmock所有版本文件
jmock-junit4-2.5.1.jar
/org.jmock/jmock-junit4/2.5.1
查看jmock-junit4所有版本文件
jmock-legacy-2.5.1.jar
/org.jmock/jmock-legacy/2.5.1
查看jmock-legacy所有版本文件
jmock-cglib-1.1.0.jar
/jmock/jmock-cglib/1.1.0
查看jmock-cglib所有版本文件
hamcrest-core-1.1.jar
/org.hamcrest/hamcrest-core/1.1
查看hamcrest-core所有版本文件
hamcrest-library-1.1.jar
/org.hamcrest/hamcrest-library/1.1
查看hamcrest-library所有版本文件
|