1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<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"> |
3 |
<modelVersion>4.0.0</modelVersion> |
4 |
|
5 |
<parent> |
6 |
<groupId>org.onehippo.forge</groupId> |
7 |
<artifactId>rating</artifactId> |
8 |
<version>1.01.00-SNAPSHOT</version> |
9 |
</parent> |
10 |
|
11 |
<name>Rating Editor Plugin</name> |
12 |
<description>Rating Editor Plugin</description> |
13 |
<groupId>org.onehippo.forge</groupId> |
14 |
<artifactId>rating-addon</artifactId> |
15 |
<packaging>jar</packaging> |
16 |
|
17 |
<dependencies> |
18 |
<dependency> |
19 |
<groupId>org.hippoecm</groupId> |
20 |
<artifactId>hippo-ecm-addon-editor-frontend</artifactId> |
21 |
</dependency> |
22 |
<dependency> |
23 |
<groupId>org.hippoecm</groupId> |
24 |
<artifactId>hippo-ecm-frontend-engine</artifactId> |
25 |
</dependency> |
26 |
|
27 |
<!-- testing --> |
28 |
<dependency> |
29 |
<groupId>org.hippoecm</groupId> |
30 |
<artifactId>hippo-ecm-frontend-engine-test</artifactId> |
31 |
<version>${hippoecm.version}</version> |
32 |
<scope>test</scope> |
33 |
</dependency> |
34 |
<dependency> |
35 |
<groupId>org.hippoecm</groupId> |
36 |
<artifactId>hippo-ecm-repository-engine</artifactId> |
37 |
<version>${hippoecm.version}</version> |
38 |
<scope>test</scope> |
39 |
</dependency> |
40 |
<dependency> |
41 |
<groupId>org.slf4j</groupId> |
42 |
<artifactId>slf4j-log4j12</artifactId> |
43 |
<scope>test</scope> |
44 |
</dependency> |
45 |
<dependency> |
46 |
<groupId>junit</groupId> |
47 |
<artifactId>junit</artifactId> |
48 |
<version>4.4</version> |
49 |
<scope>test</scope> |
50 |
</dependency> |
51 |
|
52 |
<!-- provided --> |
53 |
<dependency> |
54 |
<groupId>javax.servlet</groupId> |
55 |
<artifactId>servlet-api</artifactId> |
56 |
<scope>provided</scope> |
57 |
</dependency> |
58 |
|
59 |
<!-- Testing needs a JTA implementation --> |
60 |
<dependency> |
61 |
<groupId>com.atomikos</groupId> |
62 |
<artifactId>transactions-api</artifactId> |
63 |
<scope>test</scope> |
64 |
</dependency> |
65 |
<dependency> |
66 |
<groupId>com.atomikos</groupId> |
67 |
<artifactId>transactions</artifactId> |
68 |
<scope>test</scope> |
69 |
</dependency> |
70 |
<dependency> |
71 |
<groupId>com.atomikos</groupId> |
72 |
<artifactId>transactions-jta</artifactId> |
73 |
<scope>test</scope> |
74 |
</dependency> |
75 |
<dependency> |
76 |
<groupId>com.atomikos</groupId> |
77 |
<artifactId>atomikos-util</artifactId> |
78 |
<scope>test</scope> |
79 |
</dependency> |
80 |
<dependency> |
81 |
<groupId>org.apache.geronimo.specs</groupId> |
82 |
<artifactId>geronimo-jta_1.1_spec</artifactId> |
83 |
<scope>provided</scope> |
84 |
</dependency> |
85 |
</dependencies> |
86 |
|
87 |
<build> |
88 |
<defaultGoal>install</defaultGoal> |
89 |
<resources> |
90 |
<resource> |
91 |
<filtering>false</filtering> |
92 |
<directory>${basedir}/src/main/java</directory> |
93 |
<includes> |
94 |
<include>**/*.html</include> |
95 |
<include>**/*.css</include> |
96 |
</includes> |
97 |
</resource> |
98 |
<resource> |
99 |
<filtering>false</filtering> |
100 |
<directory>${basedir}/src/main/resources</directory> |
101 |
<includes> |
102 |
<include>**/*.xml</include> |
103 |
</includes> |
104 |
</resource> |
105 |
</resources> |
106 |
<plugins> |
107 |
<plugin> |
108 |
<groupId>org.apache.maven.plugins</groupId> |
109 |
<artifactId>maven-compiler-plugin</artifactId> |
110 |
<configuration> |
111 |
<source>1.5</source> |
112 |
<target>1.5</target> |
113 |
</configuration> |
114 |
</plugin> |
115 |
</plugins> |
116 |
</build> |
117 |
|
118 |
|
119 |
<profiles> |
120 |
<profile> |
121 |
<id>tests</id> |
122 |
<activation> |
123 |
<activeByDefault>true</activeByDefault> |
124 |
</activation> |
125 |
<dependencies> |
126 |
<dependency> |
127 |
<groupId>org.hippoecm</groupId> |
128 |
<artifactId>hippo-ecm-frontend-engine-test</artifactId> |
129 |
<version>${hippoecm.version}</version> |
130 |
<type>jar</type> |
131 |
<classifier>tests</classifier> |
132 |
<scope>test</scope> |
133 |
<optional>true</optional> |
134 |
</dependency> |
135 |
<dependency> |
136 |
<groupId>org.hippoecm</groupId> |
137 |
<artifactId>hippo-ecm-repository-engine</artifactId> |
138 |
<version>${hippoecm.version}</version> |
139 |
<type>jar</type> |
140 |
<classifier>tests</classifier> |
141 |
<scope>test</scope> |
142 |
<optional>true</optional> |
143 |
</dependency> |
144 |
</dependencies> |
145 |
</profile> |
146 |
</profiles> |
147 |
|
148 |
</project> |