1791845cdSKryštof Tulinger<?xml version="1.0" encoding="UTF-8"?> 2791845cdSKryštof Tulinger<!-- 3791845cdSKryštof Tulinger 4791845cdSKryštof TulingerCDDL HEADER START 5791845cdSKryštof Tulinger 6791845cdSKryštof TulingerThe contents of this file are subject to the terms of the 7791845cdSKryštof TulingerCommon Development and Distribution License (the "License"). 8791845cdSKryštof TulingerYou may not use this file except in compliance with the License. 9791845cdSKryštof Tulinger 10791845cdSKryštof TulingerSee LICENSE.txt included in this distribution for the specific 11791845cdSKryštof Tulingerlanguage governing permissions and limitations under the License. 12791845cdSKryštof Tulinger 13791845cdSKryštof TulingerWhen distributing Covered Code, include this CDDL HEADER in each 14791845cdSKryštof Tulingerfile and include the License file at LICENSE.txt. 15791845cdSKryštof TulingerIf applicable, add the following below this CDDL HEADER, with the 16791845cdSKryštof Tulingerfields enclosed by brackets "[]" replaced with your own identifying 17791845cdSKryštof Tulingerinformation: Portions Copyright [yyyy] [name of copyright owner] 18791845cdSKryštof Tulinger 19791845cdSKryštof TulingerCDDL HEADER END 20791845cdSKryštof Tulinger 2114bb522cSAdam HornacekCopyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. 22895b87d2SChris FrairePortions Copyright (c) 2020, Chris Fraire <cfraire@me.com>. 23791845cdSKryštof Tulinger 24791845cdSKryštof Tulinger--> 250170aac5SAdam Hornáček<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"> 26791845cdSKryštof Tulinger <modelVersion>4.0.0</modelVersion> 27791845cdSKryštof Tulinger 28791845cdSKryštof Tulinger <parent> 2956f072caSAdam Hornáček <groupId>org.opengrok</groupId> 306ed99b2dSVladimir Kotal <artifactId>opengrok-top</artifactId> 31*1a2ed5cfSVladimír Kotal <version>1.7.32</version> 32791845cdSKryštof Tulinger </parent> 33791845cdSKryštof Tulinger 340170aac5SAdam Hornáček <artifactId>plugins</artifactId> 35*1a2ed5cfSVladimír Kotal <version>1.7.32</version> 360170aac5SAdam Hornáček <packaging>jar</packaging> 370170aac5SAdam Hornáček 380170aac5SAdam Hornáček <name>OpenGrok authorization plugins</name> 390170aac5SAdam Hornáček 400170aac5SAdam Hornáček <dependencies> 410170aac5SAdam Hornáček <dependency> 420170aac5SAdam Hornáček <groupId>${project.groupId}</groupId> 43bb76b0b8SAdam Hornáček <artifactId>opengrok</artifactId> 440170aac5SAdam Hornáček <version>${project.version}</version> 450170aac5SAdam Hornáček </dependency> 460170aac5SAdam Hornáček <dependency> 47895b87d2SChris Fraire <groupId>${project.groupId}</groupId> 48895b87d2SChris Fraire <artifactId>opengrok</artifactId> 49895b87d2SChris Fraire <version>${project.version}</version> 50394481a5SAdam Hornacek <classifier>tests</classifier> 51895b87d2SChris Fraire <type>test-jar</type> 52895b87d2SChris Fraire <scope>test</scope> 53895b87d2SChris Fraire </dependency> 54895b87d2SChris Fraire <dependency> 55aa6abf42SAdam Hornacek <groupId>jakarta.servlet</groupId> 56aa6abf42SAdam Hornacek <artifactId>jakarta.servlet-api</artifactId> 570170aac5SAdam Hornáček </dependency> 580170aac5SAdam Hornáček <dependency> 595f96ffbeSDalibor Skrobak <groupId>org.junit.jupiter</groupId> 605f96ffbeSDalibor Skrobak <artifactId>junit-jupiter-engine</artifactId> 615f96ffbeSDalibor Skrobak <scope>test</scope> 625f96ffbeSDalibor Skrobak </dependency> 635f96ffbeSDalibor Skrobak <dependency> 642f7dccc7SAdam Hornacek <groupId>org.junit.jupiter</groupId> 652f7dccc7SAdam Hornacek <artifactId>junit-jupiter-params</artifactId> 660170aac5SAdam Hornáček <scope>test</scope> 670170aac5SAdam Hornáček </dependency> 68806e34baSVladimir Kotal <dependency> 69806e34baSVladimir Kotal <groupId>org.glassfish.jersey.core</groupId> 70806e34baSVladimir Kotal <artifactId>jersey-client</artifactId> 71806e34baSVladimir Kotal <version>${jersey.version}</version> 72806e34baSVladimir Kotal </dependency> 73806e34baSVladimir Kotal <dependency> 74806e34baSVladimir Kotal <groupId>org.glassfish.jersey.media</groupId> 75806e34baSVladimir Kotal <artifactId>jersey-media-json-jackson</artifactId> 76806e34baSVladimir Kotal <version>${jersey.version}</version> 77806e34baSVladimir Kotal </dependency> 78806e34baSVladimir Kotal <dependency> 79806e34baSVladimir Kotal <groupId>org.glassfish.jersey.inject</groupId> 80806e34baSVladimir Kotal <artifactId>jersey-hk2</artifactId> 81806e34baSVladimir Kotal <version>${jersey.version}</version> 82806e34baSVladimir Kotal </dependency> 83c55d651aSVladimir Kotal <dependency> 84c55d651aSVladimir Kotal <groupId>org.glassfish.jersey.test-framework.providers</groupId> 85c55d651aSVladimir Kotal <artifactId>jersey-test-framework-provider-grizzly2</artifactId> 86c55d651aSVladimir Kotal <version>${jersey.version}</version> 87c55d651aSVladimir Kotal <scope>test</scope> 8814bb522cSAdam Hornacek <exclusions> 8914bb522cSAdam Hornacek <exclusion> 9014bb522cSAdam Hornacek <groupId>junit</groupId> 9114bb522cSAdam Hornacek <artifactId>junit</artifactId> 9214bb522cSAdam Hornacek </exclusion> 9314bb522cSAdam Hornacek </exclusions> 94c55d651aSVladimir Kotal </dependency> 953c16dad8SVladimir Kotal <dependency> 963c16dad8SVladimir Kotal <groupId>org.mockito</groupId> 973c16dad8SVladimir Kotal <artifactId>mockito-core</artifactId> 983c16dad8SVladimir Kotal <scope>test</scope> 993c16dad8SVladimir Kotal </dependency> 100cdc7fb8fSVladimir Kotal <dependency> 101cdc7fb8fSVladimir Kotal <groupId>org.jetbrains</groupId> 102cdc7fb8fSVladimir Kotal <artifactId>annotations</artifactId> 103cdc7fb8fSVladimir Kotal <scope>compile</scope> 104cdc7fb8fSVladimir Kotal </dependency> 1050170aac5SAdam Hornáček </dependencies> 1060170aac5SAdam Hornáček 107cb06a4bdSVladimir Kotal <build> 108cb06a4bdSVladimir Kotal <plugins> 10994e775beSVladimir Kotal <plugin> 11094e775beSVladimir Kotal <groupId>org.apache.maven.plugins</groupId> 111ced7bdbcSVladimir Kotal <artifactId>maven-checkstyle-plugin</artifactId> 112ced7bdbcSVladimir Kotal </plugin> 113ced7bdbcSVladimir Kotal <plugin> 114ced7bdbcSVladimir Kotal <groupId>org.apache.maven.plugins</groupId> 11594e775beSVladimir Kotal <artifactId>maven-surefire-plugin</artifactId> 11694e775beSVladimir Kotal <configuration> 11794e775beSVladimir Kotal <systemPropertyVariables> 11894e775beSVladimir Kotal <junit-force-all>true</junit-force-all> 11994e775beSVladimir Kotal </systemPropertyVariables> 1203db07792SVladimir Kotal <argLine> 1213db07792SVladimir Kotal @{surefireArgLine} 1223db07792SVladimir Kotal --illegal-access=permit 1233db07792SVladimir Kotal </argLine> 1243db07792SVladimir Kotal </configuration> 1253db07792SVladimir Kotal </plugin> 1263db07792SVladimir Kotal </plugins> 1273db07792SVladimir Kotal </build> 1283db07792SVladimir Kotal 129791845cdSKryštof Tulinger</project> 130