| 组织ID: |
com.googlecode.lambdaj |
| 项目ID: |
lambdaj |
| 版本: |
2.3 |
| 最后修改时间: |
2018-07-28 10:46:49 |
| 包类型: |
jar |
| 标题: |
lambdaj |
| 描述: |
The pseudo-functional collection manipulation library |
| 相关URL: |
http://code.google.com/p/lambdaj |
| 大小: |
126.29KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.googlecode.lambdaj</groupId>
<artifactId>lambdaj</artifactId>
<version>2.3</version>
</dependency>
|
| Gradle引入代码: |
com.googlecode.lambdaj:lambdaj:2.3
|
| 下载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>
<groupId>com.googlecode.lambdaj</groupId>
<artifactId>lambdaj</artifactId>
<version>2.3</version>
<name>lambdaj</name>
<packaging>jar</packaging>
<description>The pseudo-functional collection manipulation library</description>
<url>http://code.google.com/p/lambdaj</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>
<scm>
<connection>scm:svn:http://lambdaj.googlecode.com/svn/trunk</connection>
<developerConnection>scm:svn:https://lambdaj.googlecode.com/svn/trunk</developerConnection>
</scm>
<distributionManagement>
<repository>
<id>googlecode.lambdaj</id>
<name>Internal Release Repository</name>
<url>dav:https://lambdaj.googlecode.com/svn/repo/releases</url>
</repository>
<snapshotRepository>
<id>googlecode.lambdaj</id>
<name>Internal Snapshots Repository</name>
<url>dav:https://lambdaj.googlecode.com/svn/repo/snapshots</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock</artifactId>
<version>2.4.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<classifier>jdk15</classifier>
<version>2.2.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.7</version>
<scope>test</scope>
<optional>false</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<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-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId>
<finalName>${project.name}-${project.version}-with-dependencies</finalName>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>verify</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>deploy</id>
<build>
<plugins>
<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>
</profile>
</profiles>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<formats>
<format>xml</format>
<format>html</format>
</formats>
</configuration>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<targetJdk>1.5</targetJdk>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>1.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-9</version>
<configuration>
<releaseProfiles>deploy</releaseProfiles>
<remoteTagging>true</remoteTagging>
<preparationGoals>clean install</preparationGoals>
<autoVersionSubmodules>true</autoVersionSubmodules>
<tagBase>https://lambdaj.googlecode.com/svn/tags</tagBase>
</configuration>
</plugin>
</plugins>
</reporting>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
ch.lambdaj.Lambda.class
ch.lambdaj.util.IntrospectionException.class
ch.lambdaj.util.iterator.MatchingIterator.class
ch.lambdaj.util.iterator.IteratorFactory.class
ch.lambdaj.util.iterator.ResettableIteratorOnIterable.class
ch.lambdaj.util.iterator.ResettableIteratorOnArray.class
ch.lambdaj.util.iterator.ResettableIteratorOnIterator.class
ch.lambdaj.util.iterator.ResettableIterator.class
ch.lambdaj.util.IntrospectionUtil.class
ch.lambdaj.proxy.ClassImposterizer$ClassEnhancer.class
ch.lambdaj.proxy.ClassImposterizer$3.class
ch.lambdaj.proxy.ClassImposterizer$2.class
ch.lambdaj.proxy.ProxyIterator.class
ch.lambdaj.proxy.InvocationInterceptor$VoidInterceptor.class
ch.lambdaj.proxy.InvocationInterceptor$1.class
ch.lambdaj.proxy.ClassImposterizer.class
ch.lambdaj.proxy.ClassImposterizer$1.class
ch.lambdaj.proxy.ProxyUtil.class
ch.lambdaj.proxy.InvocationInterceptor.class
ch.lambdaj.proxy.ClassImposterizer$ClassWithSuperclassToWorkAroundCglibBug.class
ch.lambdaj.proxy.UnproxableClassException.class
ch.lambdaj.function.aggregate.Min.class
ch.lambdaj.function.aggregate.MinOnArgument.class
ch.lambdaj.function.aggregate.Sum.class
ch.lambdaj.function.aggregate.Aggregator.class
ch.lambdaj.function.aggregate.MaxOnArgument.class
ch.lambdaj.function.aggregate.ProxyAggregator.class
ch.lambdaj.function.aggregate.ChooserOnArgument.class
ch.lambdaj.function.aggregate.SumDouble.class
ch.lambdaj.function.aggregate.Concat.class
ch.lambdaj.function.aggregate.SumLong.class
ch.lambdaj.function.aggregate.InitializedPairAggregator.class
ch.lambdaj.function.aggregate.PairAggregator.class
ch.lambdaj.function.aggregate.Max.class
ch.lambdaj.function.aggregate.SumInteger.class
ch.lambdaj.function.aggregate.Chooser.class
ch.lambdaj.function.convert.StringConverter.class
ch.lambdaj.function.convert.StringPropertyExtractor.class
ch.lambdaj.function.convert.StringLengthConverter.class
ch.lambdaj.function.convert.ConstructorArgumentConverter.class
ch.lambdaj.function.convert.PropertyExtractor.class
ch.lambdaj.function.convert.AliasedArgumentConverter$1.class
ch.lambdaj.function.convert.ArgumentConverter.class
ch.lambdaj.function.convert.AliasedArgumentConverter.class
ch.lambdaj.function.convert.Converter.class
ch.lambdaj.function.convert.ProjectConverter.class
ch.lambdaj.function.convert.ConverterIterator.class
ch.lambdaj.function.convert.DefaultStringConverter.class
ch.lambdaj.function.argument.Argument.class
ch.lambdaj.function.argument.ProxyArgument.class
ch.lambdaj.function.argument.Invocation$ParameterReference.class
ch.lambdaj.function.argument.InvocationSequence.class
ch.lambdaj.function.argument.Invocation.class
ch.lambdaj.function.argument.ArgumentsFactory$1.class
ch.lambdaj.function.argument.InvocationException.class
ch.lambdaj.function.argument.Invocation$1.class
ch.lambdaj.function.argument.ArgumentsFactory.class
ch.lambdaj.function.argument.ArgumentConversionException.class
ch.lambdaj.function.argument.ArgumentsFactory$LimitedValuesArgumentHolder.class
ch.lambdaj.function.compare.ComparatorUtil$DefaultArgumentComparator.class
ch.lambdaj.function.compare.ComparatorUtil.class
ch.lambdaj.function.compare.PropertyComparator.class
ch.lambdaj.function.compare.ArgumentComparator.class
ch.lambdaj.function.closure.Switcher$FixedResult.class
ch.lambdaj.function.closure.Closure3.class
ch.lambdaj.function.closure.Invokable.class
ch.lambdaj.function.closure.Closure2.class
ch.lambdaj.function.closure.DelayedClosure$1.class
ch.lambdaj.function.closure.AbstractClosure$1.class
ch.lambdaj.function.closure.Switcher$ClosureResult.class
ch.lambdaj.function.closure.Switcher.class
ch.lambdaj.function.closure.Switcher$Case.class
ch.lambdaj.function.closure.InvokableConstructor.class
ch.lambdaj.function.closure.Switcher$1.class
ch.lambdaj.function.closure.ClosuresFactory.class
ch.lambdaj.function.closure.Closure0.class
ch.lambdaj.function.closure.Switcher$Result.class
ch.lambdaj.function.closure.WrongClosureInvocationException.class
ch.lambdaj.function.closure.Closure.class
ch.lambdaj.function.closure.InvokableMethod.class
ch.lambdaj.function.closure.ClosureResult.class
ch.lambdaj.function.closure.Closure4.class
ch.lambdaj.function.closure.Closure1.class
ch.lambdaj.function.closure.AbstractClosure.class
ch.lambdaj.function.closure.DelayedClosure.class
ch.lambdaj.function.closure.ProxyClosure.class
ch.lambdaj.function.matcher.HasArgumentWithValue.class
ch.lambdaj.function.matcher.LambdaJMatcher.class
ch.lambdaj.function.matcher.HasNestedPropertyWithValue.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
hamcrest-all-1.1.jar
/org.hamcrest/hamcrest-all/1.1
查看hamcrest-all所有版本文件
objenesis-1.2.jar
/org.objenesis/objenesis/1.2
查看objenesis所有版本文件
commons-logging-1.1.1.jar
/commons-logging/commons-logging/1.1.1
查看commons-logging所有版本文件
cglib-nodep-2.2.jar
/cglib/cglib-nodep/2.2
查看cglib-nodep所有版本文件
junit-4.7.jar
/junit/junit/4.7
查看junit所有版本文件
jmock-2.4.0.jar
/org.jmock/jmock/2.4.0
查看jmock所有版本文件
json-lib-2.2.3.jar
/net.sf.json-lib/json-lib/2.2.3
查看json-lib所有版本文件
mockito-all-1.7.jar
/org.mockito/mockito-all/1.7
查看mockito-all所有版本文件
|