Created
April 23, 2020 15:34
-
-
Save yogonza524/5b99fbc254b8bdb0e7a0039a01300ce0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
id 'org.springframework.boot' version '2.3.0.M4' | |
id 'io.spring.dependency-management' version '1.0.9.RELEASE' | |
id 'java' | |
} | |
group = 'com.mp' | |
version = '0.0.1-SNAPSHOT' | |
sourceCompatibility = '11' | |
repositories { | |
mavenCentral() | |
maven { url 'https://repo.spring.io/milestone' } | |
} | |
dependencies { | |
implementation 'org.springframework.boot:spring-boot-starter-web' | |
compile group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf', version: '2.2.6.RELEASE' | |
implementation 'net.sourceforge.nekohtml:nekohtml:1.9.21' | |
testImplementation('org.springframework.boot:spring-boot-starter-test') { | |
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine' | |
} | |
compile group: 'com.mercadopago', name: 'dx-java', version: '1.5.2' | |
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.6' | |
} | |
test { | |
useJUnitPlatform() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment