| 组织ID: |
com.dottydingo.async |
| 项目ID: |
worker |
| 版本: |
1.0.0 |
| 最后修改时间: |
2019-07-11 18:41:15 |
| 包类型: |
jar |
| 标题: |
Async worker framework. |
| 描述: |
An asynchronous worker framework. |
| 相关URL: |
https://github.com/orgs/dottydingo |
| 大小: |
14.26KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.dottydingo.async</groupId>
<artifactId>worker</artifactId>
<version>1.0.0</version>
</dependency>
|
| Gradle引入代码: |
com.dottydingo.async:worker:1.0.0
|
| 下载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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<groupId>com.dottydingo.async</groupId>
<artifactId>worker</artifactId>
<version>1.0.0</version>
<name>Async worker framework.</name>
<description>An asynchronous worker framework.</description>
<url>https://github.com/orgs/dottydingo</url>
<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>
<developers>
<developer>
<name>Mark Hellkamp</name>
<email>mark@dottydingo.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:dottydingo/async-worker.git</connection>
<developerConnection>scm:git:git@github.com:dottydingo/async-worker.git</developerConnection>
<url>https://github.com/orgs/dottydingo</url>
</scm>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.5</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.0.5.RELEASE</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId> mockito-all</artifactId>
<version>1.9.0</version>
<scope>test</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId> slf4j-simple</artifactId>
<version>1.7.5</version>
<scope>test</scope>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<optimize>true</optimize>
</configuration>
</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
com.dottydingo.async.worker.Agent$1.class
com.dottydingo.async.worker.Agent$NoOpMetricReporter.class
com.dottydingo.async.worker.Agent$PollerThread.class
com.dottydingo.async.worker.Agent$WorkerThreadFactory.class
com.dottydingo.async.worker.Agent$WorkerWrapper.class
com.dottydingo.async.worker.Agent.class
com.dottydingo.async.worker.AgentMbean.class
com.dottydingo.async.worker.AgentStatus.class
com.dottydingo.async.worker.BackOffStrategy.class
com.dottydingo.async.worker.ConstantBackOffStrategy.class
com.dottydingo.async.worker.ExponentialBackOffStrategy.class
com.dottydingo.async.worker.MetricReporter.class
com.dottydingo.async.worker.Poller.class
com.dottydingo.async.worker.Worker.class
META-INF/maven/com.dottydingo.async/worker/pom.xml
META-INF/maven/com.dottydingo.async/worker/pom.properties
|
| 依赖Jar: |
slf4j-api-1.7.5.jar
/org.slf4j/slf4j-api/1.7.5
查看slf4j-api所有版本文件
spring-context-4.0.5.RELEASE.jar
/org.springframework/spring-context/4.0.5.RELEASE
查看spring-context所有版本文件
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
mockito-all-1.9.0.jar
/org.mockito/ mockito-all/1.9.0
查看 mockito-all所有版本文件
slf4j-simple-1.7.5.jar
/org.slf4j/ slf4j-simple/1.7.5
查看 slf4j-simple所有版本文件
|