Skip to content

Instantly share code, notes, and snippets.

@vacax
Last active May 31, 2019 22:00
Show Gist options
  • Save vacax/ffe71785521420c1539dfe13ae913963 to your computer and use it in GitHub Desktop.
Save vacax/ffe71785521420c1539dfe13ae913963 to your computer and use it in GitHub Desktop.
Clase_31052019 - gradle
plugins {
id 'java'
id 'application'
}
group 'edu.pucmm'
version '1.0-SNAPSHOT'
mainClassName = "edu.pucmm.hmc.Main"
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile('com.h2database:h2:1.4.199')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment