Initial of an empty project with sub-projects
[demos/spring/conditional] / lib / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5   <modelVersion>4.0.0</modelVersion>
6
7   <parent>
8     <groupId>de.juplo.boot</groupId>
9     <artifactId>conditional</artifactId>
10     <version>1.0.0-SNAPSHOT</version>
11   </parent>
12
13   <groupId>de.juplo.boot</groupId>
14   <artifactId>conditional-lib</artifactId>
15   <version>1.0.0-SNAPSHOT</version>
16   <name>Conditional Annotations - Library</name>
17   <description>Experiments with Conditional Annotations</description>
18
19   <dependencies>
20     <dependency>
21       <groupId>org.springframework.boot</groupId>
22       <artifactId>spring-boot-autoconfigure</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.slf4j</groupId>
26       <artifactId>slf4j-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.projectlombok</groupId>
30       <artifactId>lombok</artifactId>
31     </dependency>
32   </dependencies>
33
34 </project>