xref: /OpenGrok/plugins/pom.xml (revision cb06a4bdf4000cdf481c47f5bb270f80c4d9e6a3)
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>
3054556231SVladimir Kotal    <version>1.1-SNAPSHOT</version>
31791845cdSKryštof Tulinger    <name>OpenGrok Sample Plugins</name>
32791845cdSKryštof Tulinger
33791845cdSKryštof Tulinger    <parent>
34791845cdSKryštof Tulinger        <groupId>org.opensolaris.opengrok</groupId>
35791845cdSKryštof Tulinger        <artifactId>opengrok</artifactId>
36ace62994SVladimir Kotal        <version>1.1-SNAPSHOT</version>
37791845cdSKryštof Tulinger    </parent>
38791845cdSKryštof Tulinger
39*cb06a4bdSVladimir Kotal    <build>
40*cb06a4bdSVladimir Kotal        <sourceDirectory>.</sourceDirectory>
41*cb06a4bdSVladimir Kotal
42*cb06a4bdSVladimir Kotal        <plugins>
43*cb06a4bdSVladimir Kotal          <plugin>
44*cb06a4bdSVladimir Kotal            <artifactId>maven-compiler-plugin</artifactId>
45*cb06a4bdSVladimir Kotal            <version>2.0.2</version>
46*cb06a4bdSVladimir Kotal            <configuration>
47*cb06a4bdSVladimir Kotal              <includes>
48*cb06a4bdSVladimir Kotal                <include>**/LdapPlugin/src/**</include>
49*cb06a4bdSVladimir Kotal                <include>**/UserPlugin/src/**</include>
50*cb06a4bdSVladimir Kotal                <include>*Plugin.java</include>
51*cb06a4bdSVladimir Kotal              </includes>
52*cb06a4bdSVladimir Kotal            </configuration>
53*cb06a4bdSVladimir Kotal          </plugin>
54*cb06a4bdSVladimir Kotal        </plugins>
55*cb06a4bdSVladimir Kotal    </build>
56*cb06a4bdSVladimir Kotal
57791845cdSKryštof Tulinger    <dependencies>
58791845cdSKryštof Tulinger        <dependency>
59791845cdSKryštof Tulinger            <groupId>${project.groupId}</groupId>
60791845cdSKryštof Tulinger            <artifactId>opengrok-indexer</artifactId>
61791845cdSKryštof Tulinger            <version>${project.version}</version>
62791845cdSKryštof Tulinger        </dependency>
63dce65990SVladimir Kotal	<dependency>
64dce65990SVladimir Kotal	    <groupId>junit</groupId>
65dce65990SVladimir Kotal	    <artifactId>junit</artifactId>
66dce65990SVladimir Kotal	    <version>4.12</version>
67dce65990SVladimir Kotal	</dependency>
68791845cdSKryštof Tulinger    </dependencies>
69791845cdSKryštof Tulinger
70791845cdSKryštof Tulinger</project>
71