Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
jansupol | 3c0925b | 2019-02-07 11:27:52 +0100 | [diff] [blame^] | 4 | Copyright (c) 2011, 2019 Oracle and/or its affiliates. All rights reserved. |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 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 | <modelVersion>4.0.0</modelVersion> |
| 22 | |
| 23 | <parent> |
| 24 | <groupId>org.glassfish.jersey</groupId> |
| 25 | <artifactId>project</artifactId> |
jersey-bot | e81feb4 | 2019-01-25 16:18:12 +0000 | [diff] [blame] | 26 | <version>2.29-SNAPSHOT</version> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <groupId>org.glassfish.jersey.tests</groupId> |
| 30 | <artifactId>project</artifactId> |
| 31 | <packaging>pom</packaging> |
| 32 | <name>jersey-tests</name> |
| 33 | |
| 34 | <description> |
| 35 | Test modules containing test scenario types that involve multiple implementation |
| 36 | modules (integration, functional, etc. tests). |
| 37 | </description> |
| 38 | |
| 39 | <modules> |
| 40 | <module>e2e</module> |
| 41 | <module>e2e-client</module> |
| 42 | <module>e2e-core-common</module> |
| 43 | <module>e2e-entity</module> |
| 44 | <module>e2e-inject</module> |
| 45 | <module>e2e-server</module> |
| 46 | <module>e2e-testng</module> |
| 47 | <module>integration</module> |
| 48 | <module>mem-leaks</module> |
| 49 | <module>osgi</module> |
| 50 | <module>stress</module> |
| 51 | <module>performance</module> |
| 52 | </modules> |
| 53 | |
| 54 | <dependencyManagement> |
| 55 | <dependencies> |
| 56 | <dependency> |
| 57 | <groupId>org.glassfish.jersey</groupId> |
| 58 | <artifactId>jersey-bom</artifactId> |
| 59 | <version>${project.version}</version> |
| 60 | <type>pom</type> |
| 61 | <scope>import</scope> |
| 62 | </dependency> |
| 63 | </dependencies> |
| 64 | </dependencyManagement> |
| 65 | |
| 66 | <dependencies> |
| 67 | <dependency> |
| 68 | <groupId>org.glassfish.jersey.inject</groupId> |
| 69 | <artifactId>jersey-hk2</artifactId> |
| 70 | <version>${project.version}</version> |
| 71 | </dependency> |
| 72 | </dependencies> |
| 73 | |
| 74 | <build> |
| 75 | <plugins> |
| 76 | <plugin> |
| 77 | <groupId>org.apache.maven.plugins</groupId> |
| 78 | <artifactId>maven-deploy-plugin</artifactId> |
| 79 | <configuration> |
| 80 | <skip>true</skip> |
| 81 | </configuration> |
| 82 | </plugin> |
| 83 | <plugin> |
| 84 | <groupId>org.apache.maven.plugins</groupId> |
| 85 | <artifactId>maven-install-plugin</artifactId> |
| 86 | <configuration> |
| 87 | <skip>true</skip> |
| 88 | </configuration> |
| 89 | </plugin> |
| 90 | </plugins> |
| 91 | </build> |
| 92 | |
| 93 | <profiles> |
| 94 | <profile> |
jansupol | 3c0925b | 2019-02-07 11:27:52 +0100 | [diff] [blame^] | 95 | <id>pre-release</id> |
Jan Supol | 12a0573 | 2018-04-25 17:50:03 +0200 | [diff] [blame] | 96 | <build> |
| 97 | <plugins> |
| 98 | <plugin> |
| 99 | <groupId>org.sonatype.plugins</groupId> |
| 100 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 101 | <configuration> |
| 102 | <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> |
| 103 | </configuration> |
| 104 | </plugin> |
| 105 | </plugins> |
| 106 | </build> |
| 107 | </profile> |
| 108 | </profiles> |
| 109 | </project> |