generated from isaqb-org/advanced-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from isaqb-org/update-toolchain
Update toolchain; remove gradle
- Loading branch information
Showing
16 changed files
with
22 additions
and
794 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
.DS_Store | ||
|
||
.gradle | ||
gradlew | ||
gradlew.bat | ||
gradle/ | ||
build | ||
.idea | ||
topic-backlog-expert-level.iml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,6 @@ | ||
import java.text.SimpleDateFormat | ||
|
||
plugins { | ||
id "java" | ||
id "application" | ||
} | ||
|
||
def group = "org.isaqb" | ||
def releaseVersion = System.getenv("RELEASE_VERSION") | ||
def localVersion = "LocalBuild" | ||
project.version = releaseVersion == null ? localVersion : releaseVersion | ||
def curriculumFileName = "topic-backlog-expert-level" | ||
def versionDate = new SimpleDateFormat("yyyyMMdd").format(new Date()) | ||
def languages = ["DE", "EN"] | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
implementation("org.asciidoctor:asciidoctorj:2.5.10") | ||
implementation("org.asciidoctor:asciidoctorj-pdf:2.3.9") | ||
} | ||
|
||
application { | ||
mainClass.set("org.isaqb.asciidoc.Main") | ||
applicationDefaultJvmArgs = [ | ||
"""-DprojectVersion=${project.version}""", | ||
"""-DcurriculumFileName=${curriculumFileName}""", | ||
"""-DversionDate=${versionDate}""", | ||
"""-Dlanguages=${languages.join(',')}""", | ||
"""--add-opens""", """java.base/sun.nio.ch=ALL-UNNAMED""", | ||
"""--add-opens""", """java.base/java.io=ALL-UNNAMED"""] | ||
} | ||
|
||
tasks.register('buildDocs') { | ||
description = 'Grouping task for generating all languages in several formats' | ||
group = 'documentation' | ||
dependsOn "run" | ||
ext { | ||
curriculumFileName = "topic-backlog-expert-level" | ||
languages = ["DE", "EN"] | ||
} | ||
|
||
defaultTasks "buildDocs" | ||
defaultTasks 'buildDocs' |
Submodule gradle-tools
added at
96b90b
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.