Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
build
bin
.gradle
.idea
libs/*.jar
*.class
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ val archivaUserName: String by project
val archivaPassword: String by project

group = "io.sharptree"
version = "1.0.1"
version = "1.0.2"

val vendor = "Sharptree"
val product = "autoscript-dbc"
val distro = "autoscript-dbc"

project.version = "1.0.1"
project.version = "1.0.2"

tasks.compileJava {
sourceCompatibility = "1.8"
Expand Down Expand Up @@ -187,7 +187,7 @@ dependencies {
compileOnly(fileTree("libs") { listOf("*.jar") })

@Suppress("GradlePackageUpdate")
compileOnly("org.jdom:jdom:1.1")
compileOnly("org.jdom:jdom:2.0.2")
@Suppress("GradlePackageUpdate")
compileOnly("log4j:log4j:1.2.16")

Expand Down
2 changes: 1 addition & 1 deletion src/main/dist/tools/maximo/en/example/V1000_01.dbc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
<statements>
<add_update_autoscript path="example.py" language="python"/>
<add_update_autoscript path="scripts/example.js" language="javascript"/>
<remove_autoscript name="examplescriptname"/>
<!-- <remove_autoscript name="examplescriptname"/> -->
</statements>
</script>
Loading