Skip to content

Commit

Permalink
Fix bal pack failure
Browse files Browse the repository at this point in the history
  • Loading branch information
AzeemMuzammil committed Nov 15, 2023
1 parent 498b588 commit aa076cb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 2 additions & 0 deletions ballerina/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,7 @@ clean {
delete 'build'
}

updateTomlFiles.dependsOn copyStdlibs

publishToMavenLocal.dependsOn build
publish.dependsOn build
Empty file added ballerina/candid.bal
Empty file.
11 changes: 7 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ plugins {
}

allprojects {
apply plugin: 'maven-publish'

group = project.group
version = project.version

apply plugin: 'maven-publish'

repositories {
mavenLocal()
maven {
Expand Down Expand Up @@ -63,14 +63,17 @@ allprojects {
}
}

def moduleVersion = project.version.replace("-SNAPSHOT", "")

subprojects {
configurations {
ballerinaStdLibs
jbalTools
}
}

def moduleVersion = project.version.replace("-SNAPSHOT", "")
dependencies {
}
}

task build {
dependsOn(':candid-ballerina:build')
Expand Down

0 comments on commit aa076cb

Please sign in to comment.