MukeshKumar | 1d9546b | 2020-08-11 09:55:46 +0100 | [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"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <groupId>org.onap.so</groupId> |
| 6 | <artifactId>so</artifactId> |
| 7 | <version>1.7.1-SNAPSHOT</version> |
| 8 | </parent> |
| 9 | <groupId>org.onap.so.etsi.nfvo</groupId> |
| 10 | <artifactId>so-etsi-nfvo</artifactId> |
| 11 | <packaging>pom</packaging> |
| 12 | <name>SO ETSI NFVO</name> |
MukeshKumar | 677c4b0 | 2020-08-13 10:46:02 +0100 | [diff] [blame] | 13 | |
| 14 | <properties> |
| 15 | <java.version>11</java.version> |
| 16 | <version.java.compiler>11</version.java.compiler> |
| 17 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 18 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 19 | <version-swagger-codegen>2.3.1</version-swagger-codegen> |
| 20 | <gson-fire-version>1.8.2</gson-fire-version> |
| 21 | <retrofit-version>2.3.0</retrofit-version> |
| 22 | <threetenbp-version>1.3.5</threetenbp-version> |
| 23 | <oltu-version>1.0.1</oltu-version> |
| 24 | <swagger-core-version>1.5.15</swagger-core-version> |
| 25 | <okhttp3-version>3.14.0</okhttp3-version> |
| 26 | <okhttp-version>2.7.5</okhttp-version> |
| 27 | <okio-version>1.13.0</okio-version> |
| 28 | <jaxb-api>2.3.0</jaxb-api> |
| 29 | </properties> |
| 30 | |
| 31 | <build> |
| 32 | <plugins> |
| 33 | <plugin> |
| 34 | <groupId>org.apache.maven.plugins</groupId> |
| 35 | <artifactId>maven-compiler-plugin</artifactId> |
| 36 | <configuration> |
| 37 | <source>${version.java.compiler}</source> |
| 38 | <target>${version.java.compiler}</target> |
| 39 | </configuration> |
| 40 | </plugin> |
| 41 | </plugins> |
| 42 | </build> |
MukeshKumar | 1d9546b | 2020-08-11 09:55:46 +0100 | [diff] [blame] | 43 | <modules> |
| 44 | <module>so-etsi-nfvo-ns-lcm</module> |
| 45 | </modules> |
| 46 | </project> |