Browse Source

Fixing issue build project

master
Le Sinh 2 years ago
parent
commit
864412e777
2 changed files with 6 additions and 6 deletions
  1. +4
    -4
      build.gradle
  2. +2
    -2
      src/main/resources/config/application-dev.yml

+ 4
- 4
build.gradle View File

repositories { repositories {
mavenLocal() mavenLocal()
mavenCentral() mavenCentral()
maven { url "https://repo.spring.io/plugins-release" }
maven { url "https://repo.spring.io/plugins-snapshot" }
maven { url "https://plugins.gradle.org/m2/" } maven { url "https://plugins.gradle.org/m2/" }
} }
dependencies { dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:${spring_boot_version}" classpath "org.springframework.boot:spring-boot-gradle-plugin:${spring_boot_version}"
classpath "io.spring.gradle:propdeps-plugin:0.0.10.RELEASE"
classpath "io.spring.gradle:propdeps-plugin:0.0.8-SNAPSHOT"
classpath "gradle.plugin.com.gorylenko.gradle-git-properties:gradle-git-properties:1.5.2" 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 //jhipster-needle-gradle-buildscript-dependency - JHipster will add additional gradle build script plugins here
} }
id "net.ltgt.apt-idea" version "0.19" id "net.ltgt.apt-idea" version "0.19"
id "net.ltgt.apt" version "0.19" id "net.ltgt.apt" version "0.19"
id "io.spring.dependency-management" version "1.0.6.RELEASE" id "io.spring.dependency-management" version "1.0.6.RELEASE"
id "com.moowork.node" version "1.2.0"
id "com.github.node-gradle.gulp" version "1.3.0"
id 'org.liquibase.gradle' version '2.0.1' id 'org.liquibase.gradle' version '2.0.1'
//jhipster-needle-gradle-plugins - JHipster will add additional gradle plugins here //jhipster-needle-gradle-plugins - JHipster will add additional gradle plugins here
} }
apply plugin: 'org.springframework.boot' apply plugin: 'org.springframework.boot'
apply plugin: 'war' apply plugin: 'war'
apply plugin: 'propdeps' apply plugin: 'propdeps'
apply plugin: 'com.moowork.node'
apply plugin: 'com.github.node-gradle.gulp'
apply plugin: 'io.spring.dependency-management' apply plugin: 'io.spring.dependency-management'
apply plugin: 'idea' apply plugin: 'idea'



+ 2
- 2
src/main/resources/config/application-dev.yml View File

# password: # password:


# Localhost # Localhost
url: jdbc:mysql://localhost:3306/smf?useUnicode=true&characterEncoding=utf8&allowPublicKeyRetrieval=true&useSSL=false&useLegacyDatetimeCode=false&serverTimezone=UTC
url: jdbc:mysql://161.35.226.97:3306/smf?useUnicode=true&characterEncoding=utf8&allowPublicKeyRetrieval=true&useSSL=false&useLegacyDatetimeCode=false&serverTimezone=UTC
username: root username: root
password: db-password
password: P@ssw0rdredmine
hikari: hikari:
auto-commit: false auto-commit: false
data-source-properties: data-source-properties:

Loading…
Cancel
Save