2019-10-31 21:43:47 -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"
2019-12-05 09:56:52 -05:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2019-10-31 21:43:47 -04:00
<modelVersion > 4.0.0</modelVersion>
<groupId > com.baeldung.stripe</groupId>
<artifactId > stripe</artifactId>
<version > 0.0.1-SNAPSHOT</version>
<name > stripe</name>
<packaging > jar</packaging>
2019-12-05 09:56:52 -05:00
<description > Demo project for Stripe API</description>
2019-10-31 21:43:47 -04:00
<parent >
<groupId > com.baeldung</groupId>
2019-12-05 09:56:52 -05:00
<artifactId > parent-boot-1</artifactId>
2019-10-31 21:43:47 -04:00
<version > 0.0.1-SNAPSHOT</version>
<relativePath > ../parent-boot-1</relativePath>
</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>
<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 -->
</dependency>
<dependency >
<groupId > com.stripe</groupId>
<artifactId > stripe-java</artifactId>
<version > ${stripe.version}</version>
</dependency>
</dependencies>
2019-12-05 09:56:52 -05:00
2019-10-31 21:43:47 -04:00
<properties >
<stripe.version > 4.2.0</stripe.version>
</properties>
</project>