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