Skip to content

Commit b5016e6

Browse files
Added Gradle
1 parent 2cc035f commit b5016e6

File tree

21 files changed

+649
-5
lines changed

21 files changed

+649
-5
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,8 @@ tramp
8686
Session.vim
8787
.netrwhist
8888
*~
89+
90+
build
91+
.gradle
92+
*.log
93+
out

adapter-commons/build.gradle

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
dependencies {
2+
compile("org.springframework.boot:spring-boot-starter-data-jpa")
3+
compile("org.springframework.boot:spring-boot-starter-data-rest")
4+
compile("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.8.5")
5+
compile("org.liquibase:liquibase-core:3.5.5")
6+
testCompile("org.springframework.boot:spring-boot-starter-test")
7+
}

adapter-commons/src/main/resources/schema/commons.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<changeSet author="jakubpilimon" id="1.init">
66
<createSequence sequenceName="hibernate_sequence" startValue="1" incrementBy="1" cacheSize="1"/>
77
</changeSet>
8-
<!--<changeSet author="jakubpilimon" id="2.postgres.json" dbms="postgresql">-->
9-
<!--<sql>CREATE CAST (VARCHAR AS jsonb) WITH INOUT AS ASSIGNMENT</sql>-->
10-
<!--</changeSet>-->
8+
<changeSet author="jakubpilimon" id="2.postgres.json" dbms="postgresql" failOnError="false">
9+
<sql>CREATE CAST (VARCHAR AS jsonb) WITH INOUT AS ASSIGNMENT</sql>
10+
</changeSet>
1111
</databaseChangeLog>

app-monolith/build.gradle

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
apply plugin: 'groovy'
2+
3+
dependencies {
4+
compile(project(":demand-forecasting-adapters"))
5+
compile(project(":shortages-prediction-adapters"))
6+
compile(project(":product-management-adapters"))
7+
compile(project(":production-planning-adapters"))
8+
compile(project(":adapter-commons"))
9+
10+
compile("org.projectlombok:lombok:1.16.18")
11+
compile("org.springframework.boot:spring-boot-starter-data-jpa")
12+
compile("org.springframework.boot:spring-boot-starter-web")
13+
compile("org.springframework.boot:spring-boot-starter-data-rest")
14+
compile("org.springframework.data:spring-data-rest-hal-browser")
15+
compile("org.springframework.boot:spring-boot-starter-cloud-connectors")
16+
compile("org.liquibase:liquibase-core:3.5.5")
17+
compile("net.bytebuddy:byte-buddy:1.7.9")
18+
19+
runtime("org.cloudfoundry:auto-reconfiguration:1.12.0.RELEASE")
20+
runtime("org.postgresql:postgresql:42.1.4")
21+
22+
testCompile("org.springframework.boot:spring-boot-starter-test")
23+
testCompile("org.spockframework:spock-core:1.1-groovy-2.4")
24+
testCompile("org.spockframework:spock-spring:1.1-groovy-2.4")
25+
testCompile("com.h2database:h2:1.4.194")
26+
// TODO: Because of this there's no up to date check from Gradle
27+
testCompile(project(":adapter-commons").sourceSets.test.output)
28+
}
29+
30+
[bootJar, bootRun]*.enabled = true
31+
jar.enabled = false
32+
33+
task stubsJar(type: Jar) {
34+
classifier = "stubs"
35+
into("META-INF/${project.rootProject.ext.projectGroupId}/${project.rootProject.ext.projectArtifactId}/${project.rootProject.ext.projectVersion}/shortages-prediction-adapters/mappings") {
36+
include('**/*.*')
37+
from(project(":shortages-prediction-adapters").projectDir.absolutePath + "/target/generated-snippets/stubs")
38+
}
39+
into("META-INF/${project.rootProject.ext.projectGroupId}/${project.rootProject.ext.projectArtifactId}/${project.rootProject.ext.projectVersion}/shortages-prediction-adapters/contracts") {
40+
include('**/*.groovy')
41+
from(project(":shortages-prediction-adapters").projectDir.absolutePath + "/target/generated-snippets/contracts")
42+
}
43+
}
44+
45+
// we need the tests to pass to build the stub jar
46+
stubsJar.dependsOn(test)
47+
stubsJar.dependsOn(project(":shortages-prediction-adapters").test)
48+
49+
artifacts {
50+
archives stubsJar
51+
}
52+
53+
jar.dependsOn(stubsJar)
54+
55+
publishing {
56+
publications {
57+
stubs(MavenPublication) {
58+
artifactId project.name
59+
artifact stubsJar
60+
}
61+
}
62+
}

build.gradle

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
buildscript {
2+
repositories {
3+
mavenCentral()
4+
mavenLocal()
5+
maven { url "http://repo.spring.io/snapshot" }
6+
maven { url "http://repo.spring.io/milestone" }
7+
maven { url "http://repo.spring.io/release" }
8+
}
9+
dependencies {
10+
classpath "org.springframework.boot:spring-boot-gradle-plugin:2.0.2.RELEASE"
11+
// TODO: Snapshots are used only for testing purposes
12+
classpath "org.springframework.cloud:spring-cloud-contract-gradle-plugin:2.0.0.BUILD-SNAPSHOT"
13+
}
14+
}
15+
16+
allprojects {
17+
apply plugin: 'java'
18+
apply plugin: 'org.springframework.boot'
19+
apply plugin: 'io.spring.dependency-management'
20+
apply plugin: 'maven-publish'
21+
22+
group = 'pl.com.dddbyexamples'
23+
version = getProp('newVersion') ?: '1.0-SNAPSHOT'
24+
25+
apply from: project.rootDir.absolutePath + '/gradle/pipeline.gradle'
26+
27+
bootJar.enabled = false
28+
jar.enabled = true
29+
bootRun.enabled = false
30+
31+
dependencyManagement {
32+
imports {
33+
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${BOM_VERSION}"
34+
}
35+
}
36+
37+
repositories {
38+
mavenCentral()
39+
mavenLocal()
40+
if (getProp("M2_LOCAL")) {
41+
maven {
42+
url getProp("M2_LOCAL")
43+
}
44+
}
45+
maven { url "http://repo.spring.io/snapshot" }
46+
maven { url "http://repo.spring.io/milestone" }
47+
maven { url "http://repo.spring.io/release" }
48+
}
49+
50+
publishing {
51+
repositories {
52+
maven {
53+
url getProp('REPO_WITH_BINARIES_FOR_UPLOAD') ?:
54+
getProp('REPO_WITH_BINARIES') ?: 'http://localhost:8081/artifactory/libs-release-local'
55+
credentials {
56+
username getProp('M2_SETTINGS_REPO_USERNAME') ?: 'admin'
57+
password getProp('M2_SETTINGS_REPO_PASSWORD') ?: 'password'
58+
}
59+
}
60+
}
61+
publications {
62+
mavenJava(MavenPublication) {
63+
artifactId project.name
64+
from components.java
65+
}
66+
}
67+
}
68+
69+
tasks.withType(Test) {
70+
testLogging {
71+
events "started", "passed", "skipped", "failed"
72+
}
73+
}
74+
}
75+
76+
ext {
77+
projectGroupId = project.group
78+
// In a multi-module env we can specify which project is the one that produces the fat-jar
79+
projectArtifactId = "app-monolith"
80+
projectVersion = project.version
81+
}
82+
83+
apply plugin: "java"
84+
[bootJar, bootRun]*.enabled = false
85+
86+
task wrapper(type: Wrapper) {
87+
gradleVersion = '4.8'
88+
}
89+
90+
String getProp(String propName) {
91+
return hasProperty(propName) ?
92+
(getProperty(propName) ?: System.properties[propName]) : System.properties[propName] ?:
93+
System.getenv(propName)
94+
}
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
apply plugin: 'groovy'
2+
3+
dependencies {
4+
compile(project(":demand-forecasting-model"))
5+
compile(project(":adapter-commons"))
6+
7+
compile("org.projectlombok:lombok:1.16.18")
8+
9+
runtime("org.postgresql:postgresql:42.1.4")
10+
11+
testCompile("org.springframework.boot:spring-boot-starter-test")
12+
testCompile("org.spockframework:spock-core:1.1-groovy-2.4")
13+
testCompile("org.spockframework:spock-spring:1.1-groovy-2.4")
14+
testCompile("com.h2database:h2:1.4.194")
15+
testCompile(project(":adapter-commons").sourceSets.test.output)
16+
}

demand-forecasting-model/build.gradle

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
apply plugin: 'groovy'
2+
3+
dependencies {
4+
compile(project(":shared-kernel-model"))
5+
compile(project(":adapter-commons"))
6+
7+
compile("org.projectlombok:lombok:1.16.18")
8+
9+
testCompile("org.spockframework:spock-core:1.1-groovy-2.4")
10+
}

gradle.properties

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
org.gradle.daemon=false
2+
BOM_VERSION=Finchley.BUILD-SNAPSHOT

gradle/pipeline.gradle

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
test {
2+
description = "Task to run unit and integration tests"
3+
testLogging {
4+
exceptionFormat = 'full'
5+
}
6+
jvmArgs = systemPropsFromGradle()
7+
exclude 'smoke/**'
8+
exclude 'e2e/**'
9+
}
10+
11+
task smoke(type: Test) {
12+
description = "Task to run smoke tests"
13+
testLogging {
14+
exceptionFormat = 'full'
15+
}
16+
jvmArgs = systemPropsFromGradle()
17+
include 'smoke/**'
18+
}
19+
20+
task apiCompatibility(type: Test) {
21+
description = "Task to run api compatbility tests"
22+
testLogging {
23+
exceptionFormat = 'full'
24+
}
25+
jvmArgs = systemPropsFromGradle()
26+
include '**/contracttests/**'
27+
}
28+
29+
task e2e(type: Test) {
30+
description = "Task to run end to end tests"
31+
testLogging {
32+
exceptionFormat = 'full'
33+
}
34+
jvmArgs = systemPropsFromGradle()
35+
include 'e2e/**'
36+
}
37+
38+
task deploy(dependsOn: 'publish') {
39+
description = "Abstraction over publishing artifacts to Artifactory / Nexus"
40+
}
41+
42+
task groupId {
43+
doLast {
44+
println projectGroupId
45+
}
46+
}
47+
groupId.description = "Task to retrieve Group ID"
48+
49+
task artifactId {
50+
doLast {
51+
println projectArtifactId
52+
}
53+
}
54+
artifactId.description = "Task to retrieve Artifact ID"
55+
56+
task currentVersion {
57+
doLast {
58+
println projectVersion
59+
}
60+
}
61+
currentVersion.description = "Task to retrieve version"
62+
63+
task stubIds {
64+
doLast {
65+
println stubrunnerIds
66+
}
67+
}
68+
stubIds.description = "Task to retrieve Stub Runner IDS"
69+
70+
[test, apiCompatibility, smoke, e2e, deploy, groupId, artifactId, currentVersion, stubIds].each {
71+
it.group = "Pipeline"
72+
}
73+
74+
private List<String> systemPropsFromGradle() {
75+
return project.gradle.startParameter.systemPropertiesArgs.entrySet().collect { "-D${it.key}=${it.value}" }
76+
}

gradle/wrapper/gradle-wrapper.jar

53.1 KB
Binary file not shown.
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)