forked from oaeproject/3akai-ux
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
203 lines (202 loc) · 7.76 KB
/
pom.xml
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
* Licensed to the Sakai Foundation (SF) under one * or more contributor license agreements. See
the NOTICE file * distributed with this work for additional information * regarding copyright
ownership. The SF licenses this file * to you under the Apache License, Version 2.0 (the *
"License"); you may not use this file except in compliance * with the License. You may obtain a
copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by
applicable law or agreed to in writing, * software distributed under the License is distributed
on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or
implied. See the License for the * specific language governing permissions and limitations under
the License.
-->
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sakaiproject.nakamura</groupId>
<artifactId>base</artifactId>
<version>0.9</version>
</parent>
<groupId>org.sakaiproject.nakamura</groupId>
<artifactId>org.sakaiproject.nakamura.uxloader</artifactId>
<packaging>bundle</packaging>
<version>0.6.0-SNAPSHOT</version>
<name>Sakai 3 UX Loader</name>
<description>Loads the Sakai 3 UI into the JCR</description>
<url>http://github.com/sakaiproject/3akai-ux</url>
<scm>
<connection>scm:git:git://github.com/sakaiproject/3akai-ux.git</connection>
<developerConnection>scm:git:git://[email protected]/sakaiproject/3akai-ux.git</developerConnection>
<url>http://github.com/sakaiproject/3akai-ux/</url>
</scm>
<issueManagement>
<system>jira</system>
<url>http://jira.sakaiproject.org/jira/browse/SAKIII</url>
</issueManagement>
<distributionManagement>
<downloadUrl>http://source.sakaiproject.org/maven2/</downloadUrl>
<snapshotRepository>
<uniqueVersion>false</uniqueVersion>
<id>sakai-maven-snapshots-scp</id>
<name>Sakai snapshot Repo</name>
<url>scp://source.sakaiproject.org/var/www/html/maven2-snapshots</url>
<layout>default</layout>
</snapshotRepository>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>sakai-maven2-scp</id>
<name>Sakai maven2 repository</name>
<url>scp://source.sakaiproject.org/var/www/html/maven2</url>
<layout>default</layout>
</repository>
<site>
<id>sakai-site</id>
<name>Sakai release Site</name>
<url>scp://source.sakaiproject.org/var/www/html/release/nakamura/${project.version}</url>
</site>
</distributionManagement>
<repositories>
<repository>
<id>sakai-maven2</id>
<name>Sakai Maven Repository</name>
<layout>default</layout>
<url>http://source.sakaiproject.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>sakai-maven2-snapshots</id>
<name>Sakai Maven Repo Snapshots</name>
<layout>default</layout>
<url>http://source.sakaiproject.org/maven2-snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>default</id>
<name>Maven Repository Switchboard</name>
<layout>default</layout>
<url>http://repo1.maven.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>apache-snapshots</id>
<name>Apache Snapshot Repository</name>
<url>http://repository.apache.org/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
<properties>
<ant.target>development</ant.target>
<dev.content>
SLING-INF/content/tests;path:=/tests,
SLING-INF/content/jsdoc;path:=/jsdoc,
</dev.content>
</properties>
<profiles>
<profile>
<id>sakai-release</id>
<!-- Begin workaround for maven-bundle-plugin 2.0.1 ignoring processed resources. -->
<properties>
<ant.target>release</ant.target>
<dev.content></dev.content>
</properties>
</profile>
</profiles>
<build>
<resources>
<resource>
<directory>target/processed-resources</directory>
<targetPath>SLING-INF/content</targetPath>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Sling-Initial-Content>
SLING-INF/content/dev;path:=/dev;ignoreImportProviders:="xml,json,html,jar,zip";uninstall:=false,
SLING-INF/content/devwidgets;path:=/devwidgets;ignoreImportProviders:="xml,json,html,jar,zip";uninstall:=false,
SLING-INF/content/var/templates/site;path:=/var/templates/site;uninstall:=false,
SLING-INF/content/var/ux-version;path:=/var/ux-version;uninstall:=false;overwriteProperties:=true,
SLING-INF/content/apps;path:=/apps;uninstall:=false,
${dev.content}
SLING-INF/content/root;path:=/;uninstall:=false
</Sling-Initial-Content>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.3</version>
<executions>
<execution>
<!-- Should be process-resources but that is blocked by the maven-bundle-plugin bug. -->
<id>generate-resources</id>
<phase>generate-resources</phase>
<configuration>
<tasks>
<ant target="${ant.target}" inheritRefs="true" antfile="./build.xml" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>initialize</phase>
<configuration>
<tasks>
<exec outputproperty="git.version" executable="git" failifexecutionfails="false" searchpath="true" >
<arg line="describe" />
</exec>
<condition property="git.version.value" value="${git.version}" else="UnknownVersion" >
<isset property="git.version" />
</condition>
<echo file="${basedir}/target/scm-version.properties" >
scm.version=${git.version.value}
</echo>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>