| 组织ID: |
org.grouplens.grapht |
| 项目ID: |
grapht |
| 版本: |
0.10.0 |
| 最后修改时间: |
2018-08-02 16:01:37 |
| 包类型: |
jar |
| 标题: |
Grapht Dependency Injector |
| 描述: |
Grapht is a dependency injection container that uses pre-computed dependency graphs
to track and analyze dependencies.
|
| 相关URL: |
http://grapht.grouplens.org/ |
| 大小: |
224.91KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.grouplens.grapht</groupId>
<artifactId>grapht</artifactId>
<version>0.10.0</version>
</dependency>
|
| Gradle引入代码: |
org.grouplens.grapht:grapht:0.10.0
|
| 下载Jar包: |
|
| POM文件内容: |
<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>
<version>0.10.0</version>
<artifactId>grapht</artifactId>
<groupId>org.grouplens.grapht</groupId>
<name>Grapht Dependency Injector</name>
<description>
Grapht is a dependency injection container that uses pre-computed dependency graphs
to track and analyze dependencies.
</description>
<url>http://grapht.grouplens.org/</url>
<organization>
<name>GroupLens Research</name>
<url>http://www.grouplens.org</url>
</organization>
<licenses>
<license>
<name>LGPLv2+</name>
<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<system>GitHub</system>
<url>http://github.com/grouplens/grapht/issues</url>
</issueManagement>
<scm>
<connection>scm:git:https://github.com/grouplens/grapht</connection>
<developerConnection>scm:git:https://github.com/grouplens/grapht</developerConnection>
<url>https://github.com/grouplens/grapht</url>
</scm>
<ciManagement>
<system>travis</system>
<url>https://travis-ci.org/grouplens/grapht</url>
</ciManagement>
<properties>
<grapht.web.path>/srv/www/grapht</grapht.web.path>
<jacoco.version>0.7.1.201405082137</jacoco.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencies>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>1.3.9</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject-tck</artifactId>
<version>1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.testing.compile</groupId>
<artifactId>compile-testing</artifactId>
<version>0.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.14.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
<executions>
<execution>
<id>default-compile</id>
<configuration>
<proc>none</proc>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
<inherited>false</inherited>
<configuration>
<basedir>${basedir}</basedir>
<header>${basedir}/etc/header.txt</header>
<aggregate>true</aggregate>
<strictCheck>true</strictCheck>
<includes>
<include>src/**/*.java</include>
</includes>
<mapping>
<java>SLASHSTAR_STYLE</java>
</mapping>
</configuration>
<executions>
<execution>
<id>check-headers</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</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-site-plugin</artifactId>
<version>3.3</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-file</artifactId>
<version>2.5</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.7</version>
<reportSets>
<reportSet>
<reports>
<report>index</report>
<report>cim</report>
<report>dependencies</report>
<report>dependency-convergence</report>
<report>dependency-info</report>
<report>plugins</report>
<report>issue-tracking</report>
<report>scm</report>
<report>summary</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<inherited>false</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.9</version>
<reportSets>
<reportSet>
<reports>
<report>github-report</report>
</reports>
<configuration>
<includeOpenIssues>false</includeOpenIssues>
<onlyCurrentVersion>true</onlyCurrentVersion>
<columnNames>Id,Summary,Status,Created,Updated,Fix Version</columnNames>
</configuration>
</reportSet>
</reportSets>
</plugin>
<plugin>
<inherited>false</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changelog-plugin</artifactId>
<version>2.2</version>
<reportSets>
<reportSet>
<reports>
<report>changelog</report>
</reports>
<configuration>
<issueIDRegexPattern>(?<=#)\d+\b</issueIDRegexPattern>
<issueLinkUrl>https://github.com/grouplens/lenskit/issues/</issueLinkUrl>
</configuration>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>lint</id>
<activation>
<property>
<name>env.CI</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<show>package</show>
</configuration>
</plugin>
</plugins>
</reporting>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/services/javax.annotation.processing.Processor
org.grouplens.grapht.AbstractContext.class
org.grouplens.grapht.annotation.AliasFor.class
org.grouplens.grapht.annotation.AllowUnqualifiedMatch.class
org.grouplens.grapht.annotation.AnnotationBuilder.class
org.grouplens.grapht.annotation.AnnotationProxy.class
org.grouplens.grapht.annotation.AnnotationValidator.class
org.grouplens.grapht.annotation.Attribute.class
org.grouplens.grapht.annotation.DefaultBoolean.class
org.grouplens.grapht.annotation.DefaultDouble.class
org.grouplens.grapht.annotation.DefaultImplementation.class
org.grouplens.grapht.annotation.DefaultInteger.class
org.grouplens.grapht.annotation.DefaultNull.class
org.grouplens.grapht.annotation.DefaultProvider.class
org.grouplens.grapht.annotation.DefaultString.class
org.grouplens.grapht.Binding.class
org.grouplens.grapht.BindingFunctionBuilder$1.class
org.grouplens.grapht.BindingFunctionBuilder$RuleSet.class
org.grouplens.grapht.BindingFunctionBuilder.class
org.grouplens.grapht.BindingImpl.class
org.grouplens.grapht.CachePolicy.class
org.grouplens.grapht.Component.class
org.grouplens.grapht.ConstructionException.class
org.grouplens.grapht.context.ContextElementMatcher.class
org.grouplens.grapht.context.ContextElements$AnyMatcher.class
org.grouplens.grapht.context.ContextElements$InvertedMatcher.class
org.grouplens.grapht.context.ContextElements$MatchElementImpl.class
org.grouplens.grapht.context.ContextElements$MatchPriority.class
org.grouplens.grapht.context.ContextElements.class
org.grouplens.grapht.context.ContextMatch.class
org.grouplens.grapht.context.ContextMatcher.class
org.grouplens.grapht.context.ContextPattern$1.class
org.grouplens.grapht.context.ContextPattern$Element.class
org.grouplens.grapht.context.ContextPattern.class
org.grouplens.grapht.context.MatchElement$1.class
org.grouplens.grapht.context.MatchElement$Order$1.class
org.grouplens.grapht.context.MatchElement$Order$2.class
org.grouplens.grapht.context.MatchElement$Order.class
org.grouplens.grapht.context.MatchElement.class
org.grouplens.grapht.context.Multiplicity$1.class
org.grouplens.grapht.context.Multiplicity$2.class
org.grouplens.grapht.context.Multiplicity.class
org.grouplens.grapht.context.TypeElementMatcher$1.class
org.grouplens.grapht.context.TypeElementMatcher$MatchElem.class
org.grouplens.grapht.context.TypeElementMatcher$SerialProxy.class
org.grouplens.grapht.context.TypeElementMatcher.class
org.grouplens.grapht.Context.class
org.grouplens.grapht.ContextImpl.class
org.grouplens.grapht.Dependency$1.class
org.grouplens.grapht.Dependency$Flag.class
org.grouplens.grapht.Dependency.class
org.grouplens.grapht.graph.DAGEdge$1.class
org.grouplens.grapht.graph.DAGEdge$2.class
org.grouplens.grapht.graph.DAGEdge$3.class
org.grouplens.grapht.graph.DAGEdge$4.class
org.grouplens.grapht.graph.DAGEdge$5.class
org.grouplens.grapht.graph.DAGEdge$6.class
org.grouplens.grapht.graph.DAGEdge.class
org.grouplens.grapht.graph.DAGNode$1.class
org.grouplens.grapht.graph.DAGNode$EdgeMapSupplier.class
org.grouplens.grapht.graph.DAGNode$NodeSetSupplier.class
org.grouplens.grapht.graph.DAGNode$TopologicalSortSupplier.class
org.grouplens.grapht.graph.DAGNode.class
org.grouplens.grapht.graph.DAGNodeBuilder.class
org.grouplens.grapht.graph.MergePool.class
org.grouplens.grapht.InjectionContainer$DepLookup.class
org.grouplens.grapht.InjectionContainer.class
org.grouplens.grapht.InjectionException.class
org.grouplens.grapht.Injector.class
org.grouplens.grapht.InjectorBuilder.class
org.grouplens.grapht.Instantiator.class
org.grouplens.grapht.Instantiators$InstanceInstantiator.class
org.grouplens.grapht.Instantiators$InstantiatorProvider.class
org.grouplens.grapht.Instantiators$MemoizingInstantiator.class
org.grouplens.grapht.Instantiators$ProviderInstantiator.class
org.grouplens.grapht.Instantiators.class
org.grouplens.grapht.InvalidBindingException.class
org.grouplens.grapht.Module.class
org.grouplens.grapht.Names.class
org.grouplens.grapht.NullDependencyException.class
org.grouplens.grapht.reflect.AbstractSatisfactionVisitor.class
org.grouplens.grapht.reflect.Desire.class
org.grouplens.grapht.reflect.Desires.class
org.grouplens.grapht.reflect.InjectionPoint.class
org.grouplens.grapht.reflect.internal.AnnotationHelper.class
org.grouplens.grapht.reflect.internal.ClassInstantiator$InjectionArgs.class
org.grouplens.grapht.reflect.internal.ClassInstantiator.class
org.grouplens.grapht.reflect.internal.ClassSatisfaction$SerialProxy.class
org.grouplens.grapht.reflect.internal.ClassSatisfaction.class
org.grouplens.grapht.reflect.internal.ConstructorParameterInjectionPoint$SerialProxy.class
org.grouplens.grapht.reflect.internal.ConstructorParameterInjectionPoint.class
org.grouplens.grapht.reflect.internal.FieldInjectionPoint$SerialProxy.class
org.grouplens.grapht.reflect.internal.FieldInjectionPoint.class
org.grouplens.grapht.reflect.internal.InjectionStrategy$1.class
org.grouplens.grapht.reflect.internal.InjectionStrategy$2.class
org.grouplens.grapht.reflect.internal.InjectionStrategy$3.class
org.grouplens.grapht.reflect.internal.InjectionStrategy$4.class
org.grouplens.grapht.reflect.internal.InjectionStrategy.class
org.grouplens.grapht.reflect.internal.InstanceSatisfaction.class
org.grouplens.grapht.reflect.internal.NoArgumentInjectionPoint$SerialProxy.class
org.grouplens.grapht.reflect.internal.NoArgumentInjectionPoint.class
org.grouplens.grapht.reflect.internal.NullSatisfaction$SerialProxy.class
org.grouplens.grapht.reflect.internal.NullSatisfaction.class
org.grouplens.grapht.reflect.internal.ProviderClassSatisfaction$SerialProxy.class
org.grouplens.grapht.reflect.internal.ProviderClassSatisfaction.class
org.grouplens.grapht.reflect.internal.ProviderInstanceSatisfaction.class
org.grouplens.grapht.reflect.internal.ReflectionDesire$SerialProxy.class
org.grouplens.grapht.reflect.internal.ReflectionDesire$Signature.class
org.grouplens.grapht.reflect.internal.ReflectionDesire.class
org.grouplens.grapht.reflect.internal.SetterInjectionPoint$SerialProxy.class
org.grouplens.grapht.reflect.internal.SetterInjectionPoint.class
org.grouplens.grapht.reflect.internal.SimpleInjectionPoint$1.class
org.grouplens.grapht.reflect.internal.SimpleInjectionPoint$SerialProxy.class
org.grouplens.grapht.reflect.internal.SimpleInjectionPoint.class
org.grouplens.grapht.reflect.QualifierMatcher.class
org.grouplens.grapht.reflect.Qualifiers$AbstractMatcher.class
org.grouplens.grapht.reflect.Qualifiers$AnnotationClassMatcher$SerialProxy.class
org.grouplens.grapht.reflect.Qualifiers$AnnotationClassMatcher.class
org.grouplens.grapht.reflect.Qualifiers$AnnotationMatcher.class
org.grouplens.grapht.reflect.Qualifiers$AnyMatcher.class
org.grouplens.grapht.reflect.Qualifiers$DefaultMatcher.class
org.grouplens.grapht.reflect.Qualifiers$DefaultMatcherPriority.class
org.grouplens.grapht.reflect.Qualifiers$NullMatcher.class
org.grouplens.grapht.reflect.Qualifiers.class
org.grouplens.grapht.reflect.Satisfaction.class
org.grouplens.grapht.reflect.Satisfactions.class
org.grouplens.grapht.reflect.SatisfactionVisitor.class
org.grouplens.grapht.ResolutionException.class
org.grouplens.grapht.solver.BindingFlag.class
org.grouplens.grapht.solver.BindingFunction.class
org.grouplens.grapht.solver.BindingResult$1.class
org.grouplens.grapht.solver.BindingResult$Builder.class
org.grouplens.grapht.solver.BindingResult.class
org.grouplens.grapht.solver.BindRule.class
org.grouplens.grapht.solver.BindRuleBuilder.class
org.grouplens.grapht.solver.BindRuleImpl$1.class
org.grouplens.grapht.solver.BindRuleImpl$SerialProxy.class
org.grouplens.grapht.solver.BindRuleImpl.class
org.grouplens.grapht.solver.BindRules.class
org.grouplens.grapht.solver.CyclicDependencyException.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
javax.inject-1.jar
/javax.inject/javax.inject/1
查看javax.inject所有版本文件
jsr305-1.3.9.jar
/com.google.code.findbugs/jsr305/1.3.9
查看jsr305所有版本文件
commons-lang3-3.1.jar
/org.apache.commons/commons-lang3/3.1
查看commons-lang3所有版本文件
guava-18.0.jar
/com.google.guava/guava/18.0
查看guava所有版本文件
slf4j-api-1.7.5.jar
/org.slf4j/slf4j-api/1.7.5
查看slf4j-api所有版本文件
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
hamcrest-library-1.3.jar
/org.hamcrest/hamcrest-library/1.3
查看hamcrest-library所有版本文件
logback-classic-1.0.3.jar
/ch.qos.logback/logback-classic/1.0.3
查看logback-classic所有版本文件
javax.inject-tck-1.jar
/javax.inject/javax.inject-tck/1
查看javax.inject-tck所有版本文件
compile-testing-0.5.jar
/com.google.testing.compile/compile-testing/0.5
查看compile-testing所有版本文件
|