]> git.argeo.org Git - gpl/argeo-slc.git/blob - dep/org.argeo.slc.dep.e4.rap/pom.xml
[maven-release-plugin] prepare for next development iteration
[gpl/argeo-slc.git] / dep / org.argeo.slc.dep.e4.rap / 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.slc</groupId>
5 <artifactId>dep</artifactId>
6 <version>2.1.14-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.slc.dep.e4.rap</artifactId>
10 <name>SLC E4 RAP</name>
11 <build>
12 <plugins>
13 <plugin>
14 <groupId>org.apache.felix</groupId>
15 <artifactId>maven-bundle-plugin</artifactId>
16 <configuration>
17 <instructions>
18 <SLC-ModularDistribution>default</SLC-ModularDistribution>
19 </instructions>
20 </configuration>
21 </plugin>
22 <plugin>
23 <groupId>org.argeo.maven.plugins</groupId>
24 <artifactId>maven-argeo-osgi-plugin</artifactId>
25 <executions>
26 <execution>
27 <id>generate-descriptors</id>
28 <goals>
29 <goal>descriptors</goal>
30 </goals>
31 <phase>generate-resources</phase>
32 </execution>
33 </executions>
34 </plugin>
35 </plugins>
36 </build>
37 <dependencies>
38 <!-- Parent dependencies -->
39 <dependency>
40 <groupId>org.argeo.commons</groupId>
41 <artifactId>org.argeo.dep.cms.e4.rap</artifactId>
42 <version>${version.argeo-commons}</version>
43 </dependency>
44 <dependency>
45 <groupId>org.argeo.slc</groupId>
46 <artifactId>org.argeo.slc.dep.minimal</artifactId>
47 <version>2.1.14-SNAPSHOT</version>
48 </dependency>
49
50
51 <dependency>
52 <groupId>org.argeo.slc</groupId>
53 <artifactId>org.argeo.slc.e4</artifactId>
54 <version>2.1.14-SNAPSHOT</version>
55 </dependency>
56 <!-- SLC Libs -->
57 <!-- <dependency> -->
58 <!-- <groupId>org.argeo.slc</groupId> -->
59 <!-- <artifactId>org.argeo.slc.lib.repo</artifactId> -->
60 <!-- <version>1.1.14-SNAPSHOT</version> -->
61 <!-- </dependency> -->
62 <!-- <dependency> -->
63 <!-- <groupId>org.argeo.slc</groupId> -->
64 <!-- <artifactId>org.argeo.slc.lib.jcr</artifactId> -->
65 <!-- <version>1.1.14-SNAPSHOT</version> -->
66 <!-- </dependency> -->
67
68 <!-- Extensions <dependency> <groupId>org.argeo.slc</groupId> <artifactId>org.argeo.slc.support</artifactId>
69 <version>2.1.13-SNAPSHOT</version> </dependency> -->
70 <!-- UI <dependency> <groupId>org.argeo.slc</groupId> <artifactId>org.argeo.slc.client.ui</artifactId>
71 <version>2.1.13-SNAPSHOT</version> </dependency> <dependency> <groupId>org.argeo.slc</groupId>
72 <artifactId>org.argeo.slc.client.ui.dist</artifactId> <version>2.1.13-SNAPSHOT</version>
73 </dependency> <dependency> <groupId>org.argeo.slc</groupId> <artifactId>org.argeo.slc.client.rap</artifactId>
74 <version>2.1.13-SNAPSHOT</version> </dependency> -->
75
76 <!-- For target platform generation <dependency> <groupId>org.argeo.slc</groupId>
77 <artifactId>org.argeo.slc.unit</artifactId> <version>2.1.13-SNAPSHOT</version>
78 <scope>test</scope> </dependency> -->
79 </dependencies>
80 <profiles>
81 <profile>
82 <id>rpmbuild</id>
83 <build>
84 <plugins>
85 <plugin>
86 <groupId>org.apache.maven.plugins</groupId>
87 <artifactId>maven-dependency-plugin</artifactId>
88 <executions>
89 <execution>
90 <id>copy-argeo</id>
91 <phase>package</phase>
92 <goals>
93 <goal>copy-dependencies</goal>
94 </goals>
95 <configuration>
96 <includeTypes>jar</includeTypes>
97 <outputDirectory>${project.build.directory}/lib-argeo</outputDirectory>
98 <includeGroupIds>org.argeo.slc</includeGroupIds>
99 <excludeTransitive>true</excludeTransitive>
100 <excludeArtifactIds>org.argeo.slc.dep.minimal</excludeArtifactIds>
101 <includeTypes>jar</includeTypes>
102 <includeScope>runtime</includeScope>
103 <useRepositoryLayout>true</useRepositoryLayout>
104 </configuration>
105 </execution>
106 <!-- <execution> -->
107 <!-- <id>copy-argeo-self</id> -->
108 <!-- <phase>package</phase> -->
109 <!-- <goals> -->
110 <!-- <goal>copy</goal> -->
111 <!-- </goals> -->
112 <!-- <configuration> -->
113 <!-- <outputDirectory>${project.build.directory}/lib-argeo</outputDirectory> -->
114 <!-- <useRepositoryLayout>true</useRepositoryLayout> -->
115 <!-- <artifactItems> -->
116 <!-- <artifactItem> -->
117 <!-- <groupId>${project.groupId}</groupId> -->
118 <!-- <artifactId>${project.artifactId}</artifactId> -->
119 <!-- <version>${project.version}</version> -->
120 <!-- <outputDirectory>${project.build.directory}/lib-argeo</outputDirectory> -->
121 <!-- </artifactItem> -->
122 <!-- </artifactItems> -->
123 <!-- </configuration> -->
124 <!-- </execution> -->
125 </executions>
126 </plugin>
127 <plugin>
128 <groupId>org.codehaus.mojo</groupId>
129 <artifactId>rpm-maven-plugin</artifactId>
130 <executions>
131 <execution>
132 <id>rpm-argeo</id>
133 <phase>package</phase>
134 <goals>
135 <goal>rpm</goal>
136 </goals>
137 <configuration>
138 <name>slc-e4-rap</name>
139 <mappings>
140 <mapping>
141 <directory>/usr/share/osgi</directory>
142 <username>root</username>
143 <groupname>root</groupname>
144 <filemode>644</filemode>
145 <directoryIncluded>true</directoryIncluded>
146 <sources>
147 <source>
148 <location>${project.build.directory}/lib-argeo</location>
149 <includes>
150 <include>**/*.jar</include>
151 </includes>
152 </source>
153 </sources>
154 </mapping>
155 <mapping>
156 <directory>/usr/share/osgi/org/argeo/slc/${project.artifactId}/${project.version}</directory>
157 <username>root</username>
158 <groupname>root</groupname>
159 <directoryIncluded>false</directoryIncluded>
160 <artifact />
161 </mapping>
162 </mappings>
163 <requires>
164 <require>argeo-cms-e4-rap</require>
165 <require>slc-agent</require>
166 </requires>
167 </configuration>
168 </execution>
169 </executions>
170 </plugin>
171 </plugins>
172 </build>
173 </profile>
174 </profiles>
175 </project>