diff --git a/compiler-plugin/build.gradle b/compiler-plugin/build.gradle index 9946f9b..4166d00 100644 --- a/compiler-plugin/build.gradle +++ b/compiler-plugin/build.gradle @@ -34,7 +34,6 @@ dependencies { implementation group: 'org.ballerinalang', name: 'toml-parser', version: "${ballerinaLangVersion}" implementation group: 'org.ballerinalang', name: 'formatter-core', version: "${ballerinaLangVersion}" implementation group: 'io.ballerina.stdlib', name: 'persist-native', version: "${stdlibPersistVersion}" - implementation group: 'io.ballerina.stdlib', name: 'persist-compiler-plugin', version: "1.2.1-20240222-125000-4a9d764" implementation group: 'io.ballerina.stdlib', name: 'persist-compiler-plugin', version: "${stdlibPersistVersion}" } diff --git a/compiler-plugin/src/main/java/io/ballerina/stdlib/persist/sql/compiler/PersistSqlCodeAnalyzer.java b/compiler-plugin/src/main/java/io/ballerina/stdlib/persist/sql/compiler/PersistSqlCodeAnalyzer.java index 9272796..f7e3822 100644 --- a/compiler-plugin/src/main/java/io/ballerina/stdlib/persist/sql/compiler/PersistSqlCodeAnalyzer.java +++ b/compiler-plugin/src/main/java/io/ballerina/stdlib/persist/sql/compiler/PersistSqlCodeAnalyzer.java @@ -1,7 +1,7 @@ /* - * Copyright (c) 2022, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * Copyright (c) 2024, WSO2 LLC. (http://www.wso2.org) All Rights Reserved. * - * WSO2 Inc. licenses this file to you under the Apache License, + * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at diff --git a/compiler-plugin/src/main/java/io/ballerina/stdlib/persist/sql/compiler/PersistSqlCompilerPlugin.java b/compiler-plugin/src/main/java/io/ballerina/stdlib/persist/sql/compiler/PersistSqlCompilerPlugin.java index edb2d09..17c9234 100644 --- a/compiler-plugin/src/main/java/io/ballerina/stdlib/persist/sql/compiler/PersistSqlCompilerPlugin.java +++ b/compiler-plugin/src/main/java/io/ballerina/stdlib/persist/sql/compiler/PersistSqlCompilerPlugin.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023, WSO2 LLC. (http://www.wso2.org) All Rights Reserved. + * Copyright (c) 2024, WSO2 LLC. (http://www.wso2.org) All Rights Reserved. * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except diff --git a/compiler-plugin/src/main/java/io/ballerina/stdlib/persist/sql/compiler/PersistSqlModelDefinitionValidator.java b/compiler-plugin/src/main/java/io/ballerina/stdlib/persist/sql/compiler/PersistSqlModelDefinitionValidator.java index 1a6384f..ae02397 100644 --- a/compiler-plugin/src/main/java/io/ballerina/stdlib/persist/sql/compiler/PersistSqlModelDefinitionValidator.java +++ b/compiler-plugin/src/main/java/io/ballerina/stdlib/persist/sql/compiler/PersistSqlModelDefinitionValidator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023, WSO2 LLC. (http://www.wso2.org) All Rights Reserved. + * Copyright (c) 2024, WSO2 LLC. (http://www.wso2.org) All Rights Reserved. * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except diff --git a/compiler-plugin/src/main/java/io/ballerina/stdlib/persist/sql/compiler/utils/Utils.java b/compiler-plugin/src/main/java/io/ballerina/stdlib/persist/sql/compiler/utils/Utils.java index bb97d96..3bc6d98 100644 --- a/compiler-plugin/src/main/java/io/ballerina/stdlib/persist/sql/compiler/utils/Utils.java +++ b/compiler-plugin/src/main/java/io/ballerina/stdlib/persist/sql/compiler/utils/Utils.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023, WSO2 LLC. (http://www.wso2.org) All Rights Reserved. + * Copyright (c) 2024, WSO2 LLC. (http://www.wso2.org) All Rights Reserved. * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except diff --git a/compiler-plugin/src/main/java/module-info.java b/compiler-plugin/src/main/java/module-info.java index 94473f2..db493d0 100644 --- a/compiler-plugin/src/main/java/module-info.java +++ b/compiler-plugin/src/main/java/module-info.java @@ -16,7 +16,7 @@ * under the License. */ -module io.ballerina.stdlib.persist.sql.codemodifier { +module io.ballerina.stdlib.persist.sql.compiler { requires io.ballerina.lang; requires io.ballerina.parser; requires io.ballerina.tools.api;