Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <!-- |
| 3 | |
jersey-bot | 59a5d50 | 2024-01-07 02:21:04 +0000 | [diff] [blame] | 4 | Copyright (c) 2012, 2024 Oracle and/or its affiliates. All rights reserved. |
David Matejcek | 4d881e9 | 2019-04-15 15:25:34 +0200 | [diff] [blame] | 5 | Copyright (c) 2018, 2019 Payara Foundation and/or its affiliates. All rights reserved. |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 6 | |
| 7 | This program and the accompanying materials are made available under the |
| 8 | terms of the Eclipse Public License v. 2.0, which is available at |
| 9 | http://www.eclipse.org/legal/epl-2.0. |
| 10 | |
| 11 | This Source Code may also be made available under the following Secondary |
| 12 | Licenses when the conditions for such availability set forth in the |
| 13 | Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| 14 | version 2 with the GNU Classpath Exception, which is available at |
| 15 | https://www.gnu.org/software/classpath/license.html. |
| 16 | |
| 17 | SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| 18 | |
| 19 | --> |
| 20 | |
| 21 | <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/xsd/maven-4.0.0.xsd"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | |
| 24 | <parent> |
| 25 | <groupId>org.glassfish.jersey.ext</groupId> |
| 26 | <artifactId>project</artifactId> |
jersey-bot | 9727e9a | 2024-01-07 02:21:50 +0000 | [diff] [blame] | 27 | <version>4.0.99-SNAPSHOT</version> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <artifactId>jersey-bean-validation</artifactId> |
| 31 | <name>jersey-ext-bean-validation</name> |
| 32 | |
| 33 | <description> |
| 34 | Jersey extension module providing support for Bean Validation (JSR-349) API. |
| 35 | </description> |
| 36 | |
| 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>com.sun.istack</groupId> |
jansupol | 100db13 | 2018-12-10 15:14:46 +0100 | [diff] [blame] | 41 | <artifactId>istack-commons-maven-plugin</artifactId> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 42 | <inherited>true</inherited> |
| 43 | </plugin> |
| 44 | <plugin> |
| 45 | <groupId>org.codehaus.mojo</groupId> |
| 46 | <artifactId>build-helper-maven-plugin</artifactId> |
| 47 | <inherited>true</inherited> |
| 48 | </plugin> |
| 49 | <plugin> |
| 50 | <groupId>org.apache.felix</groupId> |
| 51 | <artifactId>maven-bundle-plugin</artifactId> |
| 52 | <inherited>true</inherited> |
| 53 | <extensions>true</extensions> |
| 54 | <configuration> |
| 55 | <instructions> |
| 56 | <!-- Note: When you're changing these properties change them also in bundles/jax-rs-ri/bundle/pom.xml. --> |
| 57 | <Export-Package>org.glassfish.jersey.server.validation.*;version=${project.version}</Export-Package> |
jansupol | 100db13 | 2018-12-10 15:14:46 +0100 | [diff] [blame] | 58 | <Import-Package> |
Maxim Nesen | d07e880 | 2020-04-30 16:15:40 +0200 | [diff] [blame] | 59 | ${jakarta.annotation.osgi.version}, |
jansupol | f0754eb | 2022-08-26 15:34:00 +0200 | [diff] [blame] | 60 | ${cdi.osgi.version}, |
jansupol | 0746348 | 2022-08-26 22:57:11 +0200 | [diff] [blame] | 61 | jakarta.validation.*;resolution:=optional;version="${range;[==,4);${jakarta.validation.api.version}}", |
Maxim Nesen | 627a1df | 2021-12-22 08:12:29 +0100 | [diff] [blame] | 62 | jakarta.decorator.*;version="[3.0,5)", |
jansupol | 100db13 | 2018-12-10 15:14:46 +0100 | [diff] [blame] | 63 | * |
| 64 | </Import-Package> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 65 | </instructions> |
| 66 | <unpackBundle>true</unpackBundle> |
| 67 | </configuration> |
| 68 | </plugin> |
| 69 | </plugins> |
| 70 | </build> |
| 71 | |
| 72 | <dependencies> |
| 73 | <dependency> |
Maxim Nesen | 1954282 | 2020-05-04 12:27:00 +0200 | [diff] [blame] | 74 | <groupId>jakarta.inject</groupId> |
| 75 | <artifactId>jakarta.inject-api</artifactId> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.glassfish.jersey.core</groupId> |
| 79 | <artifactId>jersey-common</artifactId> |
| 80 | <version>${project.version}</version> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.glassfish.jersey.core</groupId> |
| 84 | <artifactId>jersey-server</artifactId> |
| 85 | <version>${project.version}</version> |
| 86 | </dependency> |
| 87 | |
| 88 | <dependency> |
Maxim Nesen | a065740 | 2019-09-05 10:42:05 +0200 | [diff] [blame] | 89 | <groupId>jakarta.validation</groupId> |
| 90 | <artifactId>jakarta.validation-api</artifactId> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 91 | </dependency> |
| 92 | <dependency> |
Máté Szabó | 7ec7605 | 2018-09-03 11:33:03 +0200 | [diff] [blame] | 93 | <groupId>org.hibernate.validator</groupId> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 94 | <artifactId>hibernate-validator</artifactId> |
Maxim Nesen | b238b28 | 2019-10-21 13:19:00 +0200 | [diff] [blame] | 95 | <exclusions> |
| 96 | <exclusion> |
Maxim Nesen | ef8f661 | 2020-05-05 17:49:04 +0200 | [diff] [blame] | 97 | <groupId>jakarta.validation</groupId> |
| 98 | <artifactId>jakarta.validation-api</artifactId> |
| 99 | </exclusion> |
| 100 | <exclusion> |
| 101 | <groupId>jakarta.el</groupId> |
| 102 | <artifactId>jakarta.el-api</artifactId> |
Maxim Nesen | b238b28 | 2019-10-21 13:19:00 +0200 | [diff] [blame] | 103 | </exclusion> |
Maxim Nesen | c373f2a | 2022-12-14 16:48:39 +0100 | [diff] [blame] | 104 | <exclusion> |
| 105 | <groupId>org.jboss.logging</groupId> |
| 106 | <artifactId>jboss-logging</artifactId> |
Maxim Nesen | b238b28 | 2019-10-21 13:19:00 +0200 | [diff] [blame] | 107 | </exclusion> |
| 108 | </exclusions> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 109 | </dependency> |
David Matejcek | 4d881e9 | 2019-04-15 15:25:34 +0200 | [diff] [blame] | 110 | <dependency> |
Maxim Nesen | c373f2a | 2022-12-14 16:48:39 +0100 | [diff] [blame] | 111 | <groupId>org.jboss.logging</groupId> |
| 112 | <artifactId>jboss-logging</artifactId> |
| 113 | <version>${jboss.logging.version}</version> |
| 114 | </dependency> |
| 115 | <dependency> |
jansupol | 9edb3d4 | 2020-12-14 22:54:43 +0100 | [diff] [blame] | 116 | <groupId>jakarta.xml.bind</groupId> |
| 117 | <artifactId>jakarta.xml.bind-api</artifactId> |
| 118 | <optional>true</optional> |
| 119 | </dependency> |
| 120 | <dependency> |
Maxim Nesen | acf8263 | 2020-05-19 10:42:29 +0200 | [diff] [blame] | 121 | <groupId>jakarta.enterprise</groupId> |
| 122 | <artifactId>jakarta.enterprise.cdi-api</artifactId> |
David Matejcek | e795abe | 2019-04-17 15:43:28 +0200 | [diff] [blame] | 123 | <optional>true</optional> |
David Matejcek | 4d881e9 | 2019-04-15 15:25:34 +0200 | [diff] [blame] | 124 | </dependency> |
| 125 | <dependency> |
| 126 | <groupId>org.glassfish.jersey.ext.cdi</groupId> |
| 127 | <artifactId>jersey-cdi1x</artifactId> |
| 128 | <version>${project.version}</version> |
David Matejcek | e795abe | 2019-04-17 15:43:28 +0200 | [diff] [blame] | 129 | <optional>true</optional> |
David Matejcek | 4d881e9 | 2019-04-15 15:25:34 +0200 | [diff] [blame] | 130 | </dependency> |
| 131 | |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 132 | |
| 133 | <!-- java-el related dependencies are in scope "provided" in hibernate-validator --> |
| 134 | <dependency> |
jansupol | 7aebbcf | 2018-12-04 14:32:47 +0100 | [diff] [blame] | 135 | <groupId>jakarta.el</groupId> |
| 136 | <artifactId>jakarta.el-api</artifactId> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 137 | </dependency> |
| 138 | |
| 139 | <dependency> |
Máté Szabó | 7ec7605 | 2018-09-03 11:33:03 +0200 | [diff] [blame] | 140 | <groupId>org.glassfish</groupId> |
jansupol | 7aebbcf | 2018-12-04 14:32:47 +0100 | [diff] [blame] | 141 | <artifactId>jakarta.el</artifactId> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 142 | </dependency> |
| 143 | |
| 144 | <dependency> |
Maxim Nesen | 6eea2ad | 2020-10-07 07:38:50 +0200 | [diff] [blame] | 145 | <groupId>org.glassfish.jersey.test-framework</groupId> |
| 146 | <artifactId>jersey-test-framework-core</artifactId> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 147 | <version>${project.version}</version> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 148 | <scope>test</scope> |
| 149 | </dependency> |
| 150 | </dependencies> |
Maxim Nesen | 4cce118 | 2023-11-15 10:39:07 +0100 | [diff] [blame] | 151 | </project> |