2020-02-13 12:23:27 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2020-07-07 07:18:10 -04:00
|
|
|
<groupId>com.baeldung.spring-boot-modules</groupId>
|
|
|
|
<artifactId>spring-boot-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<relativePath>../</relativePath>
|
2020-02-13 12:23:27 -05:00
|
|
|
</parent>
|
2020-02-15 00:53:40 -05:00
|
|
|
|
2020-07-07 07:18:10 -04:00
|
|
|
<artifactId>spring-boot-annotations</artifactId>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<name>spring-boot-annotations</name>
|
|
|
|
|
2020-02-15 00:53:40 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
|
<artifactId>aspectjweaver</artifactId>
|
2020-07-07 07:18:10 -04:00
|
|
|
<version>${aspectjweaver.version}</version>
|
2020-02-15 00:53:40 -05:00
|
|
|
</dependency>
|
2020-02-17 01:30:36 -05:00
|
|
|
|
2020-02-15 00:53:40 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2020-04-11 14:31:36 -04:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-core</artifactId>
|
|
|
|
</dependency>
|
2020-02-15 00:53:40 -05:00
|
|
|
|
|
|
|
<!--Test -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2020-04-11 14:31:36 -04:00
|
|
|
|
2020-02-13 12:23:27 -05:00
|
|
|
</project>
|