File tree Expand file tree Collapse file tree
io.opencaesar.oml.specification Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4141 run : ./gradlew build
4242
4343 - name : Run generateDocs
44- run : ./gradlew generateDocs --info
44+ run : ./gradlew generateDocs
4545
4646 - name : Set up Maven
4747 uses : stCarolas/setup-maven@v5
Original file line number Diff line number Diff line change 11ext. title = ' Oml Textual Language Test'
22description = ' Test for Oml textual language'
33
4- task copySrc () {
5- copy {
6- from ' src/main'
7- into ' build/bikeshed'
8- }
9- copy {
10- from ' src/v1'
11- into ' build/bikeshed/v1'
12- }
4+ task copyBikeshed (type :Copy ) {
5+ from ' src/main'
6+ into ' build/bikeshed'
7+ }
8+
9+ task copyV1Bikeshed (type :Copy ) {
10+ from ' src/v1'
11+ into ' build/bikeshed/v1'
1312}
1413
15- task ecoreToBikeshed (type :io.opencaesar.ecore.bikeshed.Ecore2BikeshedTask , dependsOn : copySrc ) {
14+ task ecoreToBikeshed (type :io.opencaesar.ecore.bikeshed.Ecore2BikeshedTask , dependsOn : [copyBikeshed, copyV1Bikeshed] ) {
1615 inputFolderPath = file(' ../io.opencaesar.oml/src/io/opencaesar/oml' )
1716 outputFolderPath = file(' build/bikeshed' )
1817}
You can’t perform that action at this time.
0 commit comments