blob: 34c3dc48fb3d4d08f909096cb526e1a552c68164 [file] [log] [blame]
Instrumental824dc7b2018-09-07 11:41:35 -05001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <parent>
4 <groupId>org.onap.aaf.authz</groupId>
5 <artifactId>cadiparent</artifactId>
6 <relativePath>..</relativePath>
7 <version>2.1.2-SNAPSHOT</version>
8 </parent>
9 <modelVersion>4.0.0</modelVersion>
10 <name>CADI Servlet Sample (Test Only)</name>
11 <artifactId>aaf-cadi-servlet-sample</artifactId>
12 <packaging>jar</packaging>
Instrumental824dc7b2018-09-07 11:41:35 -050013 <dependencies>
14 <!-- needs to be first to avoid jar signer implications for servlet api -->
15 <dependency>
16 <groupId>org.eclipse.jetty</groupId>
17 <artifactId>jetty-webapp</artifactId>
18 <version>${project.jettyVersion}</version>
19 </dependency>
20
Instrumental824dc7b2018-09-07 11:41:35 -050021 <dependency>
22 <groupId>org.onap.aaf.authz</groupId>
23 <artifactId>aaf-cadi-aaf</artifactId>
Instrumental824dc7b2018-09-07 11:41:35 -050024 </dependency>
25
26 </dependencies>
27 <build>
28 <pluginManagement>
29 <plugins>
30 <plugin>
31 <inherited>true</inherited>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-compiler-plugin</artifactId>
34 <version>3.1</version>
35 <configuration>
36 <source>1.7</source>
37 <target>1.7</target>
38 </configuration>
39 </plugin>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <version>2.4</version>
43 <artifactId>maven-jar-plugin</artifactId>
44 <configuration>
45 <outputDirectory>target</outputDirectory>
46 <archive>
47 <manifestEntries>
48 <Sealed>true</Sealed>
49 </manifestEntries>
50 </archive>
51 </configuration>
52 </plugin>
53 </plugins>
54 </pluginManagement>
55 </build>
56</project>