Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
Bank
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
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
Ronny Böttger
Bank
Commits
b4e6b430
Commit
b4e6b430
authored
4 years ago
by
Johannes Mey
Browse files
Options
Downloads
Patches
Plain Diff
update ragdoc
parent
cd022c9f
No related branches found
No related tags found
No related merge requests found
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
libs/rd-builder-1.3.0.jar
+0
-0
0 additions, 0 deletions
libs/rd-builder-1.3.0.jar
ragdoc-view/package-lock.json
+1461
-969
1461 additions, 969 deletions
ragdoc-view/package-lock.json
statemachine.solution/build.gradle
+24
-1
24 additions, 1 deletion
statemachine.solution/build.gradle
with
1485 additions
and
970 deletions
libs/rd-builder.jar
→
libs/rd-builder
-1.3.0
.jar
+
0
−
0
View file @
b4e6b430
No preview for this file type
This diff is collapsed.
Click to expand it.
ragdoc-view/package-lock.json
+
1461
−
969
View file @
b4e6b430
This diff is collapsed.
Click to expand it.
statemachine.solution/build.gradle
+
24
−
1
View file @
b4e6b430
...
@@ -33,7 +33,7 @@ dependencies {
...
@@ -33,7 +33,7 @@ dependencies {
implementation
group:
'de.tudresden.inf.st'
,
name:
'dumpAstWithPlantuml'
,
version:
'0.3.5'
implementation
group:
'de.tudresden.inf.st'
,
name:
'dumpAstWithPlantuml'
,
version:
'0.3.5'
jastadd2
"org.jastadd:jastadd:2.3.4"
jastadd2
"org.jastadd:jastadd:2.3.4"
ragdoc
files
(
'../libs/rd-builder.jar'
)
ragdoc
files
(
'../libs/rd-builder
-1.3.0
.jar'
)
}
}
// Default run configuration
// Default run configuration
...
@@ -62,6 +62,29 @@ task ecoreToRelast(type: JavaExec) {
...
@@ -62,6 +62,29 @@ task ecoreToRelast(type: JavaExec) {
outputs
.
files
file
(
relastFile
)
outputs
.
files
file
(
relastFile
)
}
}
task
(
'ragdoc-java-8'
,
type:
JavaExec
,
group:
'documentation'
)
{
description
'Generates RagDoc metadata for this JastAdd project.'
inputs
.
files
{
sourceSets
.
main
.
allJava
.
files
}
main
=
'org.extendj.ragdoc.RagDocBuilder'
doFirst
{
def
destDir
=
new
File
(
docsDir
,
'ragdoc'
)
if
(!
destDir
.
isDirectory
())
{
destDir
.
mkdirs
()
}
classpath
=
configurations
.
ragdoc
def
sourceFiles
=
sourceSets
.
main
.
allJava
.
files
args
([
'-d'
,
"$destDir"
,
'-bootclasspath'
,
'/usr/lib/jvm/java-1.8.0/jre/lib/rt.jar'
,
]
+
sourceFiles
)
}
}
// Second phase: RelAst -> JastAdd
// Second phase: RelAst -> JastAdd
task
relastToJastAdd
(
type:
JavaExec
)
{
task
relastToJastAdd
(
type:
JavaExec
)
{
group
=
'Build'
group
=
'Build'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment