1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2012-2013 Hippo B.V. (http://www.onehippo.com) |
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/xsd/maven-4.0.0.xsd"> |
18 |
<parent> |
19 |
<artifactId>hippo-addon-channel-manager</artifactId> |
20 |
<groupId>org.onehippo.cms7</groupId> |
21 |
<version>2.27.00-restyling-SNAPSHOT</version> |
22 |
</parent> |
23 |
<modelVersion>4.0.0</modelVersion> |
24 |
|
25 |
<artifactId>hippo-addon-channel-manager-frontend-api</artifactId> |
26 |
|
27 |
<name>Addon Channel Manager Frontend API</name> |
28 |
|
29 |
<dependencies> |
30 |
<dependency> |
31 |
<groupId>org.onehippo.cms7</groupId> |
32 |
<artifactId>hippo-cms-api</artifactId> |
33 |
</dependency> |
34 |
</dependencies> |
35 |
|
36 |
<build> |
37 |
<defaultGoal>package</defaultGoal> |
38 |
<plugins> |
39 |
<plugin> |
40 |
<groupId>org.codehaus.mojo</groupId> |
41 |
<artifactId>jslint-maven-plugin</artifactId> |
42 |
<configuration> |
43 |
<assumeConsoleAlertEtc>true</assumeConsoleAlertEtc> |
44 |
<predefinedVars> |
45 |
Ext, |
46 |
Hippo |
47 |
</predefinedVars> |
48 |
<sourceJsFolder>${basedir}/src/main/resources</sourceJsFolder> |
49 |
</configuration> |
50 |
</plugin> |
51 |
<plugin> |
52 |
<groupId>net.alchim31.maven</groupId> |
53 |
<artifactId>yuicompressor-maven-plugin</artifactId> |
54 |
<configuration> |
55 |
<aggregations> |
56 |
<!-- template composer API bundle --> |
57 |
<aggregation> |
58 |
<insertNewLine>true</insertNewLine> |
59 |
<includes> |
60 |
<include>${project.build.directory}/classes/org/onehippo/cms7/channelmanager/templatecomposer/PropertiesEditor.js</include> |
61 |
<include>${project.build.directory}/classes/org/onehippo/cms7/channelmanager/templatecomposer/PlainPropertiesEditor.js</include> |
62 |
<include>${project.build.directory}/classes/org/onehippo/cms7/channelmanager/templatecomposer/VariantAdder.js</include> |
63 |
<include>${project.build.directory}/classes/org/onehippo/cms7/channelmanager/templatecomposer/PlainVariantAdder.js</include> |
64 |
</includes> |
65 |
<output>${project.build.directory}/classes/org/onehippo/cms7/channelmanager/templatecomposer/template-composer-api-all.js</output> |
66 |
</aggregation> |
67 |
</aggregations> |
68 |
</configuration> |
69 |
</plugin> |
70 |
</plugins> |
71 |
</build> |
72 |
|
73 |
</project> |