Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restructure plugin code #169

Merged
merged 1 commit into from
Aug 7, 2024
Merged
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
Restructure plugin code
ayeshLK committed Aug 7, 2024

Verified

This commit was signed with the committer’s verified signature.
lobis Luis Antonio Obis Aparicio
commit af6aefc86235d07cb422eab6b4fa4a0e1fdda346
12 changes: 2 additions & 10 deletions src/main/groovy/io/ballerina/plugin/BallerinaPlugin.groovy
Original file line number Diff line number Diff line change
@@ -295,7 +295,7 @@ class BallerinaPlugin implements Plugin<Project> {
}

// Pack bala first
def result = project.exec {
project.exec {
workingDir project.projectDir
environment 'JAVA_OPTS', '-DBALLERINA_DEV_COMPILE_BALLERINA_ORG=true'
if (ballerinaExtension.isConnector) {
@@ -312,17 +312,9 @@ class BallerinaPlugin implements Plugin<Project> {
}
}
}
result.wait(50000)

def balaPath = "$project.projectDir/${balBuildTarget}/bala"
def balaDir = new File(balaPath)
if (!balaDir.exists()) {
throw new FileNotFoundException(
"[Error] 'bala' directory does not exist: ${balaPath}, hence exiting")
}

// extract bala file to balaArtifact
balaDir.eachFileMatch(~/.*.bala/) { balaFile ->
new File("$project.projectDir/${balBuildTarget}/bala").eachFileMatch(~/.*.bala/) { balaFile ->
project.copy {
from project.zipTree(balaFile)
into new File("$balaArtifact/bala/${packageOrg}/${packageName}/${balaVersion}/${platform}")