aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMukeshKumar <mukeshsharma@est.tech>2021-02-05 15:48:22 +0000
committerMukesh <mukeshsharma@est.tech>2021-02-05 15:52:08 +0000
commit972b4ea427f8d9ee7b5a0276d8686803529cad9b (patch)
tree578c65644f4dd7ef13d0635ff6ba4fb20e6c1aff
parent54f8ed479a605664272fc443e919e110fd8714cc (diff)
Adding maven modules for monitoring
Change-Id: Ia4d145d8ed3c5e77e7c48f8dca9396e03aed1993 Issue-ID: SO-3487 Signed-off-by: Mukesh <mukeshsharma@est.tech>
-rw-r--r--pom.xml54
-rw-r--r--so-admin-cockpit-monitoring-workflow/pom.xml18
-rw-r--r--so-admin-cockpit-monitoring-workflow/so-admin-cockpit-monitoring-workflow-handler/pom.xml11
-rw-r--r--so-admin-cockpit-monitoring-workflow/so-admin-cockpit-monitoring-workflow-service/pom.xml11
-rw-r--r--so-admin-cockpit-monitoring-workflow/so-admin-cockpit-monitoring-workflow-ui/pom.xml11
5 files changed, 93 insertions, 12 deletions
diff --git a/pom.xml b/pom.xml
index f2330d7..57ed60a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,13 +1,43 @@
-<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.onap.so</groupId>
- <artifactId>so</artifactId>
- <version>1.7.0-SNAPSHOT</version>
- </parent>
- <groupId>org.onap.so.so-admin-cockpit</groupId>
- <artifactId>so-admin-cockpit</artifactId>
- <version>1.7.1-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>SO Admin Cockpit</name>
+<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.onap.so</groupId>
+ <artifactId>so</artifactId>
+ <version>1.7.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.onap.so.so-admin-cockpit</groupId>
+ <artifactId>so-admin-cockpit</artifactId>
+ <version>1.7.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>SO Admin Cockpit</name>
+
+ <properties>
+ <java.version>11</java.version>
+ <version.java.compiler>11</version.java.compiler>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-maven-plugin</artifactId>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>${version.java.compiler}</source>
+ <target>${version.java.compiler}</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <modules>
+ <module>so-admin-cockpit-monitoring-workflow</module>
+ </modules>
</project> \ No newline at end of file
diff --git a/so-admin-cockpit-monitoring-workflow/pom.xml b/so-admin-cockpit-monitoring-workflow/pom.xml
new file mode 100644
index 0000000..a3d187f
--- /dev/null
+++ b/so-admin-cockpit-monitoring-workflow/pom.xml
@@ -0,0 +1,18 @@
+<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.onap.so.so-admin-cockpit</groupId>
+ <artifactId>so-admin-cockpit</artifactId>
+ <version>1.7.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.onap.so.so-admin-cockpit.monitoring.workflow</groupId>
+ <artifactId>so-admin-cockpit-monitoring-workflow</artifactId>
+ <packaging>pom</packaging>
+ <name>SO Admin Cockpit Monitoring Workflow</name>
+ <modules>
+ <module>so-admin-cockpit-monitoring-workflow-ui</module>
+ <module>so-admin-cockpit-monitoring-workflow-handler</module>
+ <module>so-admin-cockpit-monitoring-workflow-service</module>
+ </modules>
+</project> \ No newline at end of file
diff --git a/so-admin-cockpit-monitoring-workflow/so-admin-cockpit-monitoring-workflow-handler/pom.xml b/so-admin-cockpit-monitoring-workflow/so-admin-cockpit-monitoring-workflow-handler/pom.xml
new file mode 100644
index 0000000..7ae990a
--- /dev/null
+++ b/so-admin-cockpit-monitoring-workflow/so-admin-cockpit-monitoring-workflow-handler/pom.xml
@@ -0,0 +1,11 @@
+<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.onap.so.so-admin-cockpit.monitoring.workflow</groupId>
+ <artifactId>so-admin-cockpit-monitoring-workflow</artifactId>
+ <version>1.7.1-SNAPSHOT</version>
+ </parent>
+ <artifactId>so-admin-cockpit-monitoring-workflow-handler</artifactId>
+ <name>SO Admin Cockpit Monitoring Workflow Handler</name>
+</project> \ No newline at end of file
diff --git a/so-admin-cockpit-monitoring-workflow/so-admin-cockpit-monitoring-workflow-service/pom.xml b/so-admin-cockpit-monitoring-workflow/so-admin-cockpit-monitoring-workflow-service/pom.xml
new file mode 100644
index 0000000..709d059
--- /dev/null
+++ b/so-admin-cockpit-monitoring-workflow/so-admin-cockpit-monitoring-workflow-service/pom.xml
@@ -0,0 +1,11 @@
+<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.onap.so.so-admin-cockpit.monitoring.workflow</groupId>
+ <artifactId>so-admin-cockpit-monitoring-workflow</artifactId>
+ <version>1.7.1-SNAPSHOT</version>
+ </parent>
+ <artifactId>so-admin-cockpit-monitoring-workflow-service</artifactId>
+ <name>SO Admin Cockpit Monitoring Workflow Service</name>
+</project> \ No newline at end of file
diff --git a/so-admin-cockpit-monitoring-workflow/so-admin-cockpit-monitoring-workflow-ui/pom.xml b/so-admin-cockpit-monitoring-workflow/so-admin-cockpit-monitoring-workflow-ui/pom.xml
new file mode 100644
index 0000000..0ebf949
--- /dev/null
+++ b/so-admin-cockpit-monitoring-workflow/so-admin-cockpit-monitoring-workflow-ui/pom.xml
@@ -0,0 +1,11 @@
+<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.onap.so.so-admin-cockpit.monitoring.workflow</groupId>
+ <artifactId>so-admin-cockpit-monitoring-workflow</artifactId>
+ <version>1.7.1-SNAPSHOT</version>
+ </parent>
+ <artifactId>so-admin-cockpit-monitoring-workflow-ui</artifactId>
+ <name>SO Admin Cockpit Monitoring Workflow UI</name>
+</project> \ No newline at end of file