Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
eraser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenLicht
eraser
Merge requests
!7
Resolve "Create pages documentation"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Create pages documentation"
33-create-pages-documentation
into
dev
Overview
0
Commits
7
Pipelines
6
Changes
30
Merged
René Schöne
requested to merge
33-create-pages-documentation
into
dev
4 years ago
Overview
0
Commits
7
Pipelines
6
Changes
30
Expand
Closes
#33 (closed)
0
0
Merge request reports
Compare
dev
version 5
65ee4852
4 years ago
version 4
abffaecc
4 years ago
version 3
558b06f6
4 years ago
version 2
0af50e07
4 years ago
version 1
604729f6
4 years ago
dev (base)
and
version 1
latest version
5ee8f8f6
7 commits,
4 years ago
version 5
65ee4852
6 commits,
4 years ago
version 4
abffaecc
5 commits,
4 years ago
version 3
558b06f6
4 commits,
4 years ago
version 2
0af50e07
3 commits,
4 years ago
version 1
604729f6
2 commits,
4 years ago
30 files
+
2726
−
57
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
30
Search (e.g. *.vue) (Ctrl+P)
eraser-base/build.gradle
+
0
−
29
Options
@@ -129,35 +129,6 @@ sourceSets.main {
}
}
javadoc
{
// this is only run to get the index file etc.
failOnError
=
false
}
String
[]
arguments
=
[
"libs/rd-builder.jar"
,
"-d"
,
"doc/"
]
def
allSrcFiles
=
sourceSets
.
main
.
allSource
.
findAll
{
it
.
name
.
endsWith
(
'java'
)
}.
toArray
()
def
ragdocViewSrcData
=
'../ragdoc-view/src/data/'
task
ragdocFixed
(
type:
JavaExec
,
dependsOn:
assemble
)
{
group
=
'documentation'
description
=
'Create ragdoc json documentation files'
main
=
"-jar"
args
arguments
+
allSrcFiles
}
task
cleanRagdoc
(
type:
Delete
)
{
group
=
'documentation'
delete
fileTree
(
ragdocViewSrcData
+
'/*'
)
}
task
copyRagdoc
(
type:
Copy
,
dependsOn:
cleanRagdoc
)
{
group
=
'documentation'
description
=
'Copy ragdoc json documentation files to ragdoc-viewer'
from
'doc/'
into
ragdocViewSrcData
eachFile
{
println
it
.
file
}
}
generateAst
.
dependsOn
preprocess
generateAst
.
inputs
.
files
file
(
"./src/main/jastadd/mainGen.ast"
),
file
(
"./src/main/jastadd/mainGen.jadd"
)
//compileJava.dependsOn jastadd
Loading