Download fongo-1.3.6.jar file

Introduction

You can download fongo-1.3.6.jar in this page.

License

The Apache Software License, Version 2.0

Type List

fongo-1.3.6.jar file has the following types.

META-INF/INDEX.LIST
META-INF/LICENSE
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/maven/com.github.fakemongo/fongo/pom.properties
META-INF/maven/com.github.fakemongo/fongo/pom.xml
com.github.fakemongo.Fongo.class
com.github.fakemongo.FongoException.class
com.github.fakemongo.impl.Aggregator.class
com.github.fakemongo.impl.ExpressionParser.class
com.github.fakemongo.impl.Filter.class
com.github.fakemongo.impl.MapReduce.class
com.github.fakemongo.impl.Tuple2.class
com.github.fakemongo.impl.UpdateEngine.class
com.github.fakemongo.impl.Util.class
com.github.fakemongo.impl.aggregation.Group.class
com.github.fakemongo.impl.aggregation.Limit.class
com.github.fakemongo.impl.aggregation.Match.class
com.github.fakemongo.impl.aggregation.PipelineKeyword.class
com.github.fakemongo.impl.aggregation.Project.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.geo.GeoUtil.class
com.github.fakemongo.impl.geo.LatLong.class
com.github.fakemongo.impl.index.GeoIndex.class
com.github.fakemongo.impl.index.Index.class
com.github.fakemongo.impl.index.IndexAbstract.class
com.github.fakemongo.impl.index.IndexFactory.class
com.github.fakemongo.internal.objenesis.Objenesis.class
com.github.fakemongo.internal.objenesis.ObjenesisBase.class
com.github.fakemongo.internal.objenesis.ObjenesisException.class
com.github.fakemongo.internal.objenesis.ObjenesisStd.class
com.github.fakemongo.internal.objenesis.instantiator.ObjectInstantiator.class
com.github.fakemongo.internal.objenesis.instantiator.android.Android10Instantiator.class
com.github.fakemongo.internal.objenesis.instantiator.android.Android17Instantiator.class
com.github.fakemongo.internal.objenesis.instantiator.android.Android18Instantiator.class
com.github.fakemongo.internal.objenesis.instantiator.gcj.GCJInstantiator.class
com.github.fakemongo.internal.objenesis.instantiator.gcj.GCJInstantiatorBase.class
com.github.fakemongo.internal.objenesis.instantiator.jrockit.JRockitLegacyInstantiator.class
com.github.fakemongo.internal.objenesis.instantiator.perc.PercInstantiator.class
com.github.fakemongo.internal.objenesis.instantiator.sun.SunReflectionFactoryHelper.class
com.github.fakemongo.internal.objenesis.instantiator.sun.SunReflectionFactoryInstantiator.class
com.github.fakemongo.internal.objenesis.instantiator.sun.UnsafeFactoryInstantiator.class
com.github.fakemongo.internal.objenesis.strategy.BaseInstantiatorStrategy.class
com.github.fakemongo.internal.objenesis.strategy.InstantiatorStrategy.class
com.github.fakemongo.internal.objenesis.strategy.PlatformDescription.class
com.github.fakemongo.internal.objenesis.strategy.StdInstantiatorStrategy.class
com.mongodb.FongoDB.class
com.mongodb.FongoDBCollection.class
com.mongodb.MockMongoClient.class

Pom

fongo-1.3.6.pom file content.

<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.6</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>test</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>

POM Entry

<dependency>
   <groupId>com.github.fakemongo</groupId>
   <artifactId>fongo</artifactId>
   <version>1.3.6</version>
</dependency>

Download

If you think the following fongo-1.3.6.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download fongo-1.3.6.jar file




PreviousNext

Related