Skip to content

Instantly share code, notes, and snippets.

@gushernobindsme
Created February 5, 2019 09:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gushernobindsme/cd4b44c29d97c61bbfcf8e08a55952c7 to your computer and use it in GitHub Desktop.
Save gushernobindsme/cd4b44c29d97c61bbfcf8e08a55952c7 to your computer and use it in GitHub Desktop.
aneki-api's build.gradle
buildscript {
ext {
springBootVersion = '2.0.7.RELEASE'
}
repositories {
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("net.ltgt.gradle:gradle-apt-plugin:0.15")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'idea'
apply plugin: 'net.ltgt.apt'
group = 'net.vielis.admin'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation('org.springframework.boot:spring-boot-starter-data-jpa')
implementation('org.springframework.boot:spring-boot-starter-web')
implementation('org.springframework.boot:spring-boot-starter-actuator')
implementation('org.springframework.boot:spring-boot-starter-aop')
implementation('org.springframework.boot:spring-boot-starter-security')
implementation('com.auth0:java-jwt:3.4.0')
implementation('org.flywaydb:flyway-core')
runtimeOnly('mysql:mysql-connector-java')
annotationProcessor "org.projectlombok:lombok:1.16.20"
compileOnly('org.projectlombok:lombok:1.16.20')
apt "org.projectlombok:lombok:1.16.20"
implementation('com.fasterxml.jackson.dataformat:jackson-dataformat-csv')
implementation('org.apache.poi:poi:3.16')
implementation('org.docx4j:docx4j:6.0.1')
implementation('com.amazonaws:aws-java-sdk-s3:1.11.479')
testImplementation('org.springframework.boot:spring-boot-starter-test')
}
configurations.all {
exclude group: 'org.log4j'
exclude module: 'log4j-slf4j-impl'
exclude module: 'slf4j-log4j12'
exclude module: 'log4j-over-slf4j'
exclude module: 'slf4j-jdk14'
exclude module: 'commons-logging'
exclude module: 'commons-logging-api'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment