You can download jongo-1.1.jar in this page.
The Apache Software License, Version 2.0
jongo-1.1.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.jongo/jongo/pom.properties META-INF/maven/org.jongo/jongo/pom.xml org.jongo.Aggregate.class org.jongo.Command.class org.jongo.Distinct.class org.jongo.Find.class org.jongo.FindAndModify.class org.jongo.FindOne.class org.jongo.Insert.class org.jongo.Jongo.class org.jongo.Mapper.class org.jongo.MongoCollection.class org.jongo.MongoCursor.class org.jongo.ObjectIdUpdater.class org.jongo.Oid.class org.jongo.QueryModifier.class org.jongo.RawResultHandler.class org.jongo.ReflectiveObjectIdUpdater.class org.jongo.ResultHandler.class org.jongo.ResultHandlerFactory.class org.jongo.Update.class org.jongo.bson.Bson.class org.jongo.bson.BsonDBDecoder.class org.jongo.bson.BsonDBEncoder.class org.jongo.bson.BsonDocument.class org.jongo.bson.BufferedBsonDocument.class org.jongo.bson.LazyBsonDocument.class org.jongo.bson.Primitives.class org.jongo.bson.RelaxedLazyDBObject.class org.jongo.marshall.Marshaller.class org.jongo.marshall.MarshallingException.class org.jongo.marshall.Unmarshaller.class org.jongo.marshall.jackson.JacksonEngine.class org.jongo.marshall.jackson.JacksonIdFieldSelector.class org.jongo.marshall.jackson.JacksonMapper.class org.jongo.marshall.jackson.bson4jackson.BsonDeserializers.class org.jongo.marshall.jackson.bson4jackson.BsonModule.class org.jongo.marshall.jackson.bson4jackson.BsonSerializers.class org.jongo.marshall.jackson.bson4jackson.MongoBsonFactory.class org.jongo.marshall.jackson.bson4jackson.MongoBsonGenerator.class org.jongo.marshall.jackson.bson4jackson.MongoBsonParser.class org.jongo.marshall.jackson.configuration.AbstractMappingBuilder.class org.jongo.marshall.jackson.configuration.DefaultReaderCallback.class org.jongo.marshall.jackson.configuration.DefaultWriterCallback.class org.jongo.marshall.jackson.configuration.DeserializationFeatureModifier.class org.jongo.marshall.jackson.configuration.MapperFeatureModifier.class org.jongo.marshall.jackson.configuration.MapperModifier.class org.jongo.marshall.jackson.configuration.Mapping.class org.jongo.marshall.jackson.configuration.PropertyModifier.class org.jongo.marshall.jackson.configuration.ReaderCallback.class org.jongo.marshall.jackson.configuration.SerializationFeatureModifier.class org.jongo.marshall.jackson.configuration.ViewReaderCallback.class org.jongo.marshall.jackson.configuration.ViewWriterCallback.class org.jongo.marshall.jackson.configuration.VisibilityModifier.class org.jongo.marshall.jackson.configuration.WriterCallback.class org.jongo.marshall.jackson.oid.Id.class org.jongo.marshall.jackson.oid.ObjectId.class org.jongo.marshall.jackson.oid.ObjectIdDeserializer.class org.jongo.marshall.jackson.oid.ObjectIdSerializer.class org.jongo.query.BsonQueryFactory.class org.jongo.query.Query.class org.jongo.query.QueryFactory.class
jongo-1.1.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (C) 2011 Benoit GUEROUT <bguerout at gmail dot com> and Yves AMSELLEM <amsellem dot yves at gmail dot com> ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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>org.jongo</groupId> <artifactId>jongo</artifactId> <version>1.1</version> <packaging>jar</packaging> <name>Jongo</name> <description>Query in Java as in Mongo shell</description> <url>http://www.jongo.org</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> <comments /> </license> </licenses> <issueManagement> <system>github</system> <url>https://github.com/bguerout/jongo/issues</url> </issueManagement> <ciManagement> <system>Jenkins</system> <url>https://jongo.ci.cloudbees.com/</url> </ciManagement> <developers> <developer> <id>bguerout</id> <name>Beno?t Gu?rout</name> <email>bguerout at gmail dot com</email> </developer> <developer> <id>yamsellem</id> <name>Yves Amsellem</name> <email>amsellem dot yves at gmail dot com</email> </developer> </developers> <scm> <connection>scm:git:git@github.com:bguerout/jongo.git</connection> <developerConnection>scm:git:git@github.com:bguerout/jongo.git</developerConnection> <url>git@github.com:bguerout/jongo</url> </scm> <prerequisites> <maven>2.2.1</maven> </prerequisites> <properties> <mongo.version>[2.11.0,2.99)</mongo.version> <jackson.version>2.4.1</jackson.version> <bson4jackson.version>2.4.0</bson4jackson.version> </properties> <dependencies> <dependency> <groupId>org.mongodb</groupId> <artifactId>mongo-java-driver</artifactId> <version>${mongo.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>de.undercouch</groupId> <artifactId>bson4jackson</artifactId> <version>${bson4jackson.version}</version> <exclusions> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </exclusion> </exclusions> </dependency> <!-- TEST --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>1.4.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.caliper</groupId> <artifactId>caliper</artifactId> <version>0.5-rc1</version> <scope>test</scope> </dependency> <dependency> <groupId>de.flapdoodle.embed</groupId> <artifactId>de.flapdoodle.embed.mongo</artifactId> <version>1.40</version> <scope>test</scope> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.9.9-RC1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.4</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>2.4.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>2.3.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.12</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-test-jar</id> <phase>verify</phase> <goals> <goal>test-jar</goal> </goals> </execution> </executions> <configuration> <archive> <manifestFile>${project.build.directory}/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.4.0</version> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> <configuration> <manifestLocation>${project.build.directory}</manifestLocation> <instructions> <Import-Package> com.mongodb.*;version="${mongo.version}",org.bson.*;version="${mongo.version}",* </Import-Package> </instructions> </configuration> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.2.1</version> <!-- allows to set arguments property with '-s' --> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8.1</version> </plugin> </plugins> </pluginManagement> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-webdav-jackrabbit</artifactId> <version>2.2</version> </extension> </extensions> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.12</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.5.1</version> <configuration> <formats> <format>xml</format> <format>html</format> </formats> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.9.1</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>2.4.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>2.7.1</version> </plugin> </plugins> </reporting> <profiles> <profile> <id>cloudbees</id> <activation> <property> <name>env</name> <value>cloudbees</value> </property> </activation> <properties> <cloudbees.settings.file>/private/jongo/cloudbees-settings.xml</cloudbees.settings.file> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <arguments>-s ${cloudbees.settings.file} -Psonatype-oss-release</arguments> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>1.3.1</version> <executions> <execution> <id>enforce-custom-cloudbees-settings-exists</id> <goals> <goal>enforce</goal> </goals> <configuration> <fail>true</fail> <rules> <requireFilesExist> <files> <file>${cloudbees.settings.file}</file> </files> </requireFilesExist> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>early</id> <properties> <maven.build.timestamp.format>yyyyMMdd-HHmm</maven.build.timestamp.format> </properties> <distributionManagement> <repository> <id>cloudbees-release</id> <name>cloudbees-release</name> <url>dav:https://repository-jongo.forge.cloudbees.com/release/</url> </repository> <snapshotRepository> <id>cloudbees-snapshot</id> <name>cloudbees-snapshot</name> <url>dav:https://repository-jongo.forge.cloudbees.com/snapshot/</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.7</version> <executions> <execution> <phase>validate</phase> <goals> <goal>parse-version</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <tag> ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-early-${maven.build.timestamp} </tag> <releaseVersion> ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-early-${maven.build.timestamp} </releaseVersion> <developmentVersion>${project.version}</developmentVersion> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>org.jongo</groupId> <artifactId>jongo</artifactId> <version>1.1</version> </dependency>
If you think the following jongo-1.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.