waqas.ikram | d98e389 | 2021-02-16 14:37:40 +0000 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
MukeshKumar | 972b4ea | 2021-02-05 15:48:22 +0000 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <groupId>org.onap.so</groupId> |
| 6 | <artifactId>so</artifactId> |
waqas.ikram | 042dcab | 2021-06-25 13:00:11 +0100 | [diff] [blame] | 7 | <version>1.9.0-SNAPSHOT</version> |
MukeshKumar | 972b4ea | 2021-02-05 15:48:22 +0000 | [diff] [blame] | 8 | </parent> |
| 9 | <groupId>org.onap.so.so-admin-cockpit</groupId> |
| 10 | <artifactId>so-admin-cockpit</artifactId> |
waqas.ikram | 042dcab | 2021-06-25 13:00:11 +0100 | [diff] [blame] | 11 | <version>1.9.0-SNAPSHOT</version> |
MukeshKumar | 972b4ea | 2021-02-05 15:48:22 +0000 | [diff] [blame] | 12 | <packaging>pom</packaging> |
| 13 | <name>SO Admin Cockpit</name> |
| 14 | |
| 15 | <properties> |
| 16 | <java.version>11</java.version> |
| 17 | <version.java.compiler>11</version.java.compiler> |
| 18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 19 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
MukeshKumar | ed30115 | 2021-02-08 09:38:14 +0000 | [diff] [blame] | 20 | <equals.verifier.version>3.4.1</equals.verifier.version> |
waqas.ikram | d98e389 | 2021-02-16 14:37:40 +0000 | [diff] [blame] | 21 | <so-core-version>1.8.0-SNAPSHOT</so-core-version> |
MukeshKumar | 972b4ea | 2021-02-05 15:48:22 +0000 | [diff] [blame] | 22 | </properties> |
| 23 | |
| 24 | <build> |
| 25 | <plugins> |
| 26 | <plugin> |
| 27 | <groupId>org.springframework.boot</groupId> |
| 28 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 29 | </plugin> |
| 30 | |
| 31 | <plugin> |
| 32 | <groupId>org.apache.maven.plugins</groupId> |
| 33 | <artifactId>maven-compiler-plugin</artifactId> |
| 34 | <configuration> |
| 35 | <source>${version.java.compiler}</source> |
| 36 | <target>${version.java.compiler}</target> |
| 37 | </configuration> |
| 38 | </plugin> |
waqas.ikram | d98e389 | 2021-02-16 14:37:40 +0000 | [diff] [blame] | 39 | <plugin> |
| 40 | <groupId>net.revelc.code.formatter</groupId> |
| 41 | <artifactId>formatter-maven-plugin</artifactId> |
| 42 | <version>2.9.0</version> |
| 43 | <executions> |
| 44 | <execution> |
| 45 | <id>format-java</id> |
| 46 | <goals> |
| 47 | <goal>format</goal> |
| 48 | </goals> |
| 49 | <phase>process-sources</phase> |
| 50 | <configuration> |
| 51 | <skip>true</skip> |
| 52 | </configuration> |
| 53 | </execution> |
| 54 | <execution> |
| 55 | <id>format-xml</id> |
| 56 | <goals> |
| 57 | <goal>format</goal> |
| 58 | </goals> |
| 59 | <phase>process-sources</phase> |
| 60 | <configuration> |
| 61 | <skip>true</skip> |
| 62 | <includes> |
| 63 | <include>pom.xml</include> |
| 64 | </includes> |
| 65 | </configuration> |
| 66 | </execution> |
| 67 | <execution> |
| 68 | <id>validate-java</id> |
| 69 | <goals> |
| 70 | <goal>validate</goal> |
| 71 | </goals> |
| 72 | <configuration> |
| 73 | <skip>true</skip> |
| 74 | </configuration> |
| 75 | </execution> |
| 76 | <execution> |
| 77 | <id>validate-poms</id> |
| 78 | <goals> |
| 79 | <goal>validate</goal> |
| 80 | </goals> |
| 81 | <configuration> |
| 82 | <skip>true</skip> |
| 83 | <includes> |
| 84 | <include>pom.xml</include> |
| 85 | </includes> |
| 86 | </configuration> |
| 87 | </execution> |
| 88 | </executions> |
| 89 | </plugin> |
MukeshKumar | 972b4ea | 2021-02-05 15:48:22 +0000 | [diff] [blame] | 90 | </plugins> |
| 91 | </build> |
| 92 | <modules> |
| 93 | <module>so-admin-cockpit-monitoring-workflow</module> |
MukeshKumar | ae8dfcc | 2021-02-12 15:04:28 +0000 | [diff] [blame] | 94 | <module>packages</module> |
MukeshKumar | 972b4ea | 2021-02-05 15:48:22 +0000 | [diff] [blame] | 95 | </modules> |
MukeshKumar | 3e6cf13 | 2021-03-11 16:19:38 +0000 | [diff] [blame] | 96 | </project> |