Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
arjantijms | 3cfb3a3 | 2020-02-18 23:13:47 +0100 | [diff] [blame] | 4 | Copyright (c) 2012, 2020 Oracle and/or its affiliates. All rights reserved. |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [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/maven-v4_0_0.xsd"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.glassfish.main.security</groupId> |
| 24 | <artifactId>nucleus-security</artifactId> |
Arjan Tijms | 492a711 | 2021-02-10 00:43:04 +0100 | [diff] [blame^] | 25 | <version>6.0.0-SNAPSHOT</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 26 | </parent> |
| 27 | <artifactId>security-services</artifactId> |
| 28 | <packaging>glassfish-jar</packaging> |
| 29 | |
| 30 | <name>Security Services and SPI</name> |
| 31 | |
| 32 | <build> |
| 33 | <plugins> |
| 34 | <!-- JDK 8u171+, PasswordAliasTest fails due to serialization issue |
| 35 | Using forked process helps the tests to pass --> |
| 36 | <plugin> |
| 37 | <groupId>org.apache.maven.plugins</groupId> |
| 38 | <artifactId>maven-surefire-plugin</artifactId> |
| 39 | <configuration> |
arjantijms | 4c744d4 | 2020-03-04 12:32:21 +0100 | [diff] [blame] | 40 | <forkCount>1</forkCount> |
| 41 | <reuseForks>false</reuseForks> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 42 | </configuration> |
| 43 | </plugin> |
| 44 | </plugins> |
| 45 | </build> |
| 46 | |
| 47 | <dependencies> |
| 48 | <dependency> |
| 49 | <groupId>org.glassfish.hk2</groupId> |
| 50 | <artifactId>hk2</artifactId> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.glassfish.hk2</groupId> |
| 54 | <artifactId>hk2-junitrunner</artifactId> |
| 55 | <scope>test</scope> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.glassfish.main.admin</groupId> |
| 59 | <artifactId>config-api</artifactId> |
| 60 | <version>${project.version}</version> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.glassfish.main.common</groupId> |
| 64 | <artifactId>common-util</artifactId> |
| 65 | <version>${project.version}</version> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.glassfish.main.common</groupId> |
| 69 | <artifactId>internal-api</artifactId> |
| 70 | <version>${project.version}</version> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.glassfish.main.common</groupId> |
| 74 | <artifactId>glassfish-api</artifactId> |
| 75 | <version>${project.version}</version> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.glassfish.main.security</groupId> |
| 79 | <artifactId>security</artifactId> |
| 80 | <version>${project.version}</version> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.glassfish.annotations</groupId> |
| 84 | <artifactId>logging-annotation-processor</artifactId> |
| 85 | <optional>true</optional> |
| 86 | </dependency> |
| 87 | </dependencies> |
| 88 | </project> |