blob: 80c2cb69614d19f6c6a044eabbd7eba22e14df5b [file] [log] [blame]
Chetan Mehrotra7c086462013-03-22 06:43:52 +00001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <parent>
8 <groupId>org.apache.felix</groupId>
9 <artifactId>felix-parent</artifactId>
10 <version>2.1</version>
11 <relativePath>../../../pom/pom.xml</relativePath>
12 </parent>
13
14 <groupId>org.apache.felix.example</groupId>
15 <artifactId>org.apache.felix.example.jaas.lm-config</artifactId>
16 <version>0.0.1-SNAPSHOT</version>
17 <packaging>bundle</packaging>
18
19 <name>JAAS Example - Config based Login Module</name>
20
21 <build>
22 <plugins>
23 <plugin>
24 <groupId>org.apache.felix</groupId>
25 <artifactId>maven-bundle-plugin</artifactId>
26 <version>2.3.5</version>
27 <extensions>true</extensions>
28 <configuration>
29 <obrRepository>NONE</obrRepository>
30 <instructions>
31 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
32 <Jaas-ModuleClass>org.apache.felix.example.jaas.config.internal.SampleConfigLoginModule</Jaas-ModuleClass>
33 </instructions>
34 </configuration>
35 </plugin>
36
37 <plugin>
38 <groupId>org.apache.maven.plugins</groupId>
39 <artifactId>maven-compiler-plugin</artifactId>
40 <version>2.5.1</version>
41 <configuration>
42 <source>1.6</source>
43 <target>1.6</target>
44 </configuration>
45 </plugin>
46 </plugins>
47 </build>
48
49
50
51</project>