Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Joey Armstrong | 4de0b45 | 2023-01-18 15:26:54 -0500 | [diff] [blame] | 3 | ~ Copyright 2015-2023 Open Networking Foundation (ONF) and the ONF Contributors |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License. |
| 16 | --> |
| 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 20 | <parent> |
| 21 | <artifactId>aaa</artifactId> |
| 22 | <groupId>org.opencord</groupId> |
Jenkins | d96fdd6 | 2023-06-12 17:40:30 +0000 | [diff] [blame] | 23 | <version>2.11.0-SNAPSHOT</version> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 24 | </parent> |
| 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | |
| 27 | <artifactId>aaa-app</artifactId> |
| 28 | |
| 29 | <packaging>bundle</packaging> |
| 30 | <description>AAA application for CORD</description> |
| 31 | |
| 32 | <properties> |
| 33 | <onos.app.name>org.opencord.aaa</onos.app.name> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 34 | <onos.app.title>AAA App</onos.app.title> |
| 35 | <onos.app.category>Security</onos.app.category> |
| 36 | <onos.app.url>http://opencord.org</onos.app.url> |
| 37 | <onos.app.readme>802.1x authentication service.</onos.app.readme> |
Gustavo Silva | b87da03 | 2022-05-18 17:51:59 -0300 | [diff] [blame] | 38 | |
| 39 | <web.context>/onos/aaa</web.context> |
Joey Armstrong | c32f7cf | 2023-06-08 17:52:44 -0400 | [diff] [blame] | 40 | <api.version>1.0.1</api.version> |
Gustavo Silva | b87da03 | 2022-05-18 17:51:59 -0300 | [diff] [blame] | 41 | <api.title>AAA REST API</api.title> |
| 42 | <api.description>REST API to query AAA app information.</api.description> |
| 43 | <api.package>org.opencord.aaa.rest</api.package> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 44 | </properties> |
| 45 | |
| 46 | <dependencies> |
| 47 | <dependency> |
Jonathan Hart | 612651f | 2019-11-25 09:21:43 -0800 | [diff] [blame] | 48 | <groupId>org.slf4j</groupId> |
| 49 | <artifactId>slf4j-simple</artifactId> |
Joey Armstrong | c32f7cf | 2023-06-08 17:52:44 -0400 | [diff] [blame] | 50 | <version>2.0.7</version> |
Jonathan Hart | 612651f | 2019-11-25 09:21:43 -0800 | [diff] [blame] | 51 | <scope>test</scope> |
| 52 | </dependency> |
| 53 | |
| 54 | <dependency> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 55 | <groupId>org.opencord</groupId> |
| 56 | <artifactId>sadis-api</artifactId> |
| 57 | <version>${sadis.api.version}</version> |
Carmelo Cascone | 58b5329 | 2019-09-30 12:35:31 -0700 | [diff] [blame] | 58 | <scope>provided</scope> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 59 | </dependency> |
Carmelo Cascone | 58b5329 | 2019-09-30 12:35:31 -0700 | [diff] [blame] | 60 | |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 61 | <dependency> |
| 62 | <groupId>org.opencord</groupId> |
| 63 | <artifactId>aaa-api</artifactId> |
Ilayda Ozdemir | 9fdeee7 | 2021-02-26 12:24:27 +0000 | [diff] [blame] | 64 | <version>${aaa.api.version}</version> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 65 | <scope>compile</scope> |
| 66 | </dependency> |
Carmelo Cascone | 58b5329 | 2019-09-30 12:35:31 -0700 | [diff] [blame] | 67 | |
| 68 | <dependency> |
| 69 | <groupId>org.onosproject</groupId> |
| 70 | <artifactId>onos-api</artifactId> |
| 71 | <version>${onos.version}</version> |
| 72 | <scope>provided</scope> |
| 73 | </dependency> |
| 74 | |
| 75 | <dependency> |
| 76 | <groupId>org.onosproject</groupId> |
Jonathan Hart | c41227c | 2020-01-28 16:56:49 -0800 | [diff] [blame] | 77 | <artifactId>onos-core-serializers</artifactId> |
| 78 | <version>${onos.version}</version> |
| 79 | <scope>provided</scope> |
| 80 | </dependency> |
| 81 | |
| 82 | <dependency> |
| 83 | <groupId>org.onosproject</groupId> |
Carmelo Cascone | 58b5329 | 2019-09-30 12:35:31 -0700 | [diff] [blame] | 84 | <artifactId>onos-api</artifactId> |
| 85 | <version>${onos.version}</version> |
| 86 | <classifier>tests</classifier> |
| 87 | <scope>test</scope> |
| 88 | </dependency> |
| 89 | |
| 90 | <dependency> |
| 91 | <groupId>org.onosproject</groupId> |
| 92 | <artifactId>onlab-misc</artifactId> |
| 93 | <version>${onos.version}</version> |
| 94 | <scope>provided</scope> |
| 95 | </dependency> |
| 96 | |
| 97 | <dependency> |
| 98 | <groupId>org.onosproject</groupId> |
| 99 | <artifactId>onlab-junit</artifactId> |
| 100 | <version>${onos.version}</version> |
| 101 | <scope>test</scope> |
| 102 | </dependency> |
| 103 | |
| 104 | <dependency> |
| 105 | <groupId>org.onosproject</groupId> |
| 106 | <artifactId>onos-cli</artifactId> |
| 107 | <version>${onos.version}</version> |
| 108 | <scope>provided</scope> |
| 109 | </dependency> |
| 110 | |
| 111 | <dependency> |
| 112 | <groupId>org.apache.karaf.shell</groupId> |
| 113 | <artifactId>org.apache.karaf.shell.core</artifactId> |
Carmelo Cascone | 58b5329 | 2019-09-30 12:35:31 -0700 | [diff] [blame] | 114 | <scope>provided</scope> |
| 115 | </dependency> |
| 116 | |
| 117 | <dependency> |
| 118 | <groupId>org.apache.karaf.shell</groupId> |
| 119 | <artifactId>org.apache.karaf.shell.console</artifactId> |
Carmelo Cascone | 58b5329 | 2019-09-30 12:35:31 -0700 | [diff] [blame] | 120 | <scope>provided</scope> |
| 121 | </dependency> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 122 | </dependencies> |
| 123 | |
| 124 | <build> |
| 125 | <plugins> |
| 126 | <plugin> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 127 | <groupId>org.onosproject</groupId> |
| 128 | <artifactId>onos-maven-plugin</artifactId> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 129 | </plugin> |
Carmelo Cascone | 58b5329 | 2019-09-30 12:35:31 -0700 | [diff] [blame] | 130 | |
| 131 | <plugin> |
| 132 | <groupId>org.apache.felix</groupId> |
| 133 | <artifactId>maven-bundle-plugin</artifactId> |
| 134 | <configuration> |
| 135 | <instructions> |
Gustavo Silva | b87da03 | 2022-05-18 17:51:59 -0300 | [diff] [blame] | 136 | <_wab>src/main/webapp/</_wab> |
| 137 | <Include-Resource> |
| 138 | WEB-INF/classes/apidoc/swagger.json=target/swagger.json, |
| 139 | {maven-resources} |
| 140 | </Include-Resource> |
| 141 | <Import-Package> |
| 142 | *,org.glassfish.jersey.servlet |
| 143 | </Import-Package> |
| 144 | <Web-ContextPath>${web.context}</Web-ContextPath> |
Carmelo Cascone | 58b5329 | 2019-09-30 12:35:31 -0700 | [diff] [blame] | 145 | <Karaf-Commands>org.opencord.aaa.cli</Karaf-Commands> |
Carmelo Cascone | 58b5329 | 2019-09-30 12:35:31 -0700 | [diff] [blame] | 146 | </instructions> |
| 147 | </configuration> |
| 148 | </plugin> |
Matteo Scandolo | cf847b8 | 2019-04-26 15:00:00 -0700 | [diff] [blame] | 149 | </plugins> |
| 150 | </build> |
| 151 | |
kartikey dubey | e154542 | 2019-05-22 12:53:45 +0000 | [diff] [blame] | 152 | </project> |