Cleaning old project.
parent
0bcbb686dc
commit
9943b75618
33
build.gradle
33
build.gradle
|
@ -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 {
|
||||
|
||||
group 'pl.tpolgrabia.trainings.javaee'
|
||||
|
@ -17,8 +32,11 @@ subprojects {
|
|||
mavenCentral()
|
||||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'com.bmuschko.cargo'
|
||||
|
||||
sourceCompatibility = '1.8'
|
||||
|
||||
dependencies {
|
||||
def cargoVersion = '1.6.5'
|
||||
cargo "org.codehaus.cargo:cargo-core-uberjar:$cargoVersion",
|
||||
|
@ -29,14 +47,21 @@ subprojects {
|
|||
containerId = 'wildfly10x'
|
||||
|
||||
remote {
|
||||
hostname = project.ext["cargo.wildfly.hostname"]
|
||||
username = project.ext["cargo.wildfly.username"]
|
||||
password = project.ext["cargo.wildfly.password"]
|
||||
hostname = project.ext["javaeeshowcase.cargo.wildfly.hostname"]
|
||||
username = project.ext["javaeeshowcase.cargo.wildfly.username"]
|
||||
password = project.ext["javaeeshowcase.cargo.wildfly.password"]
|
||||
|
||||
containerProperties {
|
||||
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']
|
||||
}
|
||||
|
|
|
@ -1,7 +1,16 @@
|
|||
# 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.wildfly.username=test
|
||||
cargo.wildfly.password=test
|
||||
cargo.wildfly.port=9990
|
||||
# Cargo deployment settings
|
||||
|
||||
javaeeshowcase.cargo.wildfly.hostname=localhost
|
||||
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
|
||||
|
|
|
@ -2,11 +2,9 @@ plugins {
|
|||
id 'java'
|
||||
}
|
||||
|
||||
sourceCompatibility = 1.8
|
||||
|
||||
dependencies {
|
||||
implementation 'javax:javaee-api:8.0.1'
|
||||
// wildfly 10 version I use :-)
|
||||
implementation 'org.slf4j:slf4j-api:1.7.22'
|
||||
testCompile group: 'junit', name: 'junit', version: '4.12'
|
||||
testImplementation 'junit:junit:4.12'
|
||||
}
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
create table users
|
||||
(
|
||||
id serial not null primary key,
|
||||
first_name text not null,
|
||||
user_name varchar(256) not null
|
||||
);
|
Loading…
Reference in New Issue