From 55ea0201a8f6cd31127455d745b4839e4f8a3d62 Mon Sep 17 00:00:00 2001 From: Dan Timoney Date: Wed, 27 Sep 2017 09:42:49 +0200 Subject: Resolve merge failure Add additional config to pom.xml to allow merge build (mvn deploy) to succeed. Change-Id: I42400c367a78f87a02cf80365fe1c58f069b713f Issue-ID: CCSDK-59 Signed-off-by: Dan Timoney --- .gitignore | 35 +++++++++++++++++++++++ pom.xml | 97 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 132 insertions(+) create mode 100755 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100755 index 0000000..7c9cc13 --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +#####standard .git ignore entries##### + +## IDE Specific Files ## +org.eclipse.core.resources.prefs +.classpath +.project +.settings +.idea +.externalToolBuilders +.checkstyle +maven-eclipse.xml +workspace + +## Compilation Files ## +*.class +**/target +target +target-ide +MANIFEST.MF + +## Misc Ignores (OS specific etc) ## +bin/ +dist +*~ +*.ipr +*.iml +*.iws +classes +out/ +.DS_STORE +.metadata + +# BlackDuck generated file +blackDuckHubProjectName.txt +blackDuckHubProjectVersionName.txt diff --git a/pom.xml b/pom.xml index 3d76d93..8f29658 100644 --- a/pom.xml +++ b/pom.xml @@ -16,4 +16,101 @@ 1.0.0-SNAPSHOT + + 1.8 + 1.8 + UTF-8 + UTF-8 + https://nexus.onap.org + + /content/sites/site/${project.groupId}/${project.artifactId}/${project.version} + + + + ecomp-releases + ${onap.nexus.url}/content/repositories/releases + + + ecomp-snapshots + ${onap.nexus.url}/content/repositories/snapshots + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.7 + true + + ${onap.nexus.url} + 176c31dfe190a + ecomp-staging + + + + org.apache.maven.plugins + maven-deploy-plugin + + 2.8 + + + + + + org.apache.maven.plugins + maven-site-plugin + 3.6 + + + org.apache.maven.wagon + wagon-webdav-jackrabbit + 2.10 + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M1 + + + enforce-no-snapshots + + enforce + + + + + false + true + WARN + + + + + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + + + org.apache.maven.plugins + maven-deploy-plugin + + + org.apache.maven.plugins + maven-site-plugin + + + org.apache.maven.plugins + maven-enforcer-plugin + + + -- cgit 1.2.3-korg