logging spring-boot to 1.5.15 for tomcat/embed CLM
[logging-analytics.git] / reference / logging-slf4j-demo / pom.xml
1 <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/xsd/maven-4.0.0.xsd">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4       <groupId>org.onap.logging-analytics</groupId>
5       <artifactId>logging-reference</artifactId>
6       <version>1.2.6-SNAPSHOT</version>
7       <relativePath>..</relativePath>
8     </parent>   
9     <artifactId>logging-slf4j-demo</artifactId>
10     <name>logging-slf4j-demo</name>
11     <packaging>war</packaging>
12     <properties>
13         <!-- from 1.5.10 to not pull in spring 4.3.14/5.0.5 override of 5.0.9
14              however 4.3.17 of spring-core over 4.3.14 is not enough - need 4.3.18+
15              tomcat-embed-core 8.5.31 needs 8.5.32+ - which spring-boot 1.5.15 brings in
16              spring-expression 4.3.14 goes to 4.3.17 under 1.5.15
17          -->
18         <springframework.boot.version>1.5.15.RELEASE</springframework.boot.version>
19     </properties>
20
21     <dependencies>
22         <dependency>
23             <groupId>${project.groupId}</groupId>
24             <artifactId>logging-slf4j</artifactId>
25             <version>1.2.6-SNAPSHOT</version>
26         </dependency>
27         <dependency>
28             <groupId>org.springframework.boot</groupId>
29             <artifactId>spring-boot-starter-web</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.apache.commons</groupId>
33             <artifactId>commons-lang3</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.slf4j</groupId>
37             <artifactId>slf4j-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>ch.qos.logback</groupId>
41             <artifactId>logback-classic</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>com.mashape.unirest</groupId>
45             <artifactId>unirest-java</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>com.google.code.gson</groupId>
49             <artifactId>gson</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.springframework</groupId>
53             <artifactId>spring-test</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.testng</groupId>
57             <artifactId>testng</artifactId>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>org.hamcrest</groupId>
62             <artifactId>hamcrest-all</artifactId>
63             <scope>test</scope>
64         </dependency>
65     </dependencies>
66
67     <dependencyManagement>
68         <dependencies>
69             <dependency>
70                 <groupId>org.springframework.boot</groupId>
71                 <artifactId>spring-boot-dependencies</artifactId>
72                 <version>${springframework.boot.version}</version>
73                 <type>pom</type>
74                 <scope>import</scope>
75             </dependency>
76             <dependency>
77                 <groupId>org.apache.commons</groupId>
78                 <artifactId>commons-lang3</artifactId>
79                 <version>3.4</version>
80             </dependency>
81             <dependency>
82                 <groupId>org.slf4j</groupId>
83                 <artifactId>slf4j-api</artifactId>
84                 <version>1.7.25</version>
85             </dependency>
86             <dependency>
87                 <groupId>ch.qos.logback</groupId>
88                 <artifactId>logback-classic</artifactId>
89                 <version>1.2.3</version>
90             </dependency>
91             <dependency>
92                 <groupId>com.mashape.unirest</groupId>
93                 <artifactId>unirest-java</artifactId>
94                 <version>1.4.9</version>
95             </dependency>
96             <dependency>
97                 <groupId>org.testng</groupId>
98                 <artifactId>testng</artifactId>
99                 <version>6.8.5</version>
100             </dependency>
101             <dependency>
102                 <groupId>org.hamcrest</groupId>
103                 <artifactId>hamcrest-all</artifactId>
104                 <version>1.3</version>
105             </dependency>
106             <dependency>
107                 <groupId>org.springframework</groupId>
108                 <artifactId>spring-test</artifactId>
109                 <version>5.0.5.RELEASE</version>
110             </dependency>
111         </dependencies>
112     </dependencyManagement>
113
114     <build>
115         <plugins>
116             <plugin>
117                 <artifactId>maven-war-plugin</artifactId>
118                 <configuration/>
119             </plugin>
120             <plugin>
121                 <groupId>org.apache.maven.plugins</groupId>
122                 <artifactId>maven-compiler-plugin</artifactId>
123                 <version>3.7.0</version>
124                 <configuration>
125                     <source>1.8</source>
126                     <target>1.8</target>
127                 </configuration>
128             </plugin>
129             <plugin>
130                 <groupId>org.springframework.boot</groupId>
131                 <artifactId>spring-boot-maven-plugin</artifactId>
132                 <version>${springframework.boot.version}</version>
133                 <executions>
134                     <execution>
135                         <goals>
136                             <goal>repackage</goal>
137                         </goals>
138                     </execution>
139                 </executions>
140             </plugin>
141         </plugins>
142     </build>
143
144 </project>