]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
232244babea8d1dd7aad5a4bbca425c08ee9fd98
[gpl/argeo-slc.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 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 <parent>
5 <groupId>org.argeo.slc</groupId>
6 <artifactId>server</artifactId>
7 <version>0.13.1-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.server</groupId>
11 <artifactId>org.argeo.slc.ria</artifactId>
12 <packaging>jar</packaging>
13 <name>SLC RIA</name>
14 <build>
15 <resources>
16 <resource>
17 <directory>src</directory>
18 <includes>
19 <include>index.jsp</include>
20 <include>WEB-INF/*</include>
21 </includes>
22 </resource>
23 </resources>
24 <plugins>
25 <plugin>
26 <groupId>org.argeo.maven.plugins</groupId>
27 <artifactId>maven-argeo-qooxdoo-plugin</artifactId>
28 <version>${version.maven-argeo-qooxdoo}</version>
29 <configuration>
30 <sdkVersion>1.1.0</sdkVersion>
31 </configuration>
32 <executions>
33 <execution>
34 <id>env</id>
35 <phase>initialize</phase>
36 <goals>
37 <goal>env</goal>
38 </goals>
39 </execution>
40 <execution>
41 <id>env-site</id>
42 <phase>pre-site</phase>
43 <goals>
44 <goal>env</goal>
45 </goals>
46 </execution>
47 <execution>
48 <id>slc-source</id>
49 <phase>test</phase>
50 <goals>
51 <goal>generate</goal>
52 </goals>
53 <configuration>
54 <job>slc-source</job>
55 </configuration>
56 </execution>
57 <execution>
58 <id>slc-build</id>
59 <phase>test</phase>
60 <goals>
61 <goal>generate</goal>
62 </goals>
63 <configuration>
64 <job>slc-build</job>
65 </configuration>
66 </execution>
67 </executions>
68 </plugin>
69 <plugin>
70 <artifactId>maven-jar-plugin</artifactId>
71 </plugin>
72 <plugin>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>maven-bundle-plugin</artifactId>
75
76 <configuration>
77 <instructions>
78 <Import-Package>
79 javax.servlet,
80 javax.servlet.http,
81 javax.servlet.jsp,
82 javax.servlet.jsp.jstl.core,
83 javax.servlet.jsp.jstl.fmt,
84 javax.servlet.jsp.jstl.tlv,
85 javax.servlet.resources
86 </Import-Package>
87 <Web-ContextPath>org.argeo.slc.ria</Web-ContextPath>
88 </instructions>
89 </configuration>
90 <executions>
91 <execution>
92 <id>bundle-manifest</id>
93 <phase>process-classes</phase>
94 <goals>
95 <goal>manifest</goal>
96 </goals>
97 </execution>
98 </executions>
99 </plugin>
100 <plugin>
101 <groupId>org.apache.maven.plugins</groupId>
102 <artifactId>maven-dependency-plugin</artifactId>
103 <executions>
104 <execution>
105 <id>unpack-argeo-ria-sdk</id>
106 <phase>initialize</phase>
107 <goals>
108 <goal>unpack</goal>
109 </goals>
110 <configuration>
111 <artifactItems>
112 <artifactItem>
113 <groupId>org.argeo.ria</groupId>
114 <artifactId>org.argeo.ria.core</artifactId>
115 <version>${version.argeo-ria}</version>
116 <classifier>ria</classifier>
117 <type>zip</type>
118 <outputDirectory>src/argeo-ria-src</outputDirectory>
119 </artifactItem>
120 </artifactItems>
121 <overWriteReleases>true</overWriteReleases>
122 <overWriteSnapshots>true</overWriteSnapshots>
123 </configuration>
124 </execution>
125 </executions>
126 </plugin>
127 <plugin>
128 <groupId>org.apache.maven.plugins</groupId>
129 <artifactId>maven-assembly-plugin</artifactId>
130 <executions>
131 <execution>
132 <id>assembly-ria-slc</id>
133 <phase>package</phase>
134 <goals>
135 <goal>single</goal>
136 </goals>
137 <configuration>
138 <descriptors>
139 <descriptor>assembly/ria-slc.xml</descriptor>
140 </descriptors>
141 </configuration>
142 </execution>
143 <execution>
144 <id>assembly-ria-slc-web</id>
145 <phase>package</phase>
146 <goals>
147 <goal>single</goal>
148 </goals>
149 <configuration>
150 <descriptors>
151 <descriptor>assembly/ria-slc-web.xml</descriptor>
152 </descriptors>
153 </configuration>
154 </execution>
155 <execution>
156 <id>assembly-ria-jcr</id>
157 <phase>package</phase>
158 <goals>
159 <goal>single</goal>
160 </goals>
161 <configuration>
162 <descriptors>
163 <descriptor>assembly/ria-jcr.xml</descriptor>
164 </descriptors>
165 </configuration>
166 </execution>
167 </executions>
168 </plugin>
169 </plugins>
170 </build>
171 <dependencyManagement>
172 <dependencies>
173 <dependency>
174 <groupId>org.argeo.ria</groupId>
175 <artifactId>org.argeo.ria.core</artifactId>
176 <version>${version.argeo-ria}</version>
177 </dependency>
178 </dependencies>
179 </dependencyManagement>
180 </project>