diff options
Diffstat (limited to 'mod/designtool/pom.xml')
-rw-r--r-- | mod/designtool/pom.xml | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/mod/designtool/pom.xml b/mod/designtool/pom.xml new file mode 100644 index 0000000..330b230 --- /dev/null +++ b/mod/designtool/pom.xml @@ -0,0 +1,58 @@ +<?xml version="1.0"?> +<!-- +================================================================================ +Copyright (c) 2020 AT&T Intellectual Property. All rights reserved. +================================================================================ +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +============LICENSE_END========================================================= + +--> +<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/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.onap.oparent</groupId> + <artifactId>oparent</artifactId> + <version>2.0.0</version> + </parent> + <groupId>org.onap.dcaegen2.platform.mod</groupId> + <artifactId>designtool</artifactId> + <version>1.0.0-SNAPSHOT</version> + <packaging>pom</packaging> + <name>dcaegen2-platform-mod-designtool-parent</name> + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <nifi.version>1.9.2</nifi.version> + <jetty.version>9.4.11.v20180605</jetty.version> + <org.slf4j.version>1.7.25</org.slf4j.version> + <maven.deploy.skip>true</maven.deploy.skip> + <staging.dir>${project.build.directory}/mp</staging.dir> + <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format> + <docker.fabric.version>0.32.0</docker.fabric.version> + <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths> + </properties> + <modules> + <module>nifi-war-to-jar</module> + <module>designtool-web</module> + </modules> + <build> + <plugins> + <plugin> + <groupId>org.sonarsource.scanner.maven</groupId> + <artifactId>sonar-maven-plugin</artifactId> + <version>3.6.0.1398</version> + </plugin> + </plugins> + </build> +</project> |