Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Coding Dojo
reactive-programming
Commits
533d16c3
Commit
533d16c3
authored
Dec 12, 2018
by
Julien SADAOUI
Browse files
fix: gradle configuration
parent
abe380b2
Changes
5
Hide whitespace changes
Inline
Side-by-side
build.gradle.kts
View file @
533d16c3
...
...
@@ -7,6 +7,20 @@
*/
subprojects
{
repositories
{
jcenter
()
mavenCentral
()
}
group
=
"com.ippon.codingdojo.reactive"
version
=
"1.0"
configurations
.
all
{
exclude
(
group
=
"org.slf4j"
,
module
=
"slf4j-log4j12"
)
exclude
(
group
=
"log4j"
,
module
=
"log4j"
)
}
}
rxjava/build.gradle.kts
View file @
533d16c3
repositories
{
jcenter
()
mavenCentral
()
}
plugins
{
id
(
"java"
)
id
(
"org.springframework.boot"
)
version
"2.1.1.RELEASE"
...
...
@@ -16,10 +11,6 @@ java {
targetCompatibility
=
JavaVersion
.
VERSION_11
}
group
=
"com.ippon.codingdojo"
version
=
"1.0.0"
dependencies
{
implementation
(
"ch.qos.logback:logback-classic"
)
...
...
@@ -30,11 +21,6 @@ dependencies {
}
configurations
.
all
{
exclude
(
group
=
"org.slf4j"
,
module
=
"slf4j-log4j12"
)
exclude
(
group
=
"log4j"
,
module
=
"log4j"
)
}
tasks
.
withType
<
Jar
>
{
enabled
=
false
}
\ No newline at end of file
}
rxjava/settings.gradle.kts
deleted
100644 → 0
View file @
abe380b2
rootProject
.
name
=
"reactive-rxjava"
spring-reactor/build.gradle.kts
View file @
533d16c3
repositories
{
mavenCentral
()
jcenter
()
}
plugins
{
id
(
"java"
)
id
(
"org.springframework.boot"
)
version
"2.1.1.RELEASE"
...
...
@@ -16,9 +11,6 @@ java {
targetCompatibility
=
JavaVersion
.
VERSION_11
}
group
=
"fr.ippon.codingdojo"
version
=
"1.0.0"
defaultTasks
(
"bootRun"
)
dependencies
{
...
...
spring-reactor/settings.gradle.kts
deleted
100644 → 0
View file @
abe380b2
rootProject
.
name
=
"spring-reactor"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment