blob: 5711d440ef4f1391d3b3e54a1ecd34b5b41cb0f2 [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>
13 <properties>
14 <!-- Jetty Version set by oParent -->
15 <tomcat.version>8.5.23</tomcat.version>
16 </properties>
17
18 <dependencies>
19 <!-- needs to be first to avoid jar signer implications for servlet api -->
20 <dependency>
21 <groupId>org.eclipse.jetty</groupId>
22 <artifactId>jetty-webapp</artifactId>
23 <version>${project.jettyVersion}</version>
24 </dependency>
25
26 <dependency>
27 <groupId>org.apache.tomcat.embed</groupId>
28 <artifactId>tomcat-embed-jasper</artifactId>
29 <version>${tomcat.version}</version>
30 </dependency>
31 <dependency>
32 <groupId>org.apache.tomcat.embed</groupId>
33 <artifactId>tomcat-embed-core</artifactId>
34 <version>${tomcat.version}</version>
35 </dependency>
36 <dependency>
37 <groupId>org.apache.tomcat.embed</groupId>
38 <artifactId>tomcat-embed-jasper</artifactId>
39 <version>${tomcat.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.apache.tomcat</groupId>
43 <artifactId>tomcat-jasper</artifactId>
44 <version>${tomcat.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.apache.tomcat</groupId>
48 <artifactId>tomcat-jasper-el</artifactId>
49 <version>${tomcat.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.tomcat</groupId>
53 <artifactId>tomcat-jsp-api</artifactId>
54 <version>${tomcat.version}</version>
55 </dependency>
56
57 <dependency>
58 <groupId>org.onap.aaf.authz</groupId>
59 <artifactId>aaf-cadi-aaf</artifactId>
60 <version>${project.version}</version>
61 </dependency>
62
63 </dependencies>
64 <build>
65 <pluginManagement>
66 <plugins>
67 <plugin>
68 <inherited>true</inherited>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-compiler-plugin</artifactId>
71 <version>3.1</version>
72 <configuration>
73 <source>1.7</source>
74 <target>1.7</target>
75 </configuration>
76 </plugin>
77 <plugin>
78 <groupId>org.apache.maven.plugins</groupId>
79 <version>2.4</version>
80 <artifactId>maven-jar-plugin</artifactId>
81 <configuration>
82 <outputDirectory>target</outputDirectory>
83 <archive>
84 <manifestEntries>
85 <Sealed>true</Sealed>
86 </manifestEntries>
87 </archive>
88 </configuration>
89 </plugin>
90 </plugins>
91 </pluginManagement>
92 </build>
93</project>