mukesh.paliwal | 36e6d00 | 2021-02-05 12:44:04 +0530 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
mukesh.paliwal | b5aa814 | 2021-02-26 21:16:00 +0530 | [diff] [blame^] | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <groupId>org.onap.so</groupId> |
| 6 | <artifactId>so</artifactId> |
| 7 | <version>1.8.0-SNAPSHOT</version> |
| 8 | </parent> |
| 9 | <groupId>org.onap.so.adapters.so-cnf-adapter</groupId> |
| 10 | <artifactId>so-cnf-adapter</artifactId> |
mukesh.paliwal | 6abd395 | 2021-02-22 15:02:10 +0530 | [diff] [blame] | 11 | <version>1.8.0-SNAPSHOT</version> |
mukesh.paliwal | b5aa814 | 2021-02-26 21:16:00 +0530 | [diff] [blame^] | 12 | <name>SO CNF Adapter</name> |
| 13 | <packaging>pom</packaging> |
| 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> |
| 20 | <version-swagger-codegen>2.3.1</version-swagger-codegen> |
| 21 | <gson-fire-version>1.8.2</gson-fire-version> |
| 22 | <retrofit-version>2.7.2</retrofit-version> |
| 23 | <threetenbp-version>1.3.5</threetenbp-version> |
| 24 | <oltu-version>1.0.1</oltu-version> |
| 25 | <swagger-core-version>1.5.21</swagger-core-version> |
| 26 | <okhttp3-version>3.14.0</okhttp3-version> |
| 27 | <okhttp-version>2.7.5</okhttp-version> |
| 28 | <okio-version>1.13.0</okio-version> |
| 29 | <spring-security-oauth2-version>2.3.6.RELEASE</spring-security-oauth2-version> |
| 30 | <jaxb-api>2.3.0</jaxb-api> |
| 31 | <snakeyaml-version>0.11</snakeyaml-version> |
| 32 | <hamcrest-version>2.2</hamcrest-version> |
| 33 | <equalsverifier-version>3.4.1</equalsverifier-version> |
| 34 | <so-core-version>1.8.0-SNAPSHOT</so-core-version> |
| 35 | </properties> |
MD IRSHAD SHEIKH | e3efc9f | 2021-02-25 15:06:00 +0530 | [diff] [blame] | 36 | |
mukesh.paliwal | b5aa814 | 2021-02-26 21:16:00 +0530 | [diff] [blame^] | 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.maven.plugins</groupId> |
| 41 | <artifactId>maven-compiler-plugin</artifactId> |
| 42 | <configuration> |
| 43 | <source>${version.java.compiler}</source> |
| 44 | <target>${version.java.compiler}</target> |
| 45 | </configuration> |
| 46 | </plugin> |
| 47 | <plugin> |
| 48 | <groupId>net.revelc.code.formatter</groupId> |
| 49 | <artifactId>formatter-maven-plugin</artifactId> |
| 50 | <version>2.9.0</version> |
| 51 | <executions> |
| 52 | <execution> |
| 53 | <id>format-java</id> |
| 54 | <goals> |
| 55 | <goal>format</goal> |
| 56 | </goals> |
| 57 | <phase>process-sources</phase> |
| 58 | <configuration> |
| 59 | <skip>true</skip> |
| 60 | </configuration> |
| 61 | </execution> |
| 62 | <execution> |
| 63 | <id>format-xml</id> |
| 64 | <goals> |
| 65 | <goal>format</goal> |
| 66 | </goals> |
| 67 | <phase>process-sources</phase> |
| 68 | <configuration> |
| 69 | <skip>true</skip> |
| 70 | <includes> |
| 71 | <include>pom.xml</include> |
| 72 | </includes> |
| 73 | </configuration> |
| 74 | </execution> |
| 75 | <execution> |
| 76 | <id>validate-java</id> |
| 77 | <goals> |
| 78 | <goal>validate</goal> |
| 79 | </goals> |
| 80 | <configuration> |
| 81 | <skip>true</skip> |
| 82 | </configuration> |
| 83 | </execution> |
| 84 | <execution> |
| 85 | <id>validate-poms</id> |
| 86 | <goals> |
| 87 | <goal>validate</goal> |
| 88 | </goals> |
| 89 | <configuration> |
| 90 | <skip>true</skip> |
| 91 | <includes> |
| 92 | <include>pom.xml</include> |
| 93 | </includes> |
| 94 | </configuration> |
| 95 | </execution> |
| 96 | </executions> |
| 97 | </plugin> |
| 98 | </plugins> |
| 99 | </build> |
| 100 | |
| 101 | <modules> |
| 102 | <module>so-cnf-adapter-application</module> |
| 103 | <module>packages</module> |
| 104 | </modules> |
| 105 | </project> |