2017-04-20 08:52:42 -04: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"
2018-07-12 03:04:54 -04:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2017-04-20 08:52:42 -04:00
<modelVersion > 4.0.0</modelVersion>
<groupId > com.baeldung.stripe</groupId>
<artifactId > stripe</artifactId>
<version > 0.0.1-SNAPSHOT</version>
<name > Stripe</name>
<description > Demo project for Stripe API</description>
2019-02-09 15:17:19 -05:00
<packaging > jar</packaging>
2017-04-20 08:52:42 -04:00
<parent >
2018-06-08 14:04:03 -04:00
<artifactId > parent-boot-1</artifactId>
2017-05-14 12:01:35 -04:00
<groupId > com.baeldung</groupId>
<version > 0.0.1-SNAPSHOT</version>
2018-06-08 14:04:03 -04:00
<relativePath > ../parent-boot-1</relativePath>
2017-04-20 08:52:42 -04:00
</parent>
<dependencies >
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-web</artifactId>
</dependency>
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency >
<groupId > org.projectlombok</groupId>
<artifactId > lombok</artifactId>
2018-07-12 03:04:54 -04:00
<version > ${lombok.version}</version>
<!-- version is explicit here because the one provided with the current spring - boot - starter - parent has a bug in NetBeans; can be removed if spring - boot - starter - parent is
upgraded -->
2017-04-20 08:52:42 -04:00
</dependency>
<dependency >
<groupId > com.stripe</groupId>
<artifactId > stripe-java</artifactId>
2018-07-12 03:04:54 -04:00
<version > ${stripe.version}</version>
2017-04-20 08:52:42 -04:00
</dependency>
</dependencies>
2018-07-12 03:04:54 -04:00
<properties >
<stripe.version > 4.2.0</stripe.version>
</properties>
2017-04-20 08:52:42 -04:00
</project>