Added integration tests back (and cleaned up poms). Integration tests can be trigger...
[aaa.git] / aaa-authn / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.aaa</groupId>
7         <artifactId>aaa.project</artifactId>
8         <version>0.1.0-SNAPSHOT</version>
9         <relativePath>../</relativePath>
10     </parent>
11
12     <artifactId>aaa-authn</artifactId>
13     <version>0.1.0-SNAPSHOT</version>
14     <packaging>bundle</packaging>
15
16     <dependencies>
17         <dependency>
18             <groupId>org.opendaylight.aaa</groupId>
19             <artifactId>aaa-authn-api</artifactId>
20             <version>${project.version}</version>
21         </dependency>
22         <dependency>
23             <groupId>org.slf4j</groupId>
24             <artifactId>slf4j-api</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>com.sun.jersey</groupId>
28             <artifactId>jersey-server</artifactId>
29             <scope>provided</scope>
30         </dependency>
31         <dependency>
32             <groupId>org.osgi</groupId>
33             <artifactId>org.osgi.core</artifactId>
34             <scope>provided</scope>
35         </dependency>
36         <dependency>
37             <groupId>org.osgi</groupId>
38             <artifactId>org.osgi.compendium</artifactId>
39             <scope>provided</scope>
40         </dependency>
41         <dependency>
42             <groupId>org.apache.felix</groupId>
43             <artifactId>org.apache.felix.dependencymanager</artifactId>
44             <scope>provided</scope>
45         </dependency>
46         <!-- Testing Dependencies -->
47         <dependency>
48             <groupId>junit</groupId>
49             <artifactId>junit</artifactId>
50             <scope>test</scope>
51         </dependency>
52         <dependency>
53             <groupId>org.slf4j</groupId>
54             <artifactId>slf4j-simple</artifactId>
55             <scope>test</scope>
56         </dependency>
57     </dependencies>
58
59     <build>
60         <plugins>
61             <plugin>
62                 <groupId>org.apache.felix</groupId>
63                 <artifactId>maven-bundle-plugin</artifactId>
64                 <extensions>true</extensions>
65                 <configuration>
66                     <instructions>
67                         <Bundle-Activator>org.opendaylight.aaa.Activator</Bundle-Activator>
68                     </instructions>
69                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
70                 </configuration>
71             </plugin>
72             <plugin>
73                 <groupId>org.codehaus.mojo</groupId>
74                 <artifactId>build-helper-maven-plugin</artifactId>
75                 <executions>
76                     <execution>
77                         <id>attach-artifacts</id>
78                         <phase>package</phase>
79                         <goals>
80                             <goal>attach-artifact</goal>
81                         </goals>
82                         <configuration>
83                             <artifacts>
84                                 <artifact>
85                                     <file>${project.build.directory}/classes/authn.cfg</file>
86                                     <type>cfg</type>
87                                     <classifier>config</classifier>
88                                 </artifact>
89                             </artifacts>
90                         </configuration>
91                     </execution>
92                 </executions>
93             </plugin>
94         </plugins>
95     </build>
96
97 </project>