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