| 组织ID: |
com.google.code.tempus-fugit |
| 项目ID: |
tempus-fugit |
| 版本: |
1.0 |
| 最后修改时间: |
2019-10-22 23:52:36 |
| 包类型: |
jar |
| 标题: |
tempus-fugit |
| 描述: |
Java classes for temporal testing and concurrency |
| 相关URL: |
http://code.google.com/p/tempus-fugit/ |
| 大小: |
46.75KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.google.code.tempus-fugit</groupId>
<artifactId>tempus-fugit</artifactId>
<version>1.0</version>
</dependency>
|
| Gradle引入代码: |
com.google.code.tempus-fugit:tempus-fugit:1.0
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2009-2010, 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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.code.tempus-fugit</groupId>
<artifactId>tempus-fugit</artifactId>
<version>1.0</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.0</connection>
<developerConnection>scm:svn:https://tempus-fugit.googlecode.com/svn/tags/tempus-fugit-1.0</developerConnection>
<url>http://tempus-fugit.googlecode.com/svn/tags/tempus-fugit-1.0</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>
<distributionManagement>
<repository>
<id>java.net-m2-repository</id>
<url>java-net:/maven2-repository/trunk/repository/</url>
</repository>
</distributionManagement>
<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>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<extensions>
<extension>
<groupId>org.jvnet.wagon-svn</groupId>
<artifactId>wagon-svn</artifactId>
<version>RELEASE</version>
</extension>
</extensions>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</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-idea-plugin</artifactId>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<!-- goes via https://svn.dev.java.net/svn/maven2-repository/trunk/repository/ using wagon -->
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
</repository>
</repositories>
<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>-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.3</version>
<configuration>
<xmlPath>${basedir}/src/site/changes.xml</xmlPath>
<issueLinkTemplatePerSystem>
<google>http://code.google.com/p/tempus-fugit/issues/detail?id=%ISSUE%</google>
</issueLinkTemplatePerSystem>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
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.ConcurrentTestRunner$ConcurrentScheduler$1.class
com.google.code.tempusfugit.concurrency.ConcurrentTestRunner$ConcurrentScheduler.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.Factory.class
com.google.code.tempusfugit.temporal.Condition.class
com.google.code.tempusfugit.temporal.Conditions$ExecutorShutdownCondition.class
com.google.code.tempusfugit.temporal.Conditions$NotCondition.class
com.google.code.tempusfugit.temporal.Conditions$ThreadAliveCondition.class
com.google.code.tempusfugit.temporal.Conditions$ThreadStateCondition.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所有版本文件
|