datajack-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ru.sbtqa.tag.datajack</groupId> <artifactId>datajack-parent</artifactId> <version>5.2.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <groupId>ru.sbtqa.tag.datajack</groupId> <artifactId>datajack-parent</artifactId> <version>5.2.3</version> <packaging>pom</packaging> <name>datajack</name> <description>Data management library</description> <url>http://github.com/sbtqa/datajack</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Viktor Sidochenko</name> <email>viktor.sidochenko@gmail.com</email> <organization>sbtqa</organization> <organizationUrl>http://github.com/sbtqa</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/sbtqa/datajack</connection> <developerConnection>scm:git:ssh://github.com:sbtqa/datajack.git</developerConnection> <url>https://github.com/sbtqa/datajack/tree/master</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <!--Dependencies versions--> <!--Common--> <mongo.java.driver.version>3.2.2</mongo.java.driver.version> <commons.io.version>2.11.0</commons.io.version> <junit.version>4.13.1</junit.version> <slf4j.version>2.0.7</slf4j.version> <!--excel-provider--> <apache.poi-ooxml.version>3.17</apache.poi-ooxml.version> <!--mongo-provider--> <fakemongo.fongo.version>2.1.1</fakemongo.fongo.version> <!--properties-provider--> <java.properties.to.json.version>3.0</java.properties.to.json.version> <!--Plugins versions--> <maven.compilier.plugin.version>3.3</maven.compilier.plugin.version> <maven.jar.plugin.version>2.4</maven.jar.plugin.version> <nexus.staging.maven.plugin.version>1.6.3</nexus.staging.maven.plugin.version> <maven.source.plugin.version>2.2.1</maven.source.plugin.version> <maven.javadoc.plugin.version>2.9.1</maven.javadoc.plugin.version> <maven.gpg.plugin.version>1.5</maven.gpg.plugin.version> </properties> <modules> <module>datajack-api</module> <module>providers/json-provider</module> <module>providers/properties-provider</module> <module>providers/excel-provider</module> <module>providers/mongo-provider</module> </modules> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>org.mongodb</groupId> <artifactId>mongo-java-driver</artifactId> <version>${mongo.java.driver.version}</version> <type>jar</type> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons.io.version}</version> <type>jar</type> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> <type>jar</type> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> <type>jar</type> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven.jar.plugin.version}</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.20</version> <configuration> <basedir>${project.basedir}</basedir> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <activation> <property> <name>release</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compilier.plugin.version}</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus.staging.maven.plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>