]> git.argeo.org Git - lgpl/argeo-commons.git/blob - security/runtime/org.argeo.security.ria/pom.xml
Remove target files committed by mistake
[lgpl/argeo-commons.git] / security / runtime / org.argeo.security.ria / pom.xml
1 <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">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.commons.security</groupId>
5 <artifactId>runtime</artifactId>
6 <version>0.2.3-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.commons.security</groupId>
10 <artifactId>org.argeo.security.ria</artifactId>
11 <packaging>jar</packaging>
12 <name>Commons Security RIA</name>
13 <build>
14 <resources>
15 <resource>
16 <directory>src</directory>
17 <includes>
18 <include>index.jsp</include>
19 <include>WEB-INF/*</include>
20 </includes>
21 </resource>
22 </resources>
23 <plugins>
24 <plugin>
25 <groupId>org.argeo.maven.plugins</groupId>
26 <artifactId>maven-argeo-qooxdoo-plugin</artifactId>
27 <version>${version.maven-argeo-qooxdoo}</version>
28 <configuration>
29 <sdkVersion>1.1.0</sdkVersion>
30 </configuration>
31 <executions>
32 <execution>
33 <id>env</id>
34 <phase>initialize</phase>
35 <goals>
36 <goal>env</goal>
37 </goals>
38 </execution>
39 <execution>
40 <id>env-site</id>
41 <phase>pre-site</phase>
42 <goals>
43 <goal>env</goal>
44 </goals>
45 </execution>
46 <execution>
47 <id>slc-source</id>
48 <phase>test</phase>
49 <goals>
50 <goal>generate</goal>
51 </goals>
52 <configuration>
53 <job>slc-source</job>
54 </configuration>
55 </execution>
56 <execution>
57 <id>slc-build</id>
58 <phase>test</phase>
59 <goals>
60 <goal>generate</goal>
61 </goals>
62 <configuration>
63 <job>slc-build</job>
64 </configuration>
65 </execution>
66 </executions>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>maven-bundle-plugin</artifactId>
71 <version>${version.maven-bundle-plugin}</version>
72 <configuration>
73 <instructions>
74 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
75 <Bundle-Version>${project.version}-r${buildNumber}</Bundle-Version>
76 <Export-Package />
77 <Import-Package>
78 javax.servlet,
79 javax.servlet.http,
80 javax.servlet.jsp,
81 javax.servlet.jsp.jstl.core,
82 javax.servlet.jsp.jstl.fmt,
83 javax.servlet.jsp.jstl.tlv,
84 javax.servlet.resources
85 </Import-Package>
86 <Web-ContextPath>org.argeo.security.ria</Web-ContextPath>
87 </instructions>
88 </configuration>
89 <executions>
90 <execution>
91 <id>bundle-manifest</id>
92 <phase>process-classes</phase>
93 <goals>
94 <goal>manifest</goal>
95 </goals>
96 </execution>
97 </executions>
98 </plugin>
99 <plugin>
100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-dependency-plugin</artifactId>
102 <executions>
103 <execution>
104 <id>unpack-argeo-ria-sdk</id>
105 <phase>initialize</phase>
106 <goals>
107 <goal>unpack</goal>
108 </goals>
109 <configuration>
110 <artifactItems>
111 <artifactItem>
112 <groupId>org.argeo.ria</groupId>
113 <artifactId>org.argeo.ria.core</artifactId>
114 <classifier>ria</classifier>
115 <type>zip</type>
116 <outputDirectory>src/argeo-ria-src</outputDirectory>
117 </artifactItem>
118 </artifactItems>
119 <overWriteReleases>false</overWriteReleases>
120 <overWriteSnapshots>true</overWriteSnapshots>
121 </configuration>
122 </execution>
123 </executions>
124 </plugin>
125 <plugin>
126 <groupId>org.apache.maven.plugins</groupId>
127 <artifactId>maven-assembly-plugin</artifactId>
128 <executions>
129 <execution>
130 <id>assembly-ria</id>
131 <phase>package</phase>
132 <goals>
133 <goal>single</goal>
134 </goals>
135 <configuration>
136 <descriptors>
137 <descriptor>assembly/ria-security.xml</descriptor>
138 </descriptors>
139 </configuration>
140 </execution>
141 </executions>
142 </plugin>
143 </plugins>
144 </build>
145 <dependencyManagement>
146 <dependencies>
147 <dependency>
148 <groupId>org.argeo.ria</groupId>
149 <artifactId>org.argeo.ria.core</artifactId>
150 <version>${version.argeo-ria}</version>
151 </dependency>
152 </dependencies>
153 </dependencyManagement>
154 </project>