diff options
author | ShuhaoCai <caishuhao@huawei.com> | 2022-07-08 09:44:16 +0800 |
---|---|---|
committer | ShuhaoCai <caishuhao@huawei.com> | 2022-07-11 16:40:31 +0800 |
commit | 2369b55a48d6ca3ce251b86e0c4150806e60f183 (patch) | |
tree | dcd4d626473e0b7289df465bc78b794b0d28ccd3 /pom.xml | |
parent | 5cc8f3f6a5f57ef530daae0cf5de145f02e15fa7 (diff) |
intent schema definition
springboot framework init and intent dto and po definition
Signed-off-by: ShuhaoCai <caishuhao@huawei.com>
Issue-ID: USECASEUI-692
Change-Id: I4c1f9c4aa05c10f62d04b9e557ebb4089124dcf7
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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>3.2.0</version> + <relativePath /> + </parent> + + <groupId>org.onap.usecase-ui.intent-analysis</groupId> + <artifactId>usecase-ui-intent-analysis-parent</artifactId> + <packaging>pom</packaging> + <version>0.0.1-SNAPSHOT</version> + <modules> + <module>intentanalysis</module> + </modules> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> + <sonar.projectVersion>${project.version}</sonar.projectVersion> + <maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format> + <nexusproxy>https://nexus.onap.org</nexusproxy> + <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath> + <releaseNexusPath>content/repositories/releases/</releaseNexusPath> + <siteNexusPath>content/sites/site/${project.groupId}/${project.artifactId}/${project.version}/</siteNexusPath> + </properties> + +</project> |