Skip to content

Commit

Permalink
Merge pull request #437 from ysb33r/rename-directories
Browse files Browse the repository at this point in the history
Shorten directory names and update settings.gradle
  • Loading branch information
ysb33r committed Jul 9, 2019
2 parents b517072 + 952e764 commit b2d8bf5
Show file tree
Hide file tree
Showing 293 changed files with 15 additions and 9 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
24 changes: 15 additions & 9 deletions settings.gradle
@@ -1,17 +1,23 @@
rootProject.name = 'asciidoctor-gradle-plugin'

include 'asciidoctor-gradle-base'
include 'asciidoctor-gradle-jvm'
include 'kindlegen-gradle'
include 'asciidoctor-gradle-jvm-epub'
include 'asciidoctor-gradle-jvm-pdf'
include 'asciidoctor-gradle-jvm-gems'
include 'asciidoctor-gradle-jvm-slides'
include 'asciidoctor-gradle-js'
include 'asciidoctor-gradle-slides-export'
include 'asciidoctor-gradle-jvm-leanpub'

['offline-repo', 'jvm'].each {
include "testfixtures/${it}"
project(":testfixtures/${it}").name = "testfixtures-${it}"
}

[ 'js', 'base', 'slides-export', 'jvm' ].each {
include it
project(":${it}").name = "asciidoctor-gradle-${it}"
}

[ 'epub', 'pdf', 'leanpub', 'slides' ].each {
include "jvm-${it}"
project(":jvm-${it}").name = "asciidoctor-gradle-jvm-${it}"
}

[ 'gems' ].each {
include it
project(":${it}").name = "asciidoctor-gradle-jvm-${it}"
}
File renamed without changes.

0 comments on commit b2d8bf5

Please sign in to comment.