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