1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2007-2008 Hippo. |
4 |
|
5 |
Licensed under the Apache License, Version 2.0 (the "License"); |
6 |
you may not use this file except in compliance with the License. |
7 |
You may obtain a copy of the License at |
8 |
|
9 |
http://www.apache.org/licenses/LICENSE-2.0 |
10 |
|
11 |
Unless required by applicable law or agreed to in writing, software |
12 |
distributed under the License is distributed on an "AS IS" BASIS, |
13 |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
14 |
See the License for the specific language governing permissions and |
15 |
limitations under the License. |
16 |
--> |
17 |
<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"> |
18 |
<modelVersion>4.0.0</modelVersion> |
19 |
|
20 |
<parent> |
21 |
<groupId>org.onehippo.jcr.console</groupId> |
22 |
<artifactId>jcr-repo-console</artifactId> |
23 |
<version>1.01.00-SNAPSHOT</version> |
24 |
</parent> |
25 |
|
26 |
<name>JCR Repository Console Plugins</name> |
27 |
<description>JCR Repository Console Plugins - console and login / logout</description> |
28 |
<artifactId>jcr-repo-console-plugins</artifactId> |
29 |
|
30 |
<packaging>jar</packaging> |
31 |
|
32 |
<dependencies> |
33 |
<!-- FIXME: this dependency MUST ABSOLUTELY be removed before next GA release --> |
34 |
<dependency> |
35 |
<groupId>org.apache.jackrabbit</groupId> |
36 |
<artifactId>jackrabbit-core</artifactId> |
37 |
<version>2.2.5-h3</version> |
38 |
<scope>provided</scope> |
39 |
</dependency> |
40 |
<dependency> |
41 |
<groupId>org.onehippo.jcr.console</groupId> |
42 |
<artifactId>jcr-repo-console-api</artifactId> |
43 |
<version>${project.version}</version> |
44 |
</dependency> |
45 |
|
46 |
<dependency> |
47 |
<groupId>xerces</groupId> |
48 |
<artifactId>xercesImpl</artifactId> |
49 |
<version>${xerces.version}</version> |
50 |
</dependency> |
51 |
|
52 |
<!-- test --> |
53 |
<dependency> |
54 |
<groupId>junit</groupId> |
55 |
<artifactId>junit</artifactId> |
56 |
<scope>test</scope> |
57 |
</dependency> |
58 |
<dependency> |
59 |
<groupId>org.onehippo.jcr.console</groupId> |
60 |
<artifactId>jcr-repo-console-engine</artifactId> |
61 |
<version>${project.version}</version> |
62 |
<scope>test</scope> |
63 |
</dependency> |
64 |
</dependencies> |
65 |
|
66 |
<build> |
67 |
<defaultGoal>package</defaultGoal> |
68 |
<resources> |
69 |
<resource> |
70 |
<filtering>false</filtering> |
71 |
<directory>${basedir}/src/main/java</directory> |
72 |
<includes> |
73 |
<include>**/*.html</include> |
74 |
<include>**/*.js</include> |
75 |
<include>**/*.css</include> |
76 |
<include>**/*.png</include> |
77 |
<include>**/*.gif</include> |
78 |
<include>**/*.properties</include> |
79 |
</includes> |
80 |
</resource> |
81 |
<resource> |
82 |
<filtering>false</filtering> |
83 |
<directory>${basedir}/src/main/resources</directory> |
84 |
<includes> |
85 |
<include>**/*.cnd</include> |
86 |
<include>**/*.xml</include> |
87 |
</includes> |
88 |
</resource> |
89 |
</resources> |
90 |
<testResources> |
91 |
<testResource> |
92 |
<filtering>false</filtering> |
93 |
<directory>${basedir}/src/test/java</directory> |
94 |
<includes> |
95 |
<include>**</include> |
96 |
</includes> |
97 |
<excludes> |
98 |
<exclude>**/*.java</exclude> |
99 |
</excludes> |
100 |
</testResource> |
101 |
<testResource> |
102 |
<filtering>false</filtering> |
103 |
<directory>${basedir}/src/test/resources</directory> |
104 |
<includes> |
105 |
<include>**</include> |
106 |
</includes> |
107 |
</testResource> |
108 |
</testResources> |
109 |
<plugins> |
110 |
<plugin> |
111 |
<groupId>org.apache.maven.plugins</groupId> |
112 |
<artifactId>maven-surefire-plugin</artifactId> |
113 |
<configuration> |
114 |
<forkMode>always</forkMode> |
115 |
<workingDirectory>${project.build.directory}</workingDirectory> |
116 |
</configuration> |
117 |
</plugin> |
118 |
<plugin> |
119 |
<groupId>org.apache.maven.plugins</groupId> |
120 |
<artifactId>maven-jar-plugin</artifactId> |
121 |
<configuration> |
122 |
<archive> |
123 |
<manifest> |
124 |
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
125 |
</manifest> |
126 |
</archive> |
127 |
</configuration> |
128 |
</plugin> |
129 |
</plugins> |
130 |
</build> |
131 |
|
132 |
</project> |