]> git.argeo.org Git - lgpl/argeo-commons.git/blob - dep/org.argeo.dep.cms.sdk/pom.xml
Improve integration of authentication.
[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.84-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 <!-- Parent dependencies -->
14 <dependency>
15 <groupId>org.argeo.commons</groupId>
16 <artifactId>org.argeo.dep.cms.e4.rap</artifactId>
17 <version>2.1.84-SNAPSHOT</version>
18 <type>pom</type>
19 </dependency>
20
21 <!-- ALM Third Parties -->
22 <!-- <dependency> -->
23 <!-- <groupId>org.argeo.tp.apache.ant</groupId> -->
24 <!-- <artifactId>org.apache.ant</artifactId> -->
25 <!-- </dependency> -->
26 <!-- <dependency> -->
27 <!-- <groupId>org.argeo.tp.apache.ant</groupId> -->
28 <!-- <artifactId>org.apache.ant.launch</artifactId> -->
29 <!-- </dependency> -->
30
31 <dependency>
32 <groupId>org.argeo.tp.sdk</groupId>
33 <artifactId>biz.aQute.bndlib</artifactId>
34 </dependency>
35 <dependency>
36 <groupId>org.argeo.tp.sdk</groupId>
37 <artifactId>org.junit</artifactId>
38 </dependency>
39 <dependency>
40 <groupId>org.argeo.tp.sdk</groupId>
41 <artifactId>org.redline-rpm</artifactId>
42 </dependency>
43 <dependency>
44 <groupId>org.argeo.tp.misc</groupId>
45 <artifactId>com.googlecode.javaewah.JavaEWAH</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>org.argeo.tp.misc</groupId>
49 <artifactId>org.eclipse.jgit</artifactId>
50 </dependency>
51 </dependencies>
52
53 <profiles>
54 <profile>
55 <id>rpmbuild-tp</id>
56 <build>
57 <plugins>
58 <plugin>
59 <artifactId>maven-assembly-plugin</artifactId>
60 <executions>
61 <execution>
62 <id>prepare-source-tp</id>
63 <phase>package</phase>
64 <goals>
65 <goal>single</goal>
66 </goals>
67 <configuration>
68 <descriptorRefs>
69 <descriptorRef>a2-source-tp</descriptorRef>
70 </descriptorRefs>
71 </configuration>
72 </execution>
73 </executions>
74 </plugin>
75 <!-- <plugin> -->
76 <!-- <groupId>org.apache.maven.plugins</groupId> -->
77 <!-- <artifactId>maven-dependency-plugin</artifactId> -->
78 <!-- <executions> -->
79 <!-- <execution> -->
80 <!-- <id>copy-tp</id> -->
81 <!-- <phase>package</phase> -->
82 <!-- <goals> -->
83 <!-- <goal>copy-dependencies</goal> -->
84 <!-- </goals> -->
85 <!-- <configuration> -->
86 <!-- <includeTypes>jar</includeTypes> -->
87 <!-- <outputDirectory>${project.build.directory}/lib-tp</outputDirectory> -->
88 <!-- <excludeGroupIds>org.argeo.commons</excludeGroupIds> -->
89 <!-- <excludeTransitive>true</excludeTransitive> -->
90 <!-- <excludeArtifactIds>org.argeo.dep.cms.platform</excludeArtifactIds> -->
91 <!-- <includeTypes>jar</includeTypes> -->
92 <!-- <includeScope>runtime</includeScope> -->
93 <!-- <useRepositoryLayout>true</useRepositoryLayout> -->
94 <!-- </configuration> -->
95 <!-- </execution> -->
96 <!-- </executions> -->
97 <!-- </plugin> -->
98 <plugin>
99 <groupId>org.codehaus.mojo</groupId>
100 <artifactId>rpm-maven-plugin</artifactId>
101 <executions>
102 <execution>
103 <id>rpm-tp</id>
104 <phase>package</phase>
105 <goals>
106 <goal>rpm</goal>
107 </goals>
108 <configuration>
109 <name>argeo-cms-sdk-tp</name>
110 <projversion>${version.argeo-tp}</projversion>
111 <mappings>
112 <mapping>
113 <directory>/usr/share/osgi</directory>
114 <username>root</username>
115 <groupname>root</groupname>
116 <filemode>644</filemode>
117 <directoryIncluded>false</directoryIncluded>
118 <sources>
119 <source>
120 <location>${project.build.directory}/${project.artifactId}-${project.version}-a2-source-tp</location>
121 <includes>
122 <include>**/*.jar</include>
123 </includes>
124 </source>
125 </sources>
126 </mapping>
127 </mappings>
128 <requires>
129 <require>argeo-cms-platform-tp</require>
130 </requires>
131 </configuration>
132 </execution>
133 </executions>
134 </plugin>
135 </plugins>
136 </build>
137 </profile>
138 </profiles>
139 </project>