Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
| 4 | Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved. |
| 5 | |
| 6 | This program and the accompanying materials are made available under the |
| 7 | terms of the Eclipse Public License v. 2.0, which is available at |
| 8 | http://www.eclipse.org/legal/epl-2.0. |
| 9 | |
| 10 | This Source Code may also be made available under the following Secondary |
| 11 | Licenses when the conditions for such availability set forth in the |
| 12 | Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| 13 | version 2 with the GNU Classpath Exception, which is available at |
| 14 | https://www.gnu.org/software/classpath/license.html. |
| 15 | |
| 16 | SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| 17 | |
| 18 | --> |
| 19 | |
| 20 | <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"> |
| 21 | |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | |
| 24 | <parent> |
| 25 | <groupId>org.glassfish.jersey.ext</groupId> |
| 26 | <artifactId>project</artifactId> |
jersey-bot | e81feb4 | 2019-01-25 16:18:12 +0000 | [diff] [blame^] | 27 | <version>2.29-SNAPSHOT</version> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <artifactId>jersey-spring4</artifactId> |
| 31 | <name>jersey-spring4</name> |
| 32 | |
| 33 | <packaging>jar</packaging> |
| 34 | |
| 35 | <description> |
| 36 | Jersey extension module providing support for Spring 4 integration. |
| 37 | </description> |
| 38 | |
| 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>org.glassfish.jersey.core</groupId> |
| 42 | <artifactId>jersey-server</artifactId> |
| 43 | <version>${project.version}</version> |
| 44 | </dependency> |
| 45 | |
| 46 | <dependency> |
| 47 | <groupId>org.glassfish.jersey.inject</groupId> |
| 48 | <artifactId>jersey-hk2</artifactId> |
| 49 | <version>${project.version}</version> |
| 50 | </dependency> |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>org.glassfish.jersey.containers</groupId> |
| 54 | <artifactId>jersey-container-servlet-core</artifactId> |
| 55 | <version>${project.version}</version> |
| 56 | </dependency> |
| 57 | |
| 58 | <dependency> |
| 59 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 60 | <artifactId>jersey-test-framework-provider-grizzly2</artifactId> |
| 61 | <version>${project.version}</version> |
| 62 | <scope>test</scope> |
| 63 | </dependency> |
| 64 | |
| 65 | <dependency> |
| 66 | <groupId>commons-logging</groupId> |
| 67 | <artifactId>commons-logging</artifactId> |
| 68 | <version>1.2</version> |
| 69 | <scope>test</scope> |
| 70 | </dependency> |
| 71 | |
| 72 | <dependency> |
| 73 | <groupId>org.glassfish.hk2</groupId> |
| 74 | <artifactId>hk2</artifactId> |
| 75 | <version>${hk2.version}</version> |
| 76 | </dependency> |
| 77 | |
| 78 | <dependency> |
| 79 | <groupId>org.glassfish.hk2</groupId> |
| 80 | <artifactId>spring-bridge</artifactId> |
| 81 | <version>${hk2.version}</version> |
| 82 | <exclusions> |
| 83 | <exclusion> <!-- already pulled in by jersey-server --> |
| 84 | <groupId>javax.inject</groupId> |
| 85 | <artifactId>javax.inject</artifactId> |
| 86 | </exclusion> |
| 87 | <exclusion> |
| 88 | <groupId>org.glassfish.hk2</groupId> |
| 89 | <artifactId>hk2-api</artifactId> |
| 90 | </exclusion> |
| 91 | </exclusions> |
| 92 | </dependency> |
| 93 | |
| 94 | <dependency> |
| 95 | <groupId>org.springframework</groupId> |
| 96 | <artifactId>spring-beans</artifactId> |
| 97 | <version>${spring4.version}</version> |
| 98 | </dependency> |
| 99 | |
| 100 | <dependency> |
| 101 | <groupId>org.springframework</groupId> |
| 102 | <artifactId>spring-core</artifactId> |
| 103 | <version>${spring4.version}</version> |
| 104 | <exclusions> |
| 105 | <exclusion> |
| 106 | <groupId>commons-logging</groupId> |
| 107 | <artifactId>commons-logging</artifactId> |
| 108 | </exclusion> |
| 109 | </exclusions> |
| 110 | </dependency> |
| 111 | |
| 112 | <dependency> |
| 113 | <groupId>org.springframework</groupId> |
| 114 | <artifactId>spring-web</artifactId> |
| 115 | <version>${spring4.version}</version> |
| 116 | </dependency> |
| 117 | |
| 118 | <dependency> |
| 119 | <groupId>org.springframework</groupId> |
| 120 | <artifactId>spring-aop</artifactId> |
| 121 | <version>${spring4.version}</version> |
| 122 | </dependency> |
| 123 | |
| 124 | <dependency> |
jansupol | 7aebbcf | 2018-12-04 14:32:47 +0100 | [diff] [blame] | 125 | <groupId>jakarta.servlet</groupId> |
| 126 | <artifactId>jakarta.servlet-api</artifactId> |
| 127 | <version>${servlet4.version}</version> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 128 | <scope>provided</scope> |
| 129 | </dependency> |
| 130 | |
| 131 | <dependency> |
| 132 | <groupId>org.glassfish.jersey.test-framework</groupId> |
| 133 | <artifactId>jersey-test-framework-core</artifactId> |
| 134 | <version>${project.version}</version> |
| 135 | <scope>test</scope> |
| 136 | </dependency> |
| 137 | |
| 138 | <dependency> |
| 139 | <groupId>org.aspectj</groupId> |
| 140 | <artifactId>aspectjrt</artifactId> |
| 141 | <version>1.6.11</version> |
| 142 | <scope>test</scope> |
| 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>org.aspectj</groupId> |
| 146 | <artifactId>aspectjweaver</artifactId> |
| 147 | <version>1.6.11</version> |
| 148 | <scope>test</scope> |
| 149 | </dependency> |
| 150 | |
| 151 | </dependencies> |
| 152 | |
| 153 | <properties> |
jansupol | ab91c97 | 2018-09-26 17:43:19 +0200 | [diff] [blame] | 154 | <spring4.version>4.3.8.RELEASE</spring4.version> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 155 | </properties> |
| 156 | |
| 157 | <build> |
| 158 | <plugins> |
| 159 | <plugin> |
| 160 | <groupId>com.sun.istack</groupId> |
jansupol | 100db13 | 2018-12-10 15:14:46 +0100 | [diff] [blame] | 161 | <artifactId>istack-commons-maven-plugin</artifactId> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 162 | <inherited>true</inherited> |
| 163 | </plugin> |
| 164 | <plugin> |
| 165 | <groupId>org.codehaus.mojo</groupId> |
| 166 | <artifactId>build-helper-maven-plugin</artifactId> |
| 167 | <inherited>true</inherited> |
| 168 | </plugin> |
| 169 | </plugins> |
| 170 | </build> |
| 171 | |
| 172 | <profiles> |
| 173 | <profile> |
| 174 | <id>delayed-strategy-skip-test</id> |
| 175 | <activation> |
| 176 | <property> |
| 177 | <name>org.glassfish.jersey.injection.manager.strategy</name> |
| 178 | <value>delayed</value> |
| 179 | </property> |
| 180 | </activation> |
| 181 | <build> |
| 182 | <plugins> |
| 183 | <plugin> |
| 184 | <groupId>org.apache.maven.plugins</groupId> |
| 185 | <artifactId>maven-surefire-plugin</artifactId> |
| 186 | <configuration> |
| 187 | <skipTests>true</skipTests> |
| 188 | </configuration> |
| 189 | </plugin> |
| 190 | </plugins> |
| 191 | </build> |
| 192 | </profile> |
| 193 | </profiles> |
| 194 | </project> |