Skip to content
Snippets Groups Projects
Commit b7426b98 authored by René Schöne's avatar René Schöne
Browse files

Split statemachine into base and DrAST.

parent bfa8febc
No related branches found
No related tags found
No related merge requests found
Showing
with 2 additions and 24 deletions
rootProject.name = 'ifm-refactoring-jastadd' rootProject.name = 'ifm-refactoring-jastadd'
include 'statemachine' include 'statemachine.base'
include 'statemachine.drast'
include 'ragdoc-view' include 'ragdoc-view'
...@@ -5,4 +5,3 @@ src/gen-res/ ...@@ -5,4 +5,3 @@ src/gen-res/
/bin/ /bin/
logs/ logs/
/doc/ /doc/
DrAST.cfg
...@@ -36,8 +36,6 @@ task cleanRagdoc(type: Delete) { ...@@ -36,8 +36,6 @@ task cleanRagdoc(type: Delete) {
dependencies { dependencies {
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "${jackson_version}" implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "${jackson_version}"
implementation group: 'net.sf.beaver', name: 'beaver-rt', version: '0.9.11' implementation group: 'net.sf.beaver', name: 'beaver-rt', version: '0.9.11'
implementation files('../libs/DrAST-1.2.2.jar')
implementation fileTree(dir: "${System.properties['java.home']}", include: '**/jfxrt.jar')
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.jar')
...@@ -64,26 +62,6 @@ jar { ...@@ -64,26 +62,6 @@ jar {
} }
} }
task jarDrAst(type: Jar) {
group = "build"
description = 'create a jar to runthe DrAST visual debugger tool'
manifest {
attributes 'Implementation-Title': 'DrAST visual debugger tool for StateMachine',
'Implementation-Version': project.version,
'Main-Class': 'de.tudresden.inf.st.statemachine.DrAstRunner'
}
archivesBaseName = 'drast-statemachine-all'
from { sourceSets.main.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
task runDrAST(type: JavaExec, dependsOn: jar) {
group = "application"
description = 'run the DrAST visual debugger tool'
classpath = sourceSets.main.runtimeClasspath
main = 'de.tudresden.inf.st.statemachine.DrAstRunner'
}
def relastFiles = fileTree('src/main/jastadd/') { include '**/*.relast' } + def relastFiles = fileTree('src/main/jastadd/') { include '**/*.relast' } +
fileTree('src/gen/jastadd/') { include '**/*.relast' } fileTree('src/gen/jastadd/') { include '**/*.relast' }
String[] relastArguments = [ String[] relastArguments = [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment