stratio-connector-mongodb
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.stratio.connector</groupId> <artifactId>stratio-connector-mongodb</artifactId> <version>0.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Licensed to STRATIO (C) under one or more contributor license agreements. ~ See the NOTICE file distributed with this work for additional information ~ regarding copyright ownership. The STRATIO (C) licenses this file ~ to you 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> <groupId>com.stratio.connector</groupId> <artifactId>stratio-connector-mongodb</artifactId> <version>0.2.0</version> <description>Connector for MongoDB</description> <url>http://www.stratio.com</url> <name>MongoDB Connector</name> <packaging>pom</packaging> <properties> <mongo.connector.version>0.2.0</mongo.connector.version> <crossdata.version>0.1.1</crossdata.version> <commons.connector.version>0.2.0</commons.connector.version> <mongo.driver.version>2.12.4</mongo.driver.version> </properties> <modules> <module>connector-mongodb-core</module> </modules> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0t</url> <distribution>repo</distribution> </license> </licenses> <profiles> <profile> <id>functional</id> <modules> <module>connector-mongodb-core</module> <module>connector-mongodb-ftest</module> </modules> </profile> </profiles> <scm> <connection>scm:git:git@github.com:Stratio/stratio-connector-mongodb.git</connection> <developerConnection>scm:git:git@github.com:Stratio/stratio-connector-mongodb.git</developerConnection> <url>https://github.com/Stratio/stratio-connector-mongodb</url> </scm> <developers> <developer> <id>darroyo</id> <name>David Arroyo Cazorla</name> <email>darroyo@stratio.com</email> <roles> <role>architect</role> <role>developer</role> <role>maintainer</role> </roles> </developer> </developers> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> <configuration> <argLine>-noverify</argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.5</version> <configuration> <archive> <index>true</index> <manifestEntries> <version>${project.version}</version> <projectName>${project.name}</projectName> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> </project>