]> git.argeo.org Git - lgpl/argeo-commons.git/blob - dep/org.argeo.dep.cms.sdk/pom.xml
Improve token authorisation
[lgpl/argeo-commons.git] / dep / org.argeo.dep.cms.sdk / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <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">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.commons</groupId>
6 <version>2.1.70-SNAPSHOT</version>
7 <artifactId>dep</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.dep.cms.sdk</artifactId>
11 <name>CMS SDK</name>
12 <dependencies>
13 <dependency>
14 <groupId>org.argeo.commons</groupId>
15 <artifactId>org.argeo.dep.cms.platform</artifactId>
16 <version>2.1.70-SNAPSHOT</version>
17 <type>pom</type>
18 </dependency>
19
20 <!-- ALM Third Parties -->
21 <dependency>
22 <groupId>org.argeo.tp.apache.ant</groupId>
23 <artifactId>org.apache.ant</artifactId>
24 </dependency>
25 <dependency>
26 <groupId>org.argeo.tp.apache.ant</groupId>
27 <artifactId>org.apache.ant.launch</artifactId>
28 </dependency>
29 <dependency>
30 <groupId>org.argeo.tp.sdk</groupId>
31 <artifactId>biz.aQute.bnd</artifactId>
32 </dependency>
33 <dependency>
34 <groupId>org.argeo.tp.sdk</groupId>
35 <artifactId>org.junit</artifactId>
36 </dependency>
37
38 <!-- SLC -->
39 <dependency>
40 <groupId>org.argeo.tp.sdk</groupId>
41 <artifactId>org.dbunit</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>org.argeo.tp.aether</groupId>
45 <artifactId>org.eclipse.aether.api</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>org.argeo.tp.aether</groupId>
49 <artifactId>org.eclipse.aether.spi</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>org.argeo.tp.aether</groupId>
53 <artifactId>org.eclipse.aether.util</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>org.argeo.tp.aether</groupId>
57 <artifactId>org.eclipse.aether.impl</artifactId>
58 </dependency>
59 <dependency>
60 <groupId>org.argeo.tp.aether</groupId>
61 <artifactId>org.eclipse.aether.connector.basic</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>org.argeo.tp.aether</groupId>
65 <artifactId>org.eclipse.aether.transport.classpath</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.argeo.tp.aether</groupId>
69 <artifactId>org.eclipse.aether.transport.file</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>org.argeo.tp.sdk</groupId>
73 <artifactId>org.redline-rpm</artifactId>
74 </dependency>
75 <!-- <dependency> -->
76 <!-- <groupId>org.argeo.tp.sdk</groupId> -->
77 <!-- <artifactId>org.tmatesoft.svnkit</artifactId> -->
78 <!-- </dependency> -->
79 <dependency>
80 <groupId>org.argeo.tp.misc</groupId>
81 <artifactId>com.googlecode.javaewah.JavaEWAH</artifactId>
82 </dependency>
83 <dependency>
84 <groupId>org.argeo.tp.misc</groupId>
85 <artifactId>org.eclipse.jgit</artifactId>
86 </dependency>
87
88 <!-- <dependency> -->
89 <!-- <groupId>org.argeo.tp.misc</groupId> -->
90 <!-- <artifactId>org.postgresql.postgresql</artifactId> -->
91 <!-- </dependency> -->
92 <!-- <dependency> -->
93 <!-- <groupId>org.argeo.tp.misc</groupId> -->
94 <!-- <artifactId>org.h2</artifactId> -->
95 <!-- </dependency> -->
96 </dependencies>
97
98 <profiles>
99 <profile>
100 <id>rpmbuild-tp</id>
101 <build>
102 <plugins>
103 <plugin>
104 <groupId>org.apache.maven.plugins</groupId>
105 <artifactId>maven-dependency-plugin</artifactId>
106 <executions>
107 <execution>
108 <id>copy-tp</id>
109 <phase>package</phase>
110 <goals>
111 <goal>copy-dependencies</goal>
112 </goals>
113 <configuration>
114 <includeTypes>jar</includeTypes>
115 <outputDirectory>${project.build.directory}/lib-tp</outputDirectory>
116 <excludeGroupIds>org.argeo.commons</excludeGroupIds>
117 <excludeTransitive>true</excludeTransitive>
118 <includeTypes>jar</includeTypes>
119 <includeScope>runtime</includeScope>
120 <useRepositoryLayout>true</useRepositoryLayout>
121 </configuration>
122 </execution>
123 </executions>
124 </plugin>
125 <plugin>
126 <groupId>org.codehaus.mojo</groupId>
127 <artifactId>rpm-maven-plugin</artifactId>
128 <executions>
129 <execution>
130 <id>rpm-tp</id>
131 <phase>package</phase>
132 <goals>
133 <goal>rpm</goal>
134 </goals>
135 <configuration>
136 <name>argeo-cms-sdk-tp</name>
137 <projversion>${version.argeo-distribution}</projversion>
138 <mappings>
139 <mapping>
140 <directory>/usr/share/osgi</directory>
141 <username>root</username>
142 <groupname>root</groupname>
143 <filemode>644</filemode>
144 <directoryIncluded>false</directoryIncluded>
145 <sources>
146 <source>
147 <location>${project.build.directory}/lib-tp</location>
148 <includes>
149 <include>**/*.jar</include>
150 </includes>
151 </source>
152 </sources>
153 </mapping>
154 </mappings>
155 <requires>
156 <require>argeo-cms-platform-tp</require>
157 </requires>
158 </configuration>
159 </execution>
160 </executions>
161 </plugin>
162 </plugins>
163 </build>
164 </profile>
165 </profiles>
166 </project>