import org.gradle.internal.os.OperatingSystem buildscript { repositories { mavenLocal() mavenCentral() maven { url "https://repo.spring.io/plugins-snapshot" } maven { url "https://plugins.gradle.org/m2/" } } dependencies { classpath "org.springframework.boot:spring-boot-gradle-plugin:${spring_boot_version}" classpath "io.spring.gradle:propdeps-plugin:0.0.8-SNAPSHOT" classpath "gradle.plugin.com.gorylenko.gradle-git-properties:gradle-git-properties:1.5.2" //jhipster-needle-gradle-buildscript-dependency - JHipster will add additional gradle build script plugins here } } plugins { // open when run local env // id "ua.eshepelyuk.ManifestClasspath" version "1.0.0" id "org.sonarqube" version "2.6.2" id "net.ltgt.apt-eclipse" version "0.19" id "net.ltgt.apt-idea" version "0.19" id "net.ltgt.apt" version "0.19" id "io.spring.dependency-management" version "1.0.6.RELEASE" id "com.github.node-gradle.gulp" version "1.3.0" id 'org.liquibase.gradle' version '2.0.1' //jhipster-needle-gradle-plugins - JHipster will add additional gradle plugins here } apply plugin: 'java' sourceCompatibility=1.8 targetCompatibility=1.8 // Until JHipster supports JDK 9 assert System.properties['java.specification.version'] == '1.8' apply plugin: 'maven' apply plugin: 'org.springframework.boot' apply plugin: 'war' apply plugin: 'propdeps' apply plugin: 'com.github.node-gradle.gulp' apply plugin: 'io.spring.dependency-management' apply plugin: 'idea' dependencyManagement { imports { mavenBom 'io.github.jhipster:jhipster-dependencies:' + jhipster_dependencies_version //jhipster-needle-gradle-dependency-management - JHipster will add additional dependencies management here } } defaultTasks 'bootRun' group = 'vn.azteam' version = '0.0.1-SNAPSHOT' description = '' bootWar { mainClassName = 'vn.azteam.tpf.TPFApp' } war { enabled = true classifier = 'original' } springBoot { mainClassName = 'vn.azteam.tpf.TPFApp' buildInfo() } if (OperatingSystem.current().isWindows()) { // https://stackoverflow.com/questions/40037487/the-filename-or-extension-is-too-long-error-using-gradle task classpathJar(type: Jar) { dependsOn configurations.runtime appendix = 'classpath' doFirst { manifest { attributes 'Class-Path': configurations.runtime.files.collect { it.toURI().toURL().toString().replaceFirst(/file:\/+/, '/').replaceAll(' ', '%20') }.join(' ') } } } bootRun { dependsOn classpathJar doFirst { classpath = files("$buildDir/classes/java/main", "$buildDir/resources/main", classpathJar.archivePath) } } } test { exclude '**/CucumberTest*' // uncomment if the tests reports are not generated // see https://github.com/jhipster/generator-jhipster/pull/2771 and https://github.com/jhipster/generator-jhipster/pull/4484 // ignoreFailures true reports.html.enabled = false } task testReport(type: TestReport) { destinationDir = file("$buildDir/reports/tests") reportOn test } apply from: 'gradle/docker.gradle' apply from: 'gradle/sonar.gradle' //jhipster-needle-gradle-apply-from - JHipster will add additional gradle scripts to be applied here if (project.hasProperty('prod')) { apply from: 'gradle/profile_prod.gradle' } else { apply from: 'gradle/profile_dev.gradle' } if (!project.hasProperty('runList')) { project.ext.runList = 'main' } project.ext.diffChangelogFile = 'src/main/resources/config/liquibase/changelog/' + new Date().format('yyyyMMddHHmmss') + '_changelog.xml' liquibase { activities { main { driver 'com.mysql.jdbc.Driver' url 'jdbc:mysql://1.0.0.4:3306/smf' username 'root' password 'P@ssw0rdfarm' changeLogFile 'src/main/resources/config/liquibase/master.xml' defaultSchemaName 'smf' logLevel 'debug' classpath 'src/main/resources/' } diffLog { driver 'com.mysql.jdbc.Driver' url 'jdbc:mysql://1.0.0.4:3306/smf' username 'root' password 'P@ssw0rdfarm' changeLogFile project.ext.diffChangelogFile referenceUrl 'hibernate:spring:vn.azteam.smf.domain?dialect=org.hibernate.dialect.MySQL5InnoDBDialect&hibernate.physical_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy&hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy' defaultSchemaName 'smf' logLevel 'debug' classpath "$buildDir/classes/java/main" } } runList = project.ext.runList } configurations { providedRuntime compile.exclude module: "spring-boot-starter-tomcat" } repositories { mavenLocal() mavenCentral() jcenter() //jhipster-needle-gradle-repositories - JHipster will add additional repositories } dependencies { // Use ", version: jhipster_dependencies_version, changing: true" if you want // to use a SNAPSHOT release instead of a stable release // https://mvnrepository.com/artifact/com.google.firebase/firebase-admin compile group: 'com.google.firebase', name: 'firebase-admin', version: '7.0.1' // https://mvnrepository.com/artifact/org.casbin/casbin-spring-boot-starter compile group: 'org.casbin', name: 'casbin-spring-boot-starter', version: '0.0.9' compile group: "io.github.jhipster", name: "jhipster-framework" compile "org.apache.poi:poi:4.1.2" compile "org.apache.poi:poi-ooxml:4.1.2" compile "org.apache.poi:ooxml-schemas:1.4" // https://mvnrepository.com/artifact/org.apache.xmlbeans/xmlbeans compile group: 'org.apache.xmlbeans', name: 'xmlbeans', version: '3.1.0' compile "org.springframework.boot:spring-boot-starter-cache" compile "io.dropwizard.metrics:metrics-core" compile "io.dropwizard.metrics:metrics-jcache" compile "io.dropwizard.metrics:metrics-json" compile "io.dropwizard.metrics:metrics-jvm" compile "io.dropwizard.metrics:metrics-servlet" compile "io.dropwizard.metrics:metrics-servlets" compile "io.prometheus:simpleclient" compile "io.prometheus:simpleclient_dropwizard" compile "io.prometheus:simpleclient_servlet" compile "net.logstash.logback:logstash-logback-encoder" compile "com.fasterxml.jackson.datatype:jackson-datatype-hppc" compile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310" compile "com.fasterxml.jackson.datatype:jackson-datatype-hibernate5" compile "com.fasterxml.jackson.core:jackson-annotations" compile "com.fasterxml.jackson.core:jackson-databind" compile "com.fasterxml.jackson.module:jackson-module-afterburner" compile "com.opencsv:opencsv:4.5" compile "com.ryantenney.metrics:metrics-spring" compile "javax.cache:cache-api" compile "org.hibernate:hibernate-core" compile "com.zaxxer:HikariCP" compile "org.apache.commons:commons-lang3" compile "commons-io:commons-io" compile "javax.transaction:javax.transaction-api" compile "org.ehcache:ehcache" compile "org.hibernate:hibernate-jcache" compile "org.hibernate:hibernate-entitymanager" compile "org.hibernate:hibernate-envers" compile "org.hibernate.validator:hibernate-validator" compile "org.liquibase:liquibase-core" compile "com.mattbertolini:liquibase-slf4j" liquibaseRuntime "org.liquibase:liquibase-core" liquibaseRuntime "org.liquibase.ext:liquibase-hibernate5:${liquibase_hibernate5_version}" liquibaseRuntime sourceSets.main.compileClasspath compile "org.springframework.boot:spring-boot-loader-tools" compile "org.springframework.boot:spring-boot-starter-mail" compile "org.springframework.boot:spring-boot-starter-logging" compile "org.springframework.boot:spring-boot-starter-actuator" compile "org.springframework.boot:spring-boot-starter-aop" compile "org.springframework.boot:spring-boot-starter-data-jpa" compile "org.springframework.boot:spring-boot-starter-data-elasticsearch" // Spring Data Jest dependencies for Elasticsearch compile ("com.github.vanroy:spring-boot-starter-data-jest") { exclude module: 'commons-logging' } // log4j needed to create embedded elasticsearch instance runtime "org.apache.logging.log4j:log4j-api:2.8.2" runtime "org.apache.logging.log4j:log4j-core:2.8.2" // end of Spring Data Jest dependencies compile "org.springframework.boot:spring-boot-starter-security" compile ("org.springframework.boot:spring-boot-starter-web") { exclude module: 'spring-boot-starter-tomcat' } compile "org.springframework.boot:spring-boot-starter-json" compile "org.springframework.boot:spring-boot-starter-undertow" compile "org.springframework.boot:spring-boot-starter-websocket" compile "org.springframework.boot:spring-boot-starter-thymeleaf" compile "org.zalando:problem-spring-web:0.24.0-RC.0" compile "org.springframework.boot:spring-boot-starter-cloud-connectors" compile "org.springframework.security:spring-security-config" compile "org.springframework.security:spring-security-data" compile "org.springframework.security:spring-security-web" compile "org.springframework.security:spring-security-messaging" compile "io.jsonwebtoken:jjwt-api" runtime "io.jsonwebtoken:jjwt-impl" runtime "io.jsonwebtoken:jjwt-jackson" // compile ("io.springfox:springfox-swagger2") { // exclude module: 'mapstruct' // } // https://mvnrepository.com/artifact/org.springdoc/springdoc-openapi-ui //https://www.baeldung.com/java-html-to-pdf implementation group: 'org.springdoc', name: 'springdoc-openapi-ui', version: '1.7.0' implementation 'org.jsoup:jsoup:1.17.2' //implementation group: 'org.xhtmlrenderer', name: 'flying-saucer-pdf-itext5', version: '9.7.1' implementation group: 'org.xhtmlrenderer', name: 'flying-saucer-pdf', version: '9.3.2' //implementation group: 'com.lowagie.text', name: 'com.springsource.com.lowagie.text', version: '2.1.7' implementation group: 'org.eclipse.birt.runtime.3_7_1', name: 'com.lowagie.text', version: '2.1.7' compile "com.google.zxing:core:3.3.0" compile 'com.google.zxing:javase:3.3.0' // https://www.geeksforgeeks.org/how-to-generate-and-read-qr-code-with-java-using-zxing-library/ // compile "io.springfox:springfox-bean-validators" compile "mysql:mysql-connector-java" liquibaseRuntime "mysql:mysql-connector-java" compile "org.mapstruct:mapstruct-jdk8:${mapstruct_version}" annotationProcessor "org.mapstruct:mapstruct-processor:${mapstruct_version}" annotationProcessor "org.hibernate:hibernate-jpamodelgen" annotationProcessor ("org.springframework.boot:spring-boot-configuration-processor") { exclude group: 'com.vaadin.external.google', module: 'android-json' } testCompile "com.jayway.jsonpath:json-path" testCompile ("org.springframework.boot:spring-boot-starter-test") { exclude group: 'com.vaadin.external.google', module: 'android-json' } testCompile "org.springframework.security:spring-security-test" testCompile "org.springframework.boot:spring-boot-test" testCompile "org.assertj:assertj-core" testCompile "junit:junit" testCompile "org.mockito:mockito-core" testCompile "com.mattbertolini:liquibase-slf4j" testCompile "org.hamcrest:hamcrest-library" testCompile "com.h2database:h2" //jhipster-needle-gradle-dependency - JHipster will add additional dependencies here // https://mvnrepository.com/artifact/org.projectlombok/lombok provided group: 'org.projectlombok', name: 'lombok', version: '1.18.4' } task cleanResources(type: Delete) { delete 'build/resources' } wrapper { gradleVersion = '4.10.2' } task stage(dependsOn: 'bootWar') { } //if (project.hasProperty('nodeInstall')) { node { download = true version = "${node_version}" npmVersion = "${npm_version}" yarnVersion = "${yarn_version}" } //} bootWar.dependsOn war compileJava.dependsOn processResources processResources.dependsOn cleanResources,bootBuildInfo bootBuildInfo.mustRunAfter cleanResources