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" |
| 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> |
| 4 | |
| 5 | <parent> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 6 | <groupId>org.onap.so</groupId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 7 | <artifactId>mso-api-handlers</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 8 | <version>1.3.0-SNAPSHOT</version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 9 | </parent> |
| 10 | |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 11 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 12 | <artifactId>mso-api-handler-common</artifactId> |
| 13 | |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 14 | <name>mso-api-handler-common</name> |
| 15 | <description>ONAP SO API Handler Common Libraries</description> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 16 | <properties> |
| 17 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 18 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 19 | <swagger-version>1.3.0</swagger-version> |
| 20 | <jax-rs-version>1.1.1</jax-rs-version> |
| 21 | <json4s-jackson-version>3.2.4</json4s-jackson-version> |
| 22 | <json4s-core-version>3.0.0</json4s-core-version> |
| 23 | <reflections-version>0.9.9-RC1</reflections-version> |
| 24 | <paranamer-version>2.5.2</paranamer-version> |
| 25 | <scannotation-version>1.0.3</scannotation-version> |
| 26 | <jackson-version>1.9.2</jackson-version> |
| 27 | <java.version>1.8</java.version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 28 | </properties> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 29 | <dependencyManagement> |
| 30 | <dependencies> |
| 31 | <dependency> |
| 32 | <!-- Import dependency management from Spring Boot --> |
| 33 | <groupId>org.springframework.boot</groupId> |
| 34 | <artifactId>spring-boot-dependencies</artifactId> |
| 35 | <version>${springboot.version}</version> |
| 36 | <type>pom</type> |
| 37 | <scope>import</scope> |
| 38 | </dependency> |
| 39 | </dependencies> |
| 40 | </dependencyManagement> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 41 | <dependencies> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 42 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 43 | <groupId>org.springframework.boot</groupId> |
| 44 | <artifactId>spring-boot-starter-jersey</artifactId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 45 | </dependency> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 46 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 47 | <groupId>commons-lang</groupId> |
| 48 | <artifactId>commons-lang</artifactId> |
| 49 | <version>2.6</version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 50 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 51 | <dependency> |
| 52 | <groupId>antlr</groupId> |
| 53 | <artifactId>antlr</artifactId> |
| 54 | </dependency> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 55 | <dependency> |
| 56 | <groupId>javax.activation</groupId> |
| 57 | <artifactId>activation</artifactId> |
| 58 | <version>1.1.1</version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 59 | </dependency> |
Lukasz Muszkieta | 12c98ba | 2018-06-01 10:40:35 +0200 | [diff] [blame] | 60 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 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.9.1-1</artifactId> |
| 68 | <version>${json4s-jackson-version}</version> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.json4s</groupId> |
| 72 | <artifactId>json4s-core_2.9.2</artifactId> |
| 73 | <version>${json4s-core-version}</version> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>com.fasterxml.jackson.core</groupId> |
| 77 | <artifactId>jackson-databind</artifactId> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>com.fasterxml.jackson.core</groupId> |
| 81 | <artifactId>jackson-core</artifactId> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>com.fasterxml.jackson.core</groupId> |
| 85 | <artifactId>jackson-annotations</artifactId> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>javax.servlet</groupId> |
| 89 | <artifactId>servlet-api</artifactId> |
| 90 | <version>2.5</version> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.javassist</groupId> |
| 94 | <artifactId>javassist</artifactId> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>org.json</groupId> |
| 98 | <artifactId>json</artifactId> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 102 | <artifactId>jackson-jaxrs-base</artifactId> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 106 | <artifactId>jackson-jaxrs-providers</artifactId> |
| 107 | <version>2.9.2</version> |
| 108 | <type>pom</type> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.springframework.boot</groupId> |
| 112 | <artifactId>spring-boot-starter-test</artifactId> |
Lukasz Muszkieta | 12c98ba | 2018-06-01 10:40:35 +0200 | [diff] [blame] | 113 | <scope>test</scope> |
| 114 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 115 | <dependency> |
| 116 | <groupId>commons-beanutils</groupId> |
| 117 | <artifactId>commons-beanutils</artifactId> |
| 118 | </dependency> |
| 119 | <dependency> |
| 120 | <groupId>org.springframework.boot</groupId> |
| 121 | <artifactId>spring-boot-configuration-processor</artifactId> |
| 122 | <optional>true</optional> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>com.googlecode.junit-toolbox</groupId> |
| 126 | <artifactId>junit-toolbox</artifactId> |
| 127 | <version>2.4</version> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>org.onap.so</groupId> |
| 131 | <artifactId>common</artifactId> |
| 132 | <version>${project.version}</version> |
| 133 | </dependency> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 134 | </dependencies> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 135 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 136 | <build> |
| 137 | <finalName>${project.artifactId}-${project.version}</finalName> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 138 | <plugins> |
| 139 | <plugin> |
| 140 | <groupId>org.apache.maven.plugins</groupId> |
| 141 | <artifactId>maven-surefire-plugin</artifactId> |
| 142 | <executions> |
| 143 | <execution> |
| 144 | <id>default-test</id> |
| 145 | <goals> |
| 146 | <goal>test</goal> |
| 147 | </goals> |
| 148 | </execution> |
| 149 | </executions> |
| 150 | </plugin> |
| 151 | </plugins> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 152 | </build> |
| 153 | <packaging>jar</packaging> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 154 | </project> |