Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor Gradle build #1862

Merged
merged 38 commits into from Nov 6, 2018
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
c344e0d
Remove obsolete desktop/settings.gradle
cbeams Nov 4, 2018
b460894
Refactor gradle-witness plugin location and config
cbeams Nov 4, 2018
d3d3ea6
Remove obsolete gradle/wrapper dir
cbeams Nov 4, 2018
d6178f6
Remove osdetector plugin from desktop build
cbeams Nov 4, 2018
572155f
Remove duplicate openjfx dependencies
cbeams Nov 4, 2018
c257590
Upgrade to Gradle 4.10.2
cbeams Nov 4, 2018
cc5ed49
Eliminate unnecessary dependency from assets->common
cbeams Nov 4, 2018
394914e
Use single quotes for Gradle strings
cbeams Nov 4, 2018
3c1c402
Remove use of maven plugin
cbeams Nov 4, 2018
1a0b017
Remove use of lombok annotations in relay
cbeams Nov 4, 2018
b857e5d
Fix broken mainClassName in relay
cbeams Nov 4, 2018
f0b4496
Remove unnecessary JesusMcCloud repo from relay
cbeams Nov 4, 2018
95c8b8d
Pull up application and configuration of java plugin
cbeams Nov 4, 2018
4e1fa91
Pull up common repositories to root build.gradle
cbeams Nov 4, 2018
f6a68f8
Pull up common JavaCompile config to root
cbeams Nov 4, 2018
1cdb39a
Pull up JesusMcCloud repo to root
cbeams Nov 4, 2018
bd1e7e2
Pull up application plugin config to root
cbeams Nov 4, 2018
83118b6
Remove assets Javadoc jar
cbeams Nov 4, 2018
51d9f00
Inline $jmockitVersion core/desktop build.gradle
cbeams Nov 4, 2018
cdff12a
Fix incorrect name in pricenode jar and manifest
cbeams Nov 4, 2018
c895656
Pull up remaining assets config to root
cbeams Nov 4, 2018
d4edb81
Pull up remaining common config to root
cbeams Nov 4, 2018
0f5e9b7
Pull up remaining core config to root
cbeams Nov 4, 2018
3c54be2
Pull up remaining desktop config to root
cbeams Nov 4, 2018
e97625c
Pull up remaining monitor config to root
cbeams Nov 4, 2018
2f7c5f1
Pull up remaining p2p config to root
cbeams Nov 4, 2018
15b81df
Pull up remaining pricenode config to root
cbeams Nov 4, 2018
9c82b30
Pull up remaining relay config to root
cbeams Nov 4, 2018
b0886dd
Pull up remaining seednode config to root
cbeams Nov 4, 2018
3cd467c
Pull up remaining statsnode config to root
cbeams Nov 4, 2018
cb4f6ed
Minimize common subproject javafx dependencies
cbeams Nov 4, 2018
5cdacbe
Extract variables for duplicate dependency versions
cbeams Nov 4, 2018
22b92f7
Use two blank lines between configure blocks
cbeams Nov 4, 2018
adb3e9e
Remove unnecessary :desktop:test javaagent config
cbeams Nov 4, 2018
743a769
Remove unnecessary seednode resources config
cbeams Nov 4, 2018
3913988
Remove unnecessary application of 'java-base' plugin
cbeams Nov 4, 2018
f8ec6be
Remove unused $junitVersion
cbeams Nov 5, 2018
978fd2d
Use $springVersion variable consistently
cbeams Nov 5, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -96,7 +96,7 @@ configure(project(':common')) {
compile('com.googlecode.json-simple:json-simple:1.1.1') {
exclude(module: 'junit')
}
compile 'org.springframework:spring-core:4.3.6.RELEASE'
compile "org.springframework:spring-core:$springVersion"
compile 'org.slf4j:slf4j-api:1.7.22'
compile 'ch.qos.logback:logback-core:1.1.10'
compile 'ch.qos.logback:logback-classic:1.1.10'
Expand Down