|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + Licensed to the Apache Software Foundation (ASF) under one or more |
| 4 | + contributor license agreements. See the NOTICE file distributed with |
| 5 | + this work for additional information regarding copyright ownership. |
| 6 | + The ASF licenses this file to You under the Apache License, Version 2.0 |
| 7 | + (the "License"); you may not use this file except in compliance with |
| 8 | + the License. You may obtain a copy of the License at |
| 9 | +
|
| 10 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +
|
| 12 | + Unless required by applicable law or agreed to in writing, software |
| 13 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | + See the License for the specific language governing permissions and |
| 16 | + limitations under the License. |
| 17 | +--> |
| 18 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 19 | + |
| 20 | + <modelVersion>4.0.0</modelVersion> |
| 21 | + |
| 22 | + <parent> |
| 23 | + <groupId>org.apache.activemq</groupId> |
| 24 | + <artifactId>activemq-parent</artifactId> |
| 25 | + <version>6.3.0-SNAPSHOT</version> |
| 26 | + </parent> |
| 27 | + |
| 28 | + <artifactId>activemq-oauth2</artifactId> |
| 29 | + <packaging>bundle</packaging> |
| 30 | + <name>ActiveMQ :: OAuth2</name> |
| 31 | + <description>ActiveMQ OAuth2 JWT authentication via JAAS LoginModule</description> |
| 32 | + |
| 33 | + <dependencies> |
| 34 | + |
| 35 | + <!-- =============================== --> |
| 36 | + <!-- Required Dependencies --> |
| 37 | + <!-- =============================== --> |
| 38 | + <dependency> |
| 39 | + <groupId>${project.groupId}</groupId> |
| 40 | + <artifactId>activemq-jaas</artifactId> |
| 41 | + </dependency> |
| 42 | + |
| 43 | + <dependency> |
| 44 | + <groupId>com.nimbusds</groupId> |
| 45 | + <artifactId>nimbus-jose-jwt</artifactId> |
| 46 | + </dependency> |
| 47 | + |
| 48 | + <dependency> |
| 49 | + <groupId>org.slf4j</groupId> |
| 50 | + <artifactId>slf4j-api</artifactId> |
| 51 | + </dependency> |
| 52 | + |
| 53 | + <!-- =============================== --> |
| 54 | + <!-- Testing Dependencies --> |
| 55 | + <!-- =============================== --> |
| 56 | + <dependency> |
| 57 | + <groupId>junit</groupId> |
| 58 | + <artifactId>junit</artifactId> |
| 59 | + <scope>test</scope> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>org.apache.logging.log4j</groupId> |
| 63 | + <artifactId>log4j-slf4j2-impl</artifactId> |
| 64 | + <scope>test</scope> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>org.apache.logging.log4j</groupId> |
| 68 | + <artifactId>log4j-core</artifactId> |
| 69 | + <scope>test</scope> |
| 70 | + </dependency> |
| 71 | + </dependencies> |
| 72 | + |
| 73 | + <build> |
| 74 | + <plugins> |
| 75 | + <plugin> |
| 76 | + <groupId>org.apache.felix</groupId> |
| 77 | + <artifactId>maven-bundle-plugin</artifactId> |
| 78 | + <extensions>true</extensions> |
| 79 | + <configuration> |
| 80 | + <instructions> |
| 81 | + <Bundle-SymbolicName>org.apache.activemq.oauth2</Bundle-SymbolicName> |
| 82 | + <Export-Package>org.apache.activemq.oauth2*;version=${project.version};-noimport:=true;-split-package:=merge-first</Export-Package> |
| 83 | + <Import-Package> |
| 84 | + org.apache.activemq*;version=${project.version};resolution:=optional, |
| 85 | + com.nimbusds*, |
| 86 | + * |
| 87 | + </Import-Package> |
| 88 | + <_noee>true</_noee> |
| 89 | + </instructions> |
| 90 | + </configuration> |
| 91 | + </plugin> |
| 92 | + </plugins> |
| 93 | + </build> |
| 94 | + |
| 95 | +</project> |
0 commit comments