xref: /OpenGrok/plugins/pom.xml (revision 791845cde7800275068baf6b57bbf4343e035828)
1*791845cdSKryštof Tulinger<?xml version="1.0" encoding="UTF-8"?>
2*791845cdSKryštof Tulinger<!--
3*791845cdSKryštof Tulinger
4*791845cdSKryštof TulingerCDDL HEADER START
5*791845cdSKryštof Tulinger
6*791845cdSKryštof TulingerThe contents of this file are subject to the terms of the
7*791845cdSKryštof TulingerCommon Development and Distribution License (the "License").
8*791845cdSKryštof TulingerYou may not use this file except in compliance with the License.
9*791845cdSKryštof Tulinger
10*791845cdSKryštof TulingerSee LICENSE.txt included in this distribution for the specific
11*791845cdSKryštof Tulingerlanguage governing permissions and limitations under the License.
12*791845cdSKryštof Tulinger
13*791845cdSKryštof TulingerWhen distributing Covered Code, include this CDDL HEADER in each
14*791845cdSKryštof Tulingerfile and include the License file at LICENSE.txt.
15*791845cdSKryštof TulingerIf applicable, add the following below this CDDL HEADER, with the
16*791845cdSKryštof Tulingerfields enclosed by brackets "[]" replaced with your own identifying
17*791845cdSKryštof Tulingerinformation: Portions Copyright [yyyy] [name of copyright owner]
18*791845cdSKryštof Tulinger
19*791845cdSKryštof TulingerCDDL HEADER END
20*791845cdSKryštof Tulinger
21*791845cdSKryštof TulingerCopyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
22*791845cdSKryštof Tulinger
23*791845cdSKryštof Tulinger-->
24*791845cdSKryštof Tulinger<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25*791845cdSKryštof Tulinger  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
26*791845cdSKryštof Tulinger    <modelVersion>4.0.0</modelVersion>
27*791845cdSKryštof Tulinger    <groupId>org.opensolaris.opengrok</groupId>
28*791845cdSKryštof Tulinger    <artifactId>plugins</artifactId>
29*791845cdSKryštof Tulinger    <packaging>jar</packaging>
30*791845cdSKryštof Tulinger    <version>0.13-SNAPSHOT</version>
31*791845cdSKryštof Tulinger    <name>OpenGrok Sample Plugins</name>
32*791845cdSKryštof Tulinger
33*791845cdSKryštof Tulinger    <parent>
34*791845cdSKryštof Tulinger        <groupId>org.opensolaris.opengrok</groupId>
35*791845cdSKryštof Tulinger        <artifactId>opengrok</artifactId>
36*791845cdSKryštof Tulinger        <version>0.13-SNAPSHOT</version>
37*791845cdSKryštof Tulinger    </parent>
38*791845cdSKryštof Tulinger
39*791845cdSKryštof Tulinger    <dependencies>
40*791845cdSKryštof Tulinger        <dependency>
41*791845cdSKryštof Tulinger            <groupId>${project.groupId}</groupId>
42*791845cdSKryštof Tulinger            <artifactId>opengrok-indexer</artifactId>
43*791845cdSKryštof Tulinger            <version>${project.version}</version>
44*791845cdSKryštof Tulinger        </dependency>
45*791845cdSKryštof Tulinger    </dependencies>
46*791845cdSKryštof Tulinger
47*791845cdSKryštof Tulinger</project>
48