ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 4 | <parent> |
| 5 | <groupId>org.onap.so</groupId> |
| 6 | <artifactId>mso-api-handlers</artifactId> |
waqas.ikram | 9853763 | 2021-06-24 11:51:34 +0100 | [diff] [blame] | 7 | <version>1.9.0-SNAPSHOT</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 8 | </parent> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 9 | <artifactId>mso-api-handler-common</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 10 | <name>mso-api-handler-common</name> |
| 11 | <description>ONAP SO API Handler Common Libraries</description> |
| 12 | <properties> |
| 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 14 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 15 | <json4s-jackson-version>3.6.0</json4s-jackson-version> |
| 16 | <json4s-core-version>3.6.0</json4s-core-version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 17 | </properties> |
| 18 | <dependencyManagement> |
| 19 | <dependencies> |
| 20 | <dependency> |
| 21 | <!-- Import dependency management from Spring Boot --> |
| 22 | <groupId>org.springframework.boot</groupId> |
| 23 | <artifactId>spring-boot-dependencies</artifactId> |
| 24 | <version>${springboot.version}</version> |
| 25 | <type>pom</type> |
| 26 | <scope>import</scope> |
| 27 | </dependency> |
| 28 | </dependencies> |
| 29 | </dependencyManagement> |
| 30 | <dependencies> |
| 31 | <!-- Dependencies on other MSO Projects --> |
| 32 | <dependency> |
| 33 | <groupId>org.onap.so</groupId> |
| 34 | <artifactId>mso-requests-db</artifactId> |
| 35 | <version>${project.version}</version> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.springframework.boot</groupId> |
| 39 | <artifactId>spring-boot-starter-jersey</artifactId> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>commons-lang</groupId> |
| 43 | <artifactId>commons-lang</artifactId> |
| 44 | <version>2.6</version> |
| 45 | </dependency> |
| 46 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 47 | <groupId>javax.activation</groupId> |
| 48 | <artifactId>activation</artifactId> |
| 49 | <version>1.1.1</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>javax.transaction</groupId> |
| 53 | <artifactId>jta</artifactId> |
| 54 | <version>1.1</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.json4s</groupId> |
| 58 | <artifactId>json4s-jackson_2.12</artifactId> |
| 59 | <version>${json4s-jackson-version}</version> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.json4s</groupId> |
| 63 | <artifactId>json4s-core_2.12</artifactId> |
| 64 | <version>${json4s-core-version}</version> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>javax.servlet</groupId> |
Benjamin, Max (mb388a) | d5968f5 | 2021-02-05 20:34:11 -0500 | [diff] [blame] | 68 | <artifactId>javax.servlet-api</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 69 | </dependency> |
| 70 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 71 | <groupId>org.springframework.boot</groupId> |
| 72 | <artifactId>spring-boot-starter-test</artifactId> |
| 73 | <scope>test</scope> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.springframework.boot</groupId> |
| 77 | <artifactId>spring-boot-configuration-processor</artifactId> |
| 78 | <optional>true</optional> |
| 79 | </dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 80 | </dependencies> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 81 | <build> |
| 82 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 83 | <plugins> |
| 84 | <plugin> |
| 85 | <groupId>org.apache.maven.plugins</groupId> |
| 86 | <artifactId>maven-surefire-plugin</artifactId> |
| 87 | <executions> |
| 88 | <execution> |
| 89 | <id>default-test</id> |
| 90 | <goals> |
| 91 | <goal>test</goal> |
| 92 | </goals> |
| 93 | </execution> |
| 94 | </executions> |
| 95 | </plugin> |
| 96 | </plugins> |
| 97 | </build> |
| 98 | <packaging>jar</packaging> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 99 | </project> |