From 482dfe4ced0762e0c040914d4e0baa10f37bac71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Chmielarz?= Date: Sat, 21 Jul 2018 21:42:22 +0200 Subject: [PATCH] Plugins required to deploy artifacts added (#17) * Plugins required to deploy artifacts added Fixes #8 * Target folder added to gitignore * Javadoc updates (#16) Fixes #14 --- .gitignore | 2 ++ pom.xml | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 80 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f4d5070..0035c3c 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,5 @@ hs_err_pid* .idea/ *.iml + +/target diff --git a/pom.xml b/pom.xml index 28e26c0..9d291c0 100644 --- a/pom.xml +++ b/pom.xml @@ -11,6 +11,13 @@ AssertJ fluent assertions for Vavr Rich and fluent assertions for testing Vavr tools 2017 + + + + The Apache License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + + scm:git:git@github.com:assertj/assertj-vavr.git @@ -24,6 +31,17 @@ https://github.com/assertj/assertj-vavr/issues + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + + ossrh + https://oss.sonatype.org/service/local/staging/deploy/maven2/ + + + org.assertj @@ -67,7 +85,66 @@ - + + + org.apache.maven.plugins + maven-source-plugin + 2.4 + + + attach-sources + + jar + + + + + + + org.apache.maven.plugins + maven-gpg-plugin + + + sign-artifacts + verify + + sign + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.8 + true + + ossrh + https://oss.sonatype.org/ + true + + + + + org.jacoco + jacoco-maven-plugin + 0.8.1 + + + + prepare-agent + + + + report + test + + report + + + +