Skip to content

Commit

Permalink
Fixes build.gradle, moves resource files to their own folder
Browse files Browse the repository at this point in the history
  • Loading branch information
joaobispo committed Aug 2, 2024
1 parent bad3d33 commit c24992e
Show file tree
Hide file tree
Showing 7 changed files with 11,856 additions and 11,851 deletions.
33 changes: 19 additions & 14 deletions jsAst/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'distribution'
id 'distribution'
}

// Java project
Expand All @@ -17,25 +17,30 @@ repositories {
}

dependencies {
implementation "junit:junit:4.11"

implementation ':JsEngine'
implementation ':SpecsUtils'
implementation "junit:junit:4.11"

implementation group: 'com.google.code.gson', name: 'gson', version: '2.4'
implementation ':JsEngine'
implementation ':SpecsUtils'

implementation group: 'com.google.code.gson', name: 'gson', version: '2.4'
}

java {
withSourcesJar()
withSourcesJar()
}

// Project sources
sourceSets {
main {
java {
srcDir 'src'
}

}

main {
java {
srcDir 'src'
}

resources {
srcDir 'resources'
}

}


}
Loading

0 comments on commit c24992e

Please sign in to comment.