diff options
author | Serban Jora <jora@research.att.com> | 2017-09-19 11:23:23 -0400 |
---|---|---|
committer | Serban Jora <jora@research.att.com> | 2017-09-19 13:25:40 -0400 |
commit | dde1bd595397c2e06ec897fde81cd4f8be710c5b (patch) | |
tree | b5c5f1319f129259558e3021a81c0233f6b783df /javatoscachecker/pom.xml | |
parent | e1ec39032710c8d57dbe9e18de3e2329ee3f2a41 (diff) |
Fix top project reference, release version
Also add required license text to kwalify and remove old checker test files
Change-Id: If737489a144acbb4e9bd2108e965b90f9ed24094
Issue-Id: MODELING-18
Signed-off-by: Serban Jora <jora@research.att.com>
Diffstat (limited to 'javatoscachecker/pom.xml')
-rw-r--r-- | javatoscachecker/pom.xml | 44 |
1 files changed, 36 insertions, 8 deletions
diff --git a/javatoscachecker/pom.xml b/javatoscachecker/pom.xml index 6013c89..64d1784 100644 --- a/javatoscachecker/pom.xml +++ b/javatoscachecker/pom.xml @@ -18,9 +18,17 @@ 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>org.onap.tosca</groupId> + + <parent> + <groupId>org.onap.oparent</groupId> + <artifactId>oparent</artifactId> + <version>1.0.0-SNAPSHOT</version> + <relativePath/> + </parent> + + <groupId>org.onap.modeling.toscaparsers</groupId> <artifactId>checker</artifactId> - <version>0.0.1-SNAPSHOT</version> + <version>1.0.0-SNAPSHOT</version> <packaging>pom</packaging> <name>TOSCA Checker tools</name> @@ -55,14 +63,9 @@ </site> </distributionManagement> - <scm> - <connection>scm:git:https://</connection> - <developerConnection>scm:git:https://</developerConnection> - <tag>HEAD</tag> - <url>https://</url> - </scm> <!-- Black Duck plugin dependencies --> +<!-- <pluginRepositories> <pluginRepository> <id>JCenter</id> @@ -76,5 +79,30 @@ <url>http://maven.restlet.com</url> </pluginRepository> </pluginRepositories> +--> + + <build> + <plugins> +<!-- + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <extensions>true</extensions> + <configuration> + <nexusUrl>${nexusproxy}</nexusUrl> + <stagingProfileId>176c31dfe190a</stagingProfileId> + <serverId>ecomp-staging</serverId> + </configuration> + </plugin> +--> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip /> + </configuration> + </plugin> + </plugins> + </build> </project> |