xref: /OpenGrok/plugins/pom.xml (revision a22c2e0662949c2d18e8f714b39a91629492ec30)
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-->
24791845cdSKryštof Tulinger<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25791845cdSKryštof Tulinger  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    <groupId>org.opensolaris.opengrok</groupId>
28791845cdSKryštof Tulinger    <artifactId>plugins</artifactId>
29791845cdSKryštof Tulinger    <packaging>jar</packaging>
30*a22c2e06SVladimir Kotal    <version>1.1-rc23</version>
3194e775beSVladimir Kotal    <name>OpenGrok authorization plugins</name>
32791845cdSKryštof Tulinger
33791845cdSKryštof Tulinger    <parent>
34791845cdSKryštof Tulinger        <groupId>org.opensolaris.opengrok</groupId>
356ed99b2dSVladimir Kotal        <artifactId>opengrok-top</artifactId>
36*a22c2e06SVladimir Kotal        <version>1.1-rc23</version>
37791845cdSKryštof Tulinger    </parent>
38791845cdSKryštof Tulinger
39cb06a4bdSVladimir Kotal    <build>
40c29f361cSVladimir Kotal        <sourceDirectory>src</sourceDirectory>
41c29f361cSVladimir Kotal        <testSourceDirectory>test</testSourceDirectory>
4294e775beSVladimir Kotal
4394e775beSVladimir Kotal        <testResources>
4494e775beSVladimir Kotal            <testResource>
4594e775beSVladimir Kotal                <targetPath>opengrok/auth/plugin/</targetPath>
46c29f361cSVladimir Kotal                <directory>test/opengrok/auth/plugin/</directory>
4794e775beSVladimir Kotal                <excludes>
4894e775beSVladimir Kotal                    <exclude>*.java</exclude>
4994e775beSVladimir Kotal                </excludes>
5094e775beSVladimir Kotal            </testResource>
5194e775beSVladimir Kotal        </testResources>
52cb06a4bdSVladimir Kotal
53cb06a4bdSVladimir Kotal        <plugins>
5494e775beSVladimir Kotal          <plugin>
5594e775beSVladimir Kotal              <groupId>org.apache.maven.plugins</groupId>
5694e775beSVladimir Kotal              <artifactId>maven-surefire-plugin</artifactId>
5794e775beSVladimir Kotal              <configuration>
5894e775beSVladimir Kotal                  <systemPropertyVariables>
5994e775beSVladimir Kotal                      <junit-force-all>true</junit-force-all>
6094e775beSVladimir Kotal                  </systemPropertyVariables>
6194e775beSVladimir Kotal              </configuration>
6294e775beSVladimir Kotal          </plugin>
63cb06a4bdSVladimir Kotal        </plugins>
64cb06a4bdSVladimir Kotal    </build>
65cb06a4bdSVladimir Kotal
66791845cdSKryštof Tulinger    <dependencies>
67791845cdSKryštof Tulinger        <dependency>
68791845cdSKryštof Tulinger            <groupId>${project.groupId}</groupId>
696ed99b2dSVladimir Kotal            <artifactId>opengrok</artifactId>
70791845cdSKryštof Tulinger            <version>${project.version}</version>
71791845cdSKryštof Tulinger        </dependency>
72dce65990SVladimir Kotal        <dependency>
7394e775beSVladimir Kotal            <groupId>javax.servlet</groupId>
7494e775beSVladimir Kotal            <artifactId>servlet-api</artifactId>
7594e775beSVladimir Kotal        </dependency>
7694e775beSVladimir Kotal	<dependency>
77dce65990SVladimir Kotal	    <groupId>junit</groupId>
78dce65990SVladimir Kotal	    <artifactId>junit</artifactId>
79dce65990SVladimir Kotal	    <version>4.12</version>
8094e775beSVladimir Kotal            <scope>test</scope>
81dce65990SVladimir Kotal	</dependency>
82791845cdSKryštof Tulinger    </dependencies>
83791845cdSKryštof Tulinger
84791845cdSKryštof Tulinger</project>
85