组织ID: |
com.github.krraghavan |
项目ID: |
fongo |
版本: |
2.0.13 |
最后修改时间: |
2019-11-01 18:10:13 |
包类型: |
jar |
标题: |
fongo |
描述: |
Fake in-memory mongo |
相关URL: |
https://github.com/krraghavan/fongo |
大小: |
305.84KB |
|
Maven引入代码: |
<dependency>
<groupId>com.github.krraghavan</groupId>
<artifactId>fongo</artifactId>
<version>2.0.13</version>
</dependency>
|
Gradle引入代码: |
com.github.krraghavan:fongo:2.0.13
|
下载Jar包: |
|
POM文件内容: |
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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.github.krraghavan</groupId>
<artifactId>fongo</artifactId>
<version>2.0.13</version>
<name>fongo</name>
<description>Fake in-memory mongo</description>
<url>https://github.com/krraghavan/fongo</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:git:git://github.com/krraghavan/fongo.git</connection>
<developerConnection>scm:git:ssh://github.com:krraghavan/fongo.git
</developerConnection>
<url>https://github.com/krraghavan/fongo/tree/master</url>
<tag>v2.0.13</tag>
</scm>
<!--<scm>-->
<!--<connection>scm:git:git@github.com:fakemongo/fongo.git</connection>-->
<!--<developerConnection>scm:git:git@github.com:fakemongo/fongo.git</developerConnection>-->
<!--<url>git@github.com:fakemongo/fongo.git</url>-->
<!--</scm>-->
<prerequisites>
<maven>3.0.4</maven>
</prerequisites>
<developers>
<developer>
<id>hoffrocket</id>
<name>Jon Hoffman</name>
<email>jon@foursquare.com</email>
</developer>
<developer>
<id>twillouer</id>
<name>William Delanoue</name>
<email>william.delanoue@gmail.com</email>
</developer>
</developers>
<distributionManagement>
<snapshotRepository>
<id>sonatype</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
<repository>
<id>sonatype</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<scala.version>2.11.6</scala.version>
<version.surefire>2.18.1</version.surefire>
<!-- Jacoco -->
<jacoco.destFile.unit>${project.build.directory}/jacoco-unit.exec</jacoco.destFile.unit>
<jacoco.destFile.it>${project.build.directory}/jacoco-it.exec</jacoco.destFile.it>
<coverage.reports.dir>${project.build.directory}/coverage-reports</coverage.reports.dir>
<!-- Sonar -->
<sonar.jacoco.itReportPath>${jacoco.destFile.it}</sonar.jacoco.itReportPath>
<sonar.jacoco.reportPath>${jacoco.destFile.unit}</sonar.jacoco.reportPath>
<sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
<!-- Gpg -->
<!--<gpg.keyname>krraghavan</gpg.keyname>-->
</properties>
<dependencies>
<dependency>
<groupId>org.mozilla</groupId>
<artifactId>rhino</artifactId>
<version>1.7.7.1</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>3.4.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
<version>2.3</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.21</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.vividsolutions</groupId>
<artifactId>jts</artifactId>
<version>1.13</version>
</dependency>
<dependency>
<groupId>de.grundid.opendatalab</groupId>
<artifactId>geojson-jackson</artifactId>
<version>1.2</version>
</dependency>
<!-- Scope Test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>1.6.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jongo</groupId>
<artifactId>jongo</artifactId>
<version>1.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>4.2.6.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb</artifactId>
<version>1.9.1.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.hateoas</groupId>
<artifactId>spring-hateoas</artifactId>
<version>0.19.0.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>3.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>19.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_2.11</artifactId>
<version>2.2.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>casbah_2.11</artifactId>
<version>3.1.1</version>
<type>pom</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>${scala.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-compiler</artifactId>
<version>${scala.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>1.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>1.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.3.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<testExcludes>
<exclude>com/github/fakemongo/PerfTest.java</exclude>
</testExcludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.5.201505241946</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<propertyName>jacoco.argLine.unit</propertyName>
<destFile>${jacoco.destFile.unit}</destFile>
</configuration>
</execution>
<execution>
<id>pre-integration-test</id>
<phase>pre-integration-test</phase>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<propertyName>jacoco.argLine.it</propertyName>
<destFile>${jacoco.destFile.it}</destFile>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${version.surefire}</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>${version.surefire}</version>
</dependency>
</dependencies>
<configuration>
<argLine>${jacoco.argLine.unit}
-Dfile.encoding=${project.build.sourceEncoding} -Xmx512m
</argLine>
<excludes>
<exclude>com/github/fakemongo/PerfTest.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<configuration>
<javacArgs>
<javacArg>-source</javacArg>
<javacArg>1.6</javacArg>
<javacArg>-target</javacArg>
<javacArg>1.6</javacArg>
</javacArgs>
<jvmArgs>
<jvmArg>-Xms64m</jvmArg>
<jvmArg>-Xmx1024m</jvmArg>
<!--jvmArg>-Dscala.timings=true</jvmArg -->
</jvmArgs>
<args>
<arg>-target:jvm-1.6</arg>
<arg>-unchecked</arg>
<arg>-deprecation</arg>
<arg>-feature</arg>
</args>
<!--<recompileMode>incremental</recompileMode>-->
<!--<useZincServer>false</useZincServer>-->
<scalaVersion>${scala.version}</scalaVersion>
</configuration>
</plugin>
<plugin>
<groupId>org.scalatest</groupId>
<artifactId>scalatest-maven-plugin</artifactId>
<version>1.0</version>
<configuration>
<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
<parallel>false</parallel>
<forkMode>once</forkMode>
<junitxml>.</junitxml>
</configuration>
<executions>
<execution>
<id>test</id>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.2</version>
<configuration>
<excludePackageNames>com.mongodb:com.github.fakemongo.impl</excludePackageNames>
</configuration>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>jarjar-maven-plugin</artifactId>
<version>1.9</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jarjar</goal>
</goals>
<configuration>
<includes>
<include>org.objenesis:objenesis</include>
</includes>
<rules>
<rule>
<pattern>org.objenesis.**</pattern>
<result>com.github.fakemongo.internal.objenesis.@1</result>
</rule>
<keep>
<pattern>com.github.fakemongo.**</pattern>
</keep>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.jacoco</groupId>
<artifactId>
jacoco-maven-plugin
</artifactId>
<versionRange>
[0.6.3.201306030806,)
</versionRange>
<goals>
<goal>prepare-agent</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
net.alchim31.maven
</groupId>
<artifactId>
scala-maven-plugin
</artifactId>
<versionRange>
[3.1.6,)
</versionRange>
<goals>
<goal>testCompile</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</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.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>perf-benchmark</id>
<activation>
<property>
<name>perfBenchmark</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${version.surefire}</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>${version.surefire}</version>
</dependency>
</dependencies>
<configuration>
<includes>
<include>com/github/fakemongo/PerfTest.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<testIncludes>
<include>com/github/fakemongo/PerfTest.java</include>
</testIncludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.github.fakemongo.Fongo$1.class
com.github.fakemongo.Fongo$2.class
com.github.fakemongo.Fongo.class
com.github.fakemongo.FongoConnection$1.class
com.github.fakemongo.FongoConnection$2.class
com.github.fakemongo.FongoConnection.class
com.github.fakemongo.FongoConnectionSource.class
com.github.fakemongo.FongoException.class
com.github.fakemongo.impl.aggregation.AddFields$1.class
com.github.fakemongo.impl.aggregation.AddFields$AddFieldsExpr$1.class
com.github.fakemongo.impl.aggregation.AddFields$AddFieldsExpr$2.class
com.github.fakemongo.impl.aggregation.AddFields$AddFieldsExpr$3.class
com.github.fakemongo.impl.aggregation.AddFields$AddFieldsExpr.class
com.github.fakemongo.impl.aggregation.AddFields.class
com.github.fakemongo.impl.aggregation.Bucket$1.class
com.github.fakemongo.impl.aggregation.Bucket$BucketAccumulator$1.class
com.github.fakemongo.impl.aggregation.Bucket$BucketAccumulator$2.class
com.github.fakemongo.impl.aggregation.Bucket$BucketAccumulator.class
com.github.fakemongo.impl.aggregation.Bucket.class
com.github.fakemongo.impl.aggregation.Group$1.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword$1.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword$2.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword$3.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword$4.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword$5.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword$6.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword$7.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword$8.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword.class
com.github.fakemongo.impl.aggregation.Group$Keyword.class
com.github.fakemongo.impl.aggregation.Group$Mapping.class
com.github.fakemongo.impl.aggregation.Group.class
com.github.fakemongo.impl.aggregation.Limit.class
com.github.fakemongo.impl.aggregation.Lookup.class
com.github.fakemongo.impl.aggregation.Match.class
com.github.fakemongo.impl.aggregation.Out.class
com.github.fakemongo.impl.aggregation.PipelineKeyword.class
com.github.fakemongo.impl.aggregation.Project$1.class
com.github.fakemongo.impl.aggregation.Project$ProjectedAbstract.class
com.github.fakemongo.impl.aggregation.Project$ProjectedCmp.class
com.github.fakemongo.impl.aggregation.Project$ProjectedConcat.class
com.github.fakemongo.impl.aggregation.Project$ProjectedCond.class
com.github.fakemongo.impl.aggregation.Project$ProjectedDate.class
com.github.fakemongo.impl.aggregation.Project$ProjectedDateDayOfMonth.class
com.github.fakemongo.impl.aggregation.Project$ProjectedDateDayOfWeek.class
com.github.fakemongo.impl.aggregation.Project$ProjectedDateDayOfYear.class
com.github.fakemongo.impl.aggregation.Project$ProjectedDateHour.class
com.github.fakemongo.impl.aggregation.Project$ProjectedDateMillisecond.class
com.github.fakemongo.impl.aggregation.Project$ProjectedDateMinute.class
com.github.fakemongo.impl.aggregation.Project$ProjectedDateMonth.class
com.github.fakemongo.impl.aggregation.Project$ProjectedDateSecond.class
com.github.fakemongo.impl.aggregation.Project$ProjectedDateWeek.class
com.github.fakemongo.impl.aggregation.Project$ProjectedDateYear.class
com.github.fakemongo.impl.aggregation.Project$ProjectedFilter.class
com.github.fakemongo.impl.aggregation.Project$ProjectedIfNull.class
com.github.fakemongo.impl.aggregation.Project$ProjectedRename.class
com.github.fakemongo.impl.aggregation.Project$ProjectedSize.class
com.github.fakemongo.impl.aggregation.Project$ProjectedStrcasecmp.class
com.github.fakemongo.impl.aggregation.Project$ProjectedSubstr.class
com.github.fakemongo.impl.aggregation.Project$ProjectedToDivide.class
com.github.fakemongo.impl.aggregation.Project$ProjectedToLower.class
com.github.fakemongo.impl.aggregation.Project$ProjectedToUpper.class
com.github.fakemongo.impl.aggregation.Project.class
com.github.fakemongo.impl.aggregation.ReplaceRoot.class
com.github.fakemongo.impl.aggregation.Sample.class
com.github.fakemongo.impl.aggregation.Skip.class
com.github.fakemongo.impl.aggregation.Sort.class
com.github.fakemongo.impl.aggregation.Unwind.class
com.github.fakemongo.impl.Aggregator.class
com.github.fakemongo.impl.ExpressionParser$1.class
com.github.fakemongo.impl.ExpressionParser$10$1.class
com.github.fakemongo.impl.ExpressionParser$10.class
com.github.fakemongo.impl.ExpressionParser$11.class
com.github.fakemongo.impl.ExpressionParser$12.class
com.github.fakemongo.impl.ExpressionParser$13.class
com.github.fakemongo.impl.ExpressionParser$14.class
com.github.fakemongo.impl.ExpressionParser$15.class
com.github.fakemongo.impl.ExpressionParser$16.class
com.github.fakemongo.impl.ExpressionParser$17.class
com.github.fakemongo.impl.ExpressionParser$18.class
com.github.fakemongo.impl.ExpressionParser$19.class
com.github.fakemongo.impl.ExpressionParser$2.class
com.github.fakemongo.impl.ExpressionParser$20.class
com.github.fakemongo.impl.ExpressionParser$21.class
com.github.fakemongo.impl.ExpressionParser$22.class
com.github.fakemongo.impl.ExpressionParser$23.class
com.github.fakemongo.impl.ExpressionParser$24.class
com.github.fakemongo.impl.ExpressionParser$3.class
com.github.fakemongo.impl.ExpressionParser$4.class
com.github.fakemongo.impl.ExpressionParser$5.class
com.github.fakemongo.impl.ExpressionParser$6.class
com.github.fakemongo.impl.ExpressionParser$7$1.class
com.github.fakemongo.impl.ExpressionParser$7.class
com.github.fakemongo.impl.ExpressionParser$8.class
com.github.fakemongo.impl.ExpressionParser$9.class
com.github.fakemongo.impl.ExpressionParser$AndFilter.class
com.github.fakemongo.impl.ExpressionParser$BasicCommandFilterFactory.class
com.github.fakemongo.impl.ExpressionParser$BasicFilterFactory$1.class
com.github.fakemongo.impl.ExpressionParser$BasicFilterFactory.class
com.github.fakemongo.impl.ExpressionParser$ConditionalOperatorFilterFactory.class
com.github.fakemongo.impl.ExpressionParser$ConjunctionFilter.class
com.github.fakemongo.impl.ExpressionParser$FilterFactory.class
com.github.fakemongo.impl.ExpressionParser$GeoIntersectsCommandFilterFactory.class
com.github.fakemongo.impl.ExpressionParser$GeoWithinCommandFilterFactory.class
com.github.fakemongo.impl.ExpressionParser$InFilterFactory$1.class
com.github.fakemongo.impl.ExpressionParser$InFilterFactory.class
com.github.fakemongo.impl.ExpressionParser$NearCommandFilterFactory.class
com.github.fakemongo.impl.ExpressionParser$NotFilter.class
com.github.fakemongo.impl.ExpressionParser$Null.class
com.github.fakemongo.impl.ExpressionParser$ObjectComparator.class
com.github.fakemongo.impl.ExpressionParser$OrFilter.class
com.github.fakemongo.impl.ExpressionParser$SortSpecificationComparator.class
com.github.fakemongo.impl.ExpressionParser$WhereFilter.class
com.github.fakemongo.impl.ExpressionParser.class
com.github.fakemongo.impl.Filter.class
com.github.fakemongo.impl.geo.GeoUtil$GeoDBObject.class
com.github.fakemongo.impl.geo.GeoUtil.class
com.github.fakemongo.impl.index.GeoIndex$1.class
com.github.fakemongo.impl.index.GeoIndex.class
com.github.fakemongo.impl.index.HashedIndex.class
com.github.fakemongo.impl.index.Index.class
com.github.fakemongo.impl.index.IndexAbstract.class
com.github.fakemongo.impl.index.IndexedList.class
com.github.fakemongo.impl.index.IndexFactory.class
com.github.fakemongo.impl.MapReduce$1.class
com.github.fakemongo.impl.MapReduce$FongoIntegerSerializer.class
com.github.fakemongo.impl.MapReduce$FongoLongSerializer.class
com.github.fakemongo.impl.MapReduce$FongoNumberInt.class
com.github.fakemongo.impl.MapReduce$FongoNumberLong.class
com.github.fakemongo.impl.MapReduce$MapReduceResult.class
com.github.fakemongo.impl.MapReduce$Outmode$1.class
com.github.fakemongo.impl.MapReduce$Outmode$2.class
com.github.fakemongo.impl.MapReduce$Outmode$3.class
com.github.fakemongo.impl.MapReduce$Outmode$4.class
com.github.fakemongo.impl.MapReduce$Outmode.class
com.github.fakemongo.impl.MapReduce.class
com.github.fakemongo.impl.text.TextSearch$1.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
rhino-1.7.7.1.jar
/org.mozilla/rhino/1.7.7.1
查看rhino所有版本文件
mongo-java-driver-3.4.1.jar
/org.mongodb/mongo-java-driver/3.4.1
查看mongo-java-driver所有版本文件
objenesis-2.3.jar
/org.objenesis/objenesis/2.3
查看objenesis所有版本文件
slf4j-api-1.7.21.jar
/org.slf4j/slf4j-api/1.7.21
查看slf4j-api所有版本文件
jts-1.13.jar
/com.vividsolutions/jts/1.13
查看jts所有版本文件
geojson-jackson-1.2.jar
/de.grundid.opendatalab/geojson-jackson/1.2
查看geojson-jackson所有版本文件
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
assertj-core-1.6.1.jar
/org.assertj/assertj-core/1.6.1
查看assertj-core所有版本文件
logback-classic-1.1.7.jar
/ch.qos.logback/logback-classic/1.1.7
查看logback-classic所有版本文件
jongo-1.2.jar
/org.jongo/jongo/1.2
查看jongo所有版本文件
spring-test-4.2.6.RELEASE.jar
/org.springframework/spring-test/4.2.6.RELEASE
查看spring-test所有版本文件
spring-data-mongodb-1.9.1.RELEASE.jar
/org.springframework.data/spring-data-mongodb/1.9.1.RELEASE
查看spring-data-mongodb所有版本文件
spring-hateoas-0.19.0.RELEASE.jar
/org.springframework.hateoas/spring-hateoas/0.19.0.RELEASE
查看spring-hateoas所有版本文件
cglib-3.1.jar
/cglib/cglib/3.1
查看cglib所有版本文件
guava-19.0.jar
/com.google.guava/guava/19.0
查看guava所有版本文件
scalatest_2.11-2.2.3.jar
/org.scalatest/scalatest_2.11/2.2.3
查看scalatest_2.11所有版本文件
casbah_2.11-3.1.1.jar
/org.mongodb/casbah_2.11/3.1.1
查看casbah_2.11所有版本文件
scala-library-${scala.version}.jar
/org.scala-lang/scala-library/${scala.version}
查看scala-library所有版本文件
scala-compiler-${scala.version}.jar
/org.scala-lang/scala-compiler/${scala.version}
查看scala-compiler所有版本文件
jmh-core-1.12.jar
/org.openjdk.jmh/jmh-core/1.12
查看jmh-core所有版本文件
jmh-generator-annprocess-1.12.jar
/org.openjdk.jmh/jmh-generator-annprocess/1.12
查看jmh-generator-annprocess所有版本文件
commons-lang3-3.3.2.jar
/org.apache.commons/commons-lang3/3.3.2
查看commons-lang3所有版本文件
|