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> |
seshukm | adbd1c4 | 2020-08-03 19:23:51 +0530 | [diff] [blame] | 7 | <version>1.7.1-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> |
| 15 | <swagger-version>1.3.0</swagger-version> |
| 16 | <jax-rs-version>1.1.1</jax-rs-version> |
| 17 | <json4s-jackson-version>3.6.0</json4s-jackson-version> |
| 18 | <json4s-core-version>3.6.0</json4s-core-version> |
| 19 | <reflections-version>0.9.9-RC1</reflections-version> |
| 20 | <paranamer-version>2.5.2</paranamer-version> |
| 21 | <scannotation-version>1.0.3</scannotation-version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 22 | </properties> |
| 23 | <dependencyManagement> |
| 24 | <dependencies> |
| 25 | <dependency> |
| 26 | <!-- Import dependency management from Spring Boot --> |
| 27 | <groupId>org.springframework.boot</groupId> |
| 28 | <artifactId>spring-boot-dependencies</artifactId> |
| 29 | <version>${springboot.version}</version> |
| 30 | <type>pom</type> |
| 31 | <scope>import</scope> |
| 32 | </dependency> |
| 33 | </dependencies> |
| 34 | </dependencyManagement> |
| 35 | <dependencies> |
| 36 | <!-- Dependencies on other MSO Projects --> |
| 37 | <dependency> |
| 38 | <groupId>org.onap.so</groupId> |
| 39 | <artifactId>mso-requests-db</artifactId> |
| 40 | <version>${project.version}</version> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.springframework.boot</groupId> |
| 44 | <artifactId>spring-boot-starter-jersey</artifactId> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>commons-lang</groupId> |
| 48 | <artifactId>commons-lang</artifactId> |
| 49 | <version>2.6</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>antlr</groupId> |
| 53 | <artifactId>antlr</artifactId> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>javax.activation</groupId> |
| 57 | <artifactId>activation</artifactId> |
| 58 | <version>1.1.1</version> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>javax.transaction</groupId> |
| 62 | <artifactId>jta</artifactId> |
| 63 | <version>1.1</version> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.json4s</groupId> |
| 67 | <artifactId>json4s-jackson_2.12</artifactId> |
| 68 | <version>${json4s-jackson-version}</version> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.json4s</groupId> |
| 72 | <artifactId>json4s-core_2.12</artifactId> |
| 73 | <version>${json4s-core-version}</version> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>javax.servlet</groupId> |
Benjamin, Max (mb388a) | d5968f5 | 2021-02-05 20:34:11 -0500 | [diff] [blame^] | 77 | <artifactId>javax.servlet-api</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.json</groupId> |
| 81 | <artifactId>json</artifactId> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.springframework.boot</groupId> |
| 85 | <artifactId>spring-boot-starter-test</artifactId> |
| 86 | <scope>test</scope> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.springframework.boot</groupId> |
| 90 | <artifactId>spring-boot-configuration-processor</artifactId> |
| 91 | <optional>true</optional> |
| 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>com.googlecode.junit-toolbox</groupId> |
| 95 | <artifactId>junit-toolbox</artifactId> |
| 96 | <version>2.4</version> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.onap.so</groupId> |
| 100 | <artifactId>common</artifactId> |
| 101 | <version>${project.version}</version> |
| 102 | </dependency> |
| 103 | </dependencies> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 104 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 105 | <build> |
| 106 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 107 | <plugins> |
| 108 | <plugin> |
| 109 | <groupId>org.apache.maven.plugins</groupId> |
| 110 | <artifactId>maven-surefire-plugin</artifactId> |
| 111 | <executions> |
| 112 | <execution> |
| 113 | <id>default-test</id> |
| 114 | <goals> |
| 115 | <goal>test</goal> |
| 116 | </goals> |
| 117 | </execution> |
| 118 | </executions> |
| 119 | </plugin> |
| 120 | </plugins> |
| 121 | </build> |
| 122 | <packaging>jar</packaging> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 123 | </project> |