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

AutoModule integration #122

Merged
merged 7 commits into from
Aug 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ GENERIC_CONF=https://raw.githubusercontent.com/arrow-kt/arrow/master/generic-con
SUBPROJECT_CONF=https://raw.githubusercontent.com/arrow-kt/arrow/master/subproject-conf.gradle
DOC_CONF=https://raw.githubusercontent.com/arrow-kt/arrow/master/doc-conf.gradle
PUBLISH_CONF=https://raw.githubusercontent.com/arrow-kt/arrow/master/publish-conf.gradle
SETTINGS_CONF=https://raw.githubusercontent.com/arrow-kt/arrow/master/settings-conf.gradle
# Gradle options
org.gradle.jvmargs=-Xmx4g
org.gradle.parallel=true
Expand Down
18 changes: 5 additions & 13 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
apply from: "$SETTINGS_CONF"

rootProject.name = 'arrow-incubator-lib'

include 'arrow-aql'
include 'arrow-mtl'
include 'arrow-mtl-data'
include 'arrow-recursion'
include 'arrow-recursion-data'
include 'arrow-generic'
include 'arrow-free'
include 'arrow-free-data'
include 'arrow-reflect'
include 'arrow-kindedj'
include 'arrow-validation'
include 'arrow-fx-mtl'
include 'arrow-incubator-test'
autoModule {
ignore(":arrow-docs")
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added this because on the previous setup there was no include for arrow-docs and I wasn't sure if that was in purpose.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, it's intentional. arrow-docs modules have a huge amount of dependencies so they are just included when generating API docs.

}