Cross Reference: /forgerock/opendj2/pom.xml
pom.xml revision 25f72e2845c89a153ca9d3279d7feccbc912524e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
0N/A<?xml version="1.0" encoding="UTF-8"?>
2362N/A<!--
0N/A ! CDDL HEADER START
0N/A !
0N/A ! The contents of this file are subject to the terms of the
0N/A ! Common Development and Distribution License, Version 1.0 only
2362N/A ! (the "License"). You may not use this file except in compliance
0N/A ! with the License.
2362N/A !
0N/A ! You can obtain a copy of the license at
0N/A ! trunk/opendj3/legal-notices/CDDLv1_0.txt
0N/A ! or http://forgerock.org/license/CDDLv1.0.html.
0N/A ! See the License for the specific language governing permissions
0N/A ! and limitations under the License.
0N/A !
0N/A ! When distributing Covered Code, include this CDDL HEADER in each
0N/A ! file and include the License file at
0N/A ! trunk/opendj3/legal-notices/CDDLv1_0.txt. If applicable,
0N/A ! add the following below this CDDL HEADER, with the fields enclosed
0N/A ! by brackets "[]" replaced with your own identifying information:
2362N/A ! Portions Copyright [yyyy] [name of copyright owner]
2362N/A !
2362N/A ! CDDL HEADER END
0N/A !
0N/A ! Copyright 2011 ForgeRock AS
0N/A !
0N/A-->
0N/A<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
0N/A xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
0N/A
0N/A <!-- This is Maven build file is just a hack in order to leverage
0N/A Maven's site generation capabilities. It duplicates version information,
0N/A and the Ant build is not split into phases: we just do it in one single
0N/A blast during the compile phase -->
0N/A
0N/A <modelVersion>4.0.0</modelVersion>
0N/A <parent>
0N/A <groupId>org.forgerock.opendj</groupId>
0N/A <artifactId>opendj-project</artifactId>
0N/A <version>3.0.0-SNAPSHOT</version>
0N/A </parent>
0N/A <artifactId>opendj-server</artifactId>
0N/A <version>2.5.0-SNAPSHOT</version>
0N/A <packaging>pom</packaging>
0N/A <name>OpenDJ Directory Server</name>
0N/A <description>
0N/A OpenDJ is a new LDAPv3 compliant directory service, developed for the Java
0N/A platform, providing a high performance, highly available and secure store
0N/A for the identities managed by enterprises.
0N/A </description>
0N/A <scm>
0N/A <url>https://svn.forgerock.org/opendj/trunk/opends/</url>
0N/A <connection>scm:svn:https://svn.forgerock.org/opendj/trunk/opends/</connection>
0N/A <developerConnection>scm:svn:https://svn.forgerock.org/opendj/trunk/opends/</developerConnection>
0N/A <tag>HEAD</tag>
0N/A </scm>
0N/A <ciManagement>
0N/A <system>jenkins</system>
0N/A <url>http://builds.forgerock.org/job/OpenDJ%20-%20trunk%20-%20postcommit</url>
0N/A <notifiers>
0N/A <notifier>
0N/A <type>mail</type>
0N/A <sendOnError>true</sendOnError>
0N/A <sendOnFailure>true</sendOnFailure>
0N/A <sendOnSuccess>false</sendOnSuccess>
0N/A <sendOnWarning>false</sendOnWarning>
0N/A <address>opendj-dev@forgerock.org</address>
0N/A </notifier>
0N/A </notifiers>
0N/A </ciManagement>
0N/A <properties>
0N/A <ant.home>ext/ant</ant.home>
0N/A </properties>
0N/A <build>
0N/A <directory>build</directory>
0N/A <plugins>
0N/A <plugin>
0N/A <artifactId>maven-antrun-plugin</artifactId>
0N/A <version>1.6</version>
0N/A <executions>
0N/A <execution>
0N/A <id>clean</id>
0N/A <phase>clean</phase>
0N/A <goals>
0N/A <goal>run</goal>
0N/A </goals>
0N/A <configuration>
0N/A <target>
0N/A <ant target="clean" />
0N/A </target>
0N/A </configuration>
0N/A </execution>
0N/A <execution>
0N/A <id>compile</id>
0N/A <phase>compile</phase>
0N/A <goals>
0N/A <goal>run</goal>
0N/A </goals>
0N/A <configuration>
0N/A <target>
0N/A <!-- We need to significantly refactor build.xml in order
0N/A to split this up any more -->
0N/A <ant target="precommit" />
0N/A </target>
0N/A </configuration>
0N/A </execution>
0N/A </executions>
0N/A </plugin>
0N/A <plugin>
0N/A <groupId>org.apache.maven.plugins</groupId>
0N/A <artifactId>maven-assembly-plugin</artifactId>
0N/A <version>2.2</version>
0N/A <executions>
0N/A <execution>
0N/A <id>make-assembly</id>
0N/A <phase>package</phase>
0N/A <goals>
0N/A <goal>single</goal>
0N/A </goals>
0N/A <configuration>
0N/A <appendAssemblyId>false</appendAssemblyId>
0N/A <descriptors>
0N/A <descriptor>src/main/assembly/descriptor.xml</descriptor>
0N/A </descriptors>
0N/A </configuration>
0N/A </execution>
0N/A </executions>
0N/A </plugin>
0N/A </plugins>
0N/A </build>
0N/A</project>
0N/A