]> git.argeo.org Git - lgpl/argeo-commons.git/blob - dep/org.argeo.security.dep.node/pom.xml
Use char array for password
[lgpl/argeo-commons.git] / dep / org.argeo.security.dep.node / 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.14-SNAPSHOT</version>
7 <artifactId>dep</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.security.dep.node</artifactId>
11 <name>Node Backend</name>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.felix</groupId>
16 <artifactId>maven-bundle-plugin</artifactId>
17 <configuration>
18 <instructions>
19 <SLC-ModularDistribution>default</SLC-ModularDistribution>
20 </instructions>
21 </configuration>
22 </plugin>
23 <plugin>
24 <groupId>org.argeo.maven.plugins</groupId>
25 <artifactId>maven-argeo-osgi-plugin</artifactId>
26 <executions>
27 <execution>
28 <id>generate-descriptors</id>
29 <goals>
30 <goal>descriptors</goal>
31 </goals>
32 <phase>generate-resources</phase>
33 </execution>
34 </executions>
35 </plugin>
36 </plugins>
37 </build>
38 <dependencies>
39 <!-- Third Parties -->
40 <dependency>
41 <groupId>org.argeo.tp</groupId>
42 <artifactId>argeo-tp</artifactId>
43 <version>${version.argeo-distribution}</version>
44 </dependency>
45
46 <!-- Default JCR repositories configurations -->
47 <!-- <dependency> -->
48 <!-- <groupId>org.argeo.commons</groupId> -->
49 <!-- <artifactId>org.argeo.node.repo.jackrabbit</artifactId> -->
50 <!-- <version>2.1.13-SNAPSHOT</version> -->
51 <!-- </dependency> -->
52
53 <!-- OSGi Boot (and Equinox) -->
54 <dependency>
55 <groupId>org.argeo.commons</groupId>
56 <artifactId>org.argeo.osgi.boot</artifactId>
57 <version>2.1.14-SNAPSHOT</version>
58 </dependency>
59
60 <!-- Argeo Security -->
61 <dependency>
62 <groupId>org.argeo.commons</groupId>
63 <artifactId>org.argeo.security.core</artifactId>
64 <version>2.1.14-SNAPSHOT</version>
65 </dependency>
66
67 <!-- Jackrabbit -->
68 <dependency>
69 <groupId>org.argeo.commons</groupId>
70 <artifactId>org.argeo.server.jackrabbit</artifactId>
71 <version>2.1.14-SNAPSHOT</version>
72 </dependency>
73 <dependency>
74 <groupId>org.argeo.commons</groupId>
75 <artifactId>org.argeo.security.jackrabbit</artifactId>
76 <version>2.1.14-SNAPSHOT</version>
77 </dependency>
78
79 <!-- Security (Jackrabbit) -->
80 <!-- <dependency> -->
81 <!-- <groupId>org.argeo.commons</groupId> -->
82 <!-- <artifactId>org.argeo.security.dao.jackrabbit</artifactId> -->
83 <!-- <version>2.1.13-SNAPSHOT</version> -->
84 <!-- </dependency> -->
85 </dependencies>
86 <profiles>
87 <profile>
88 <id>check-osgi</id>
89 <build>
90 <plugins>
91 <plugin>
92 <groupId>org.argeo.maven.plugins</groupId>
93 <artifactId>maven-argeo-osgi-plugin</artifactId>
94 <executions>
95 <execution>
96 <id>check-osgi</id>
97 <phase>test</phase>
98 <goals>
99 <goal>equinox</goal>
100 </goals>
101 <configuration>
102 <onlyCheck>true</onlyCheck>
103 </configuration>
104 </execution>
105 </executions>
106 </plugin>
107 </plugins>
108 </build>
109 </profile>
110 </profiles>
111 </project>