46 lines
1.5 KiB
XML
46 lines
1.5 KiB
XML
![]() |
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>com.iluwatar</groupId>
|
||
|
<artifactId>java-design-patterns</artifactId>
|
||
|
<version>1.20.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<artifactId>component-object</artifactId>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
<scope>compile</scope>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<artifactId>commons-logging</artifactId>
|
||
|
<groupId>commons-logging</groupId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.github.bonigarcia</groupId>
|
||
|
<artifactId>webdrivermanager</artifactId>
|
||
|
<version>1.4.6</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
<version>1.4.1.RELEASE</version>
|
||
|
<scope>import</scope>
|
||
|
<type>pom</type>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
</project>
|