Cleaning old project.

master
Tomasz Półgrabia 2021-01-05 13:01:57 +01:00
parent 0bcbb686dc
commit 9943b75618
4 changed files with 50 additions and 12 deletions

View File

@ -8,6 +8,21 @@ buildscript {
} }
} }
plugins {
id 'java'
id "org.flywaydb.flyway" version "7.4.0"
}
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.postgresql', name: 'postgresql', version: '42.2.18'
}
subprojects { subprojects {
group 'pl.tpolgrabia.trainings.javaee' group 'pl.tpolgrabia.trainings.javaee'
@ -17,8 +32,11 @@ subprojects {
mavenCentral() mavenCentral()
} }
apply plugin: 'java'
apply plugin: 'com.bmuschko.cargo' apply plugin: 'com.bmuschko.cargo'
sourceCompatibility = '1.8'
dependencies { dependencies {
def cargoVersion = '1.6.5' def cargoVersion = '1.6.5'
cargo "org.codehaus.cargo:cargo-core-uberjar:$cargoVersion", cargo "org.codehaus.cargo:cargo-core-uberjar:$cargoVersion",
@ -29,14 +47,21 @@ subprojects {
containerId = 'wildfly10x' containerId = 'wildfly10x'
remote { remote {
hostname = project.ext["cargo.wildfly.hostname"] hostname = project.ext["javaeeshowcase.cargo.wildfly.hostname"]
username = project.ext["cargo.wildfly.username"] username = project.ext["javaeeshowcase.cargo.wildfly.username"]
password = project.ext["cargo.wildfly.password"] password = project.ext["javaeeshowcase.cargo.wildfly.password"]
containerProperties { containerProperties {
property 'cargo.jboss.management-http.port', property 'cargo.jboss.management-http.port',
project.ext["cargo.wildfly.port"] project.ext["javaeeshowcase.cargo.wildfly.port"]
} }
} }
} }
} }
flyway {
url = project.ext['javaeeshowcase.flyway.url']
user = project.ext['javaeeshowcase.flyway.username']
password = project.ext['javaeeshowcase.flyway.password']
schemas = project.ext['javaeeshowcase.flyway.schemas']
}

View File

@ -1,7 +1,16 @@
# please, copy this file to your user-specific $HOME/.gradle/gradle.properties # please, copy this file to your user-specific $HOME/.gradle/gradle.properties
# and initialize with correct values # and initialize with correct values. User-specific will override the local ones then.
cargo.wildfly.hostname=localhost # Cargo deployment settings
cargo.wildfly.username=test
cargo.wildfly.password=test javaeeshowcase.cargo.wildfly.hostname=localhost
cargo.wildfly.port=9990 javaeeshowcase.cargo.wildfly.username=test
javaeeshowcase.cargo.wildfly.password=test
javaeeshowcase.cargo.wildfly.port=9990
# Flyway db versioning settings
javaeeshowcase.flyway.url=jdbc:postgresql://localhost:5432/test
javaeeshowcase.flyway.username=test
javaeeshowcase.flyway.password=test
javaeeshowcase.flyway.schemas=test

View File

@ -2,11 +2,9 @@ plugins {
id 'java' id 'java'
} }
sourceCompatibility = 1.8
dependencies { dependencies {
implementation 'javax:javaee-api:8.0.1' implementation 'javax:javaee-api:8.0.1'
// wildfly 10 version I use :-) // wildfly 10 version I use :-)
implementation 'org.slf4j:slf4j-api:1.7.22' implementation 'org.slf4j:slf4j-api:1.7.22'
testCompile group: 'junit', name: 'junit', version: '4.12' testImplementation 'junit:junit:4.12'
} }

View File

@ -0,0 +1,6 @@
create table users
(
id serial not null primary key,
first_name text not null,
user_name varchar(256) not null
);