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 21791845cdSKryštof TulingerCopyright (c) 2016, Oracle and/or its affiliates. All rights reserved. 22791845cdSKryštof Tulinger 23791845cdSKryštof Tulinger--> 240170aac5SAdam 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"> 25791845cdSKryštof Tulinger <modelVersion>4.0.0</modelVersion> 26791845cdSKryštof Tulinger 27791845cdSKryštof Tulinger <parent> 2856f072caSAdam Hornáček <groupId>org.opengrok</groupId> 296ed99b2dSVladimir Kotal <artifactId>opengrok-top</artifactId> 30f23ad945SVladimir Kotal <version>1.2.9</version> 31791845cdSKryštof Tulinger </parent> 32791845cdSKryštof Tulinger 330170aac5SAdam Hornáček <artifactId>plugins</artifactId> 34f23ad945SVladimir Kotal <version>1.2.9</version> 350170aac5SAdam Hornáček <packaging>jar</packaging> 360170aac5SAdam Hornáček 370170aac5SAdam Hornáček <name>OpenGrok authorization plugins</name> 380170aac5SAdam Hornáček 390170aac5SAdam Hornáček <dependencies> 400170aac5SAdam Hornáček <dependency> 410170aac5SAdam Hornáček <groupId>${project.groupId}</groupId> 42bb76b0b8SAdam Hornáček <artifactId>opengrok</artifactId> 430170aac5SAdam Hornáček <version>${project.version}</version> 440170aac5SAdam Hornáček </dependency> 450170aac5SAdam Hornáček <dependency> 460170aac5SAdam Hornáček <groupId>javax.servlet</groupId> 47e393cb49SAdam Hornáček <artifactId>javax.servlet-api</artifactId> 480170aac5SAdam Hornáček </dependency> 490170aac5SAdam Hornáček <dependency> 50*5f96ffbeSDalibor Skrobak <groupId>org.junit.jupiter</groupId> 51*5f96ffbeSDalibor Skrobak <artifactId>junit-jupiter-engine</artifactId> 52*5f96ffbeSDalibor Skrobak <scope>test</scope> 53*5f96ffbeSDalibor Skrobak </dependency> 54*5f96ffbeSDalibor Skrobak <dependency> 55*5f96ffbeSDalibor Skrobak <groupId>org.junit.vintage</groupId> 56*5f96ffbeSDalibor Skrobak <artifactId>junit-vintage-engine</artifactId> 570170aac5SAdam Hornáček <scope>test</scope> 580170aac5SAdam Hornáček </dependency> 59806e34baSVladimir Kotal <dependency> 60806e34baSVladimir Kotal <groupId>org.glassfish.jersey.core</groupId> 61806e34baSVladimir Kotal <artifactId>jersey-client</artifactId> 62806e34baSVladimir Kotal <version>${jersey.version}</version> 63806e34baSVladimir Kotal </dependency> 64806e34baSVladimir Kotal <dependency> 65806e34baSVladimir Kotal <groupId>org.glassfish.jersey.media</groupId> 66806e34baSVladimir Kotal <artifactId>jersey-media-json-jackson</artifactId> 67806e34baSVladimir Kotal <version>${jersey.version}</version> 68806e34baSVladimir Kotal </dependency> 69806e34baSVladimir Kotal <dependency> 70806e34baSVladimir Kotal <groupId>org.glassfish.jersey.inject</groupId> 71806e34baSVladimir Kotal <artifactId>jersey-hk2</artifactId> 72806e34baSVladimir Kotal <version>${jersey.version}</version> 73806e34baSVladimir Kotal </dependency> 74c55d651aSVladimir Kotal <dependency> 75c55d651aSVladimir Kotal <groupId>org.glassfish.jersey.test-framework.providers</groupId> 76c55d651aSVladimir Kotal <artifactId>jersey-test-framework-provider-grizzly2</artifactId> 77c55d651aSVladimir Kotal <version>${jersey.version}</version> 78c55d651aSVladimir Kotal <scope>test</scope> 79c55d651aSVladimir Kotal </dependency> 800170aac5SAdam Hornáček </dependencies> 810170aac5SAdam Hornáček 82cb06a4bdSVladimir Kotal <build> 83c29f361cSVladimir Kotal <sourceDirectory>src</sourceDirectory> 84c29f361cSVladimir Kotal <testSourceDirectory>test</testSourceDirectory> 8594e775beSVladimir Kotal 8694e775beSVladimir Kotal <testResources> 8794e775beSVladimir Kotal <testResource> 8894e775beSVladimir Kotal <targetPath>opengrok/auth/plugin/</targetPath> 89c29f361cSVladimir Kotal <directory>test/opengrok/auth/plugin/</directory> 9094e775beSVladimir Kotal <excludes> 9194e775beSVladimir Kotal <exclude>*.java</exclude> 9294e775beSVladimir Kotal </excludes> 9394e775beSVladimir Kotal </testResource> 9494e775beSVladimir Kotal </testResources> 95cb06a4bdSVladimir Kotal 96cb06a4bdSVladimir Kotal <plugins> 9794e775beSVladimir Kotal <plugin> 9894e775beSVladimir Kotal <groupId>org.apache.maven.plugins</groupId> 99ced7bdbcSVladimir Kotal <artifactId>maven-checkstyle-plugin</artifactId> 100ced7bdbcSVladimir Kotal </plugin> 101ced7bdbcSVladimir Kotal <plugin> 102ced7bdbcSVladimir Kotal <groupId>org.apache.maven.plugins</groupId> 10394e775beSVladimir Kotal <artifactId>maven-surefire-plugin</artifactId> 10494e775beSVladimir Kotal <configuration> 10594e775beSVladimir Kotal <systemPropertyVariables> 10694e775beSVladimir Kotal <junit-force-all>true</junit-force-all> 10794e775beSVladimir Kotal </systemPropertyVariables> 1083db07792SVladimir Kotal <argLine>@{surefireArgLine}</argLine> 10994e775beSVladimir Kotal </configuration> 11094e775beSVladimir Kotal </plugin> 111cb06a4bdSVladimir Kotal </plugins> 112cb06a4bdSVladimir Kotal </build> 113cb06a4bdSVladimir Kotal 1143db07792SVladimir Kotal <profiles> 1153db07792SVladimir Kotal <profile> 1163db07792SVladimir Kotal <id>java9plus</id> 1173db07792SVladimir Kotal <activation> 1183db07792SVladimir Kotal <jdk>[9,18]</jdk> 1193db07792SVladimir Kotal </activation> 1203db07792SVladimir Kotal <build> 1213db07792SVladimir Kotal <plugins> 1223db07792SVladimir Kotal <plugin> 1233db07792SVladimir Kotal <groupId>org.apache.maven.plugins</groupId> 1243db07792SVladimir Kotal <artifactId>maven-surefire-plugin</artifactId> 1253db07792SVladimir Kotal <configuration> 1263db07792SVladimir Kotal <argLine> 1273db07792SVladimir Kotal @{surefireArgLine} 1283db07792SVladimir Kotal --illegal-access=permit 1293db07792SVladimir Kotal </argLine> 1303db07792SVladimir Kotal </configuration> 1313db07792SVladimir Kotal </plugin> 1323db07792SVladimir Kotal </plugins> 1333db07792SVladimir Kotal </build> 1343db07792SVladimir Kotal </profile> 1353db07792SVladimir Kotal </profiles> 1363db07792SVladimir Kotal 137791845cdSKryštof Tulinger</project> 138