parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.devnied.emvnfccard</groupId> <artifactId>parent</artifactId> <version>3.0.1</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.devnied.emvnfccard</groupId> <artifactId>parent</artifactId> <packaging>pom</packaging> <version>3.0.1</version> <name>EMV Paycard - Parent</name> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <inceptionYear>2013</inceptionYear> <description> A Java library used to read and extract data from EMV paycard. </description> <issueManagement> <url>https://github.com/devnied/EMV-NFC-Paycard-Enrollment/issues</url> </issueManagement> <url>https://github.com/devnied/EMV-NFC-Paycard-Enrollment</url> <developers> <developer> <name>MILLAU Julien</name> <id>devnied</id> <email>mxjulien@gmail.com</email> <roles> <role>Java Developer</role> </roles> </developer> </developers> <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:devnied/EMV-NFC-Paycard-Enrollment.git</connection> <developerConnection>scm:git:git@github.com:devnied/EMV-NFC-Paycard-Enrollment.git</developerConnection> <url>scm:git:git@github.com:devnied/EMV-NFC-Paycard-Enrollment.git</url> <tag>parent-3.0.1</tag> </scm> <modules> <module>library</module> <module>sample-pcsc</module> </modules> <properties> <additionalparam>-Xdoclint:none</additionalparam> <powermock.version>2.0.7</powermock.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.github.devnied.emvnfccard</groupId> <artifactId>library</artifactId> <version>${project.version}</version> </dependency> <!-- bit-lib4j --> <dependency> <groupId>com.github.devnied</groupId> <artifactId>bit-lib4j</artifactId> <version>1.5.2</version> </dependency> <!-- Apache commons --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.8.1</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.2</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.6</version> </dependency> <dependency> <groupId>net.sf.scuba</groupId> <artifactId>scuba-smartcards</artifactId> <version>0.0.18</version> </dependency> <!-- Tests --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <build> <sourceDirectory>src/main/java</sourceDirectory> <testSourceDirectory>src/test/java</testSourceDirectory> <defaultGoal>install</defaultGoal> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>1.7</source> <target>1.7</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> <localCheckout>true</localCheckout> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>4.3.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.7</version> <configuration> <formats> <format>html</format> <format>xml</format> </formats> <maxmem>256m</maxmem> <!-- aggregated reports for multi-module projects --> <aggregate>true</aggregate> <instrumentation> <excludes> <exclude>com/github/devnied/emvpcsccard/**/*.class</exclude> </excludes> </instrumentation> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>ci</id> <activation> <activeByDefault>true</activeByDefault> </activation> </profile> <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> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>