组织ID: |
com.github.fakemongo |
项目ID: |
fongo |
版本: |
1.3.7 |
最后修改时间: |
2019-10-24 07:31:12 |
包类型: |
jar |
标题: |
fongo |
描述: |
Fake in-memory mongo |
相关URL: |
https://github.com/fakemongo/fongo |
大小: |
179.95KB |
|
Maven引入代码: |
<dependency>
<groupId>com.github.fakemongo</groupId>
<artifactId>fongo</artifactId>
<version>1.3.7</version>
</dependency>
|
Gradle引入代码: |
com.github.fakemongo:fongo:1.3.7
|
下载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>7</version>
</parent>
<groupId>com.github.fakemongo</groupId>
<artifactId>fongo</artifactId>
<version>1.3.7</version>
<name>fongo</name>
<description>Fake in-memory mongo</description>
<url>https://github.com/fakemongo/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: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>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<scala.version>2.10.3</scala.version>
<version.surefire>2.15</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>
</properties>
<dependencies>
<dependency> <!-- Licence Apache 2, for geohash -->
<groupId>com.github.davidmoten</groupId>
<artifactId>geo</artifactId>
<version>0.6.5</version>
</dependency>
<dependency>
<groupId>rhino</groupId>
<artifactId>js</artifactId>
<version>1.7R2</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>2.11.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
<version>2.1</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>1.5.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>3.2.4.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb</artifactId>
<version>1.3.4.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.hateoas</groupId>
<artifactId>spring-hateoas</artifactId>
<version>0.9.0.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_2.10</artifactId>
<version>2.0</version>
<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>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<version>2.1.2</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.6.3.201306030806</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>
</configuration>
</plugin>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>3.1.6</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>
</configuration>
</plugin>
<plugin>
<groupId>org.scalatest</groupId>
<artifactId>scalatest-maven-plugin</artifactId>
<version>1.0-RC2</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.9</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.8</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>
</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.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
com.mongodb.MockMongoClient.class
com.mongodb.FongoDBCollection.class
com.mongodb.FongoDBCollection$1.class
com.mongodb.FongoDB.class
com.github.fakemongo.junit.FongoRule.class
com.github.fakemongo.internal.objenesis.strategy.StdInstantiatorStrategy.class
com.github.fakemongo.internal.objenesis.strategy.PlatformDescription.class
com.github.fakemongo.internal.objenesis.strategy.InstantiatorStrategy.class
com.github.fakemongo.internal.objenesis.strategy.BaseInstantiatorStrategy.class
com.github.fakemongo.internal.objenesis.instantiator.sun.UnsafeFactoryInstantiator.class
com.github.fakemongo.internal.objenesis.instantiator.sun.SunReflectionFactoryInstantiator.class
com.github.fakemongo.internal.objenesis.instantiator.sun.SunReflectionFactoryHelper.class
com.github.fakemongo.internal.objenesis.instantiator.perc.PercInstantiator.class
com.github.fakemongo.internal.objenesis.instantiator.jrockit.JRockitLegacyInstantiator.class
com.github.fakemongo.internal.objenesis.instantiator.gcj.GCJInstantiatorBase.class
com.github.fakemongo.internal.objenesis.instantiator.gcj.GCJInstantiatorBase$DummyStream.class
com.github.fakemongo.internal.objenesis.instantiator.gcj.GCJInstantiator.class
com.github.fakemongo.internal.objenesis.instantiator.android.Android18Instantiator.class
com.github.fakemongo.internal.objenesis.instantiator.android.Android17Instantiator.class
com.github.fakemongo.internal.objenesis.instantiator.android.Android10Instantiator.class
com.github.fakemongo.internal.objenesis.instantiator.ObjectInstantiator.class
com.github.fakemongo.internal.objenesis.ObjenesisStd.class
com.github.fakemongo.internal.objenesis.ObjenesisException.class
com.github.fakemongo.internal.objenesis.ObjenesisBase.class
com.github.fakemongo.internal.objenesis.Objenesis.class
com.github.fakemongo.impl.index.IndexFactory.class
com.github.fakemongo.impl.index.IndexAbstract.class
com.github.fakemongo.impl.index.Index.class
com.github.fakemongo.impl.index.GeoIndex.class
com.github.fakemongo.impl.index.GeoIndex$1.class
com.github.fakemongo.impl.geo.LatLong.class
com.github.fakemongo.impl.geo.GeoUtil.class
com.github.fakemongo.impl.geo.GeoUtil$GeoDBObject.class
com.github.fakemongo.impl.aggregation.Unwind.class
com.github.fakemongo.impl.aggregation.Sort.class
com.github.fakemongo.impl.aggregation.Skip.class
com.github.fakemongo.impl.aggregation.Project.class
com.github.fakemongo.impl.aggregation.Project$ProjectedToUpper.class
com.github.fakemongo.impl.aggregation.Project$ProjectedToLower.class
com.github.fakemongo.impl.aggregation.Project$ProjectedSubstr.class
com.github.fakemongo.impl.aggregation.Project$ProjectedStrcasecmp.class
com.github.fakemongo.impl.aggregation.Project$ProjectedRename.class
com.github.fakemongo.impl.aggregation.Project$ProjectedIfNull.class
com.github.fakemongo.impl.aggregation.Project$ProjectedConcat.class
com.github.fakemongo.impl.aggregation.Project$ProjectedCmp.class
com.github.fakemongo.impl.aggregation.Project$ProjectedAbstract.class
com.github.fakemongo.impl.aggregation.Project$1.class
com.github.fakemongo.impl.aggregation.PipelineKeyword.class
com.github.fakemongo.impl.aggregation.Match.class
com.github.fakemongo.impl.aggregation.Limit.class
com.github.fakemongo.impl.aggregation.Group.class
com.github.fakemongo.impl.aggregation.Group$Mapping.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword$8.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword$7.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword$6.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword$5.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword$4.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword$3.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword$2.class
com.github.fakemongo.impl.aggregation.Group$GroupKeyword$1.class
com.github.fakemongo.impl.aggregation.Group$1.class
com.github.fakemongo.impl.Util.class
com.github.fakemongo.impl.UpdateEngine.class
com.github.fakemongo.impl.UpdateEngine$BasicUpdate.class
com.github.fakemongo.impl.UpdateEngine$9.class
com.github.fakemongo.impl.UpdateEngine$8.class
com.github.fakemongo.impl.UpdateEngine$7.class
com.github.fakemongo.impl.UpdateEngine$6.class
com.github.fakemongo.impl.UpdateEngine$5.class
com.github.fakemongo.impl.UpdateEngine$4.class
com.github.fakemongo.impl.UpdateEngine$3.class
com.github.fakemongo.impl.UpdateEngine$2.class
com.github.fakemongo.impl.UpdateEngine$12.class
com.github.fakemongo.impl.UpdateEngine$11.class
com.github.fakemongo.impl.UpdateEngine$10.class
com.github.fakemongo.impl.UpdateEngine$1.class
com.github.fakemongo.impl.Tuple2.class
com.github.fakemongo.impl.MapReduce.class
com.github.fakemongo.impl.MapReduce$Outmode.class
com.github.fakemongo.impl.MapReduce$Outmode$4.class
com.github.fakemongo.impl.MapReduce$Outmode$3.class
com.github.fakemongo.impl.MapReduce$Outmode$2.class
com.github.fakemongo.impl.MapReduce$Outmode$1.class
com.github.fakemongo.impl.MapReduce$1.class
com.github.fakemongo.impl.Filter.class
com.github.fakemongo.impl.ExpressionParser.class
com.github.fakemongo.impl.ExpressionParser$WhereFilter.class
com.github.fakemongo.impl.ExpressionParser$OrFilter.class
com.github.fakemongo.impl.ExpressionParser$ObjectComparator.class
com.github.fakemongo.impl.ExpressionParser$Null.class
com.github.fakemongo.impl.ExpressionParser$NotFilter.class
com.github.fakemongo.impl.ExpressionParser$NearCommandFilterFactory.class
com.github.fakemongo.impl.ExpressionParser$InFilterFactory.class
com.github.fakemongo.impl.ExpressionParser$InFilterFactory$1.class
com.github.fakemongo.impl.ExpressionParser$FilterFactory.class
com.github.fakemongo.impl.ExpressionParser$ConjunctionFilter.class
com.github.fakemongo.impl.ExpressionParser$ConditionalOperatorFilterFactory.class
com.github.fakemongo.impl.ExpressionParser$BasicFilterFactory.class
com.github.fakemongo.impl.ExpressionParser$BasicFilterFactory$1.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
geo-0.6.5.jar
/com.github.davidmoten/geo/0.6.5
查看geo所有版本文件
js-1.7R2.jar
/rhino/js/1.7R2
查看js所有版本文件
mongo-java-driver-2.11.4.jar
/org.mongodb/mongo-java-driver/2.11.4
查看mongo-java-driver所有版本文件
objenesis-2.1.jar
/org.objenesis/objenesis/2.1
查看objenesis所有版本文件
slf4j-api-1.7.5.jar
/org.slf4j/slf4j-api/1.7.5
查看slf4j-api所有版本文件
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
assertj-core-1.5.0.jar
/org.assertj/assertj-core/1.5.0
查看assertj-core所有版本文件
logback-classic-1.1.1.jar
/ch.qos.logback/logback-classic/1.1.1
查看logback-classic所有版本文件
spring-test-3.2.4.RELEASE.jar
/org.springframework/spring-test/3.2.4.RELEASE
查看spring-test所有版本文件
spring-data-mongodb-1.3.4.RELEASE.jar
/org.springframework.data/spring-data-mongodb/1.3.4.RELEASE
查看spring-data-mongodb所有版本文件
spring-hateoas-0.9.0.RELEASE.jar
/org.springframework.hateoas/spring-hateoas/0.9.0.RELEASE
查看spring-hateoas所有版本文件
cglib-2.2.jar
/cglib/cglib/2.2
查看cglib所有版本文件
scalatest_2.10-2.0.jar
/org.scalatest/scalatest_2.10/2.0
查看scalatest_2.10所有版本文件
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所有版本文件
|