Skip to content

Commit f6f1cac

Browse files
committed
Lite runtime fix
1 parent b2bd935 commit f6f1cac

2 files changed

Lines changed: 3 additions & 7 deletions

File tree

publish/BUILD.bazel

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -296,9 +296,7 @@ pom_file(
296296
"PACKAGE_NAME": "CEL Java Runtime for Android",
297297
"PACKAGE_DESC": "Common Expression Language Lite Runtime for Java (Suitable for Android)",
298298
},
299-
targets = [
300-
":cel_common",
301-
] + LITE_RUNTIME_TARGETS,
299+
targets = LITE_RUNTIME_TARGETS,
302300
template_file = "pom_template.xml",
303301
)
304302

@@ -308,7 +306,5 @@ java_export(
308306
javadocopts = JAVA_DOC_OPTIONS,
309307
maven_coordinates = "dev.cel:runtime-android:%s" % CEL_VERSION,
310308
pom_template = ":cel_runtime_android_pom",
311-
exports = [
312-
":cel_common",
313-
] + LITE_RUNTIME_TARGETS,
309+
exports = LITE_RUNTIME_TARGETS,
314310
)

publish/cel_version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
"""Maven artifact version for CEL."""
15-
CEL_VERSION = "0.11.1"
15+
CEL_VERSION = "0.12.0-SNAPSHOT"

0 commit comments

Comments
 (0)