Skip to content

Commit

Permalink
Merge pull request #79 from menny/fix-missing-active-profile
Browse files Browse the repository at this point in the history
Fix missing active profile
  • Loading branch information
menny committed Apr 9, 2021
2 parents dbe38dd + 0f0d590 commit 4c2806a
Show file tree
Hide file tree
Showing 27 changed files with 1,223 additions and 248 deletions.
6 changes: 5 additions & 1 deletion examples/plain_java/program/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ generate_transitive_dependency_targets()

mabel_rule(
name = "main_deps",
debug_logs = True,
generated_targets_prefix = "",
maven_deps = [artifact("com.google.guava:guava:20.0")],
maven_deps = [
artifact("com.google.guava:guava:20.0"),
artifact("org.jboss.resteasy:resteasy-client:3.13.1.Final"),
],
)

java_binary(
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""
External Maven targets for artifact com.github.stephenc.jcip:jcip-annotations
Auto-generated by https://github.com/menny/mabel
"""

alias(
name = "jcip-annotations",
actual = "//program:com_github_stephenc_jcip__jcip_annotations",
visibility = ["//visibility:public"],
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""
External Maven targets for artifact com.sun.activation:jakarta.activation
Auto-generated by https://github.com/menny/mabel
"""

alias(
name = "jakarta.activation",
actual = "//program:com_sun_activation__jakarta_activation",
visibility = ["//visibility:public"],
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""
External Maven targets for artifact commons-codec:commons-codec
Auto-generated by https://github.com/menny/mabel
"""

alias(
name = "commons-codec",
actual = "//program:commons_codec__commons_codec",
visibility = ["//visibility:public"],
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""
External Maven targets for artifact commons-io:commons-io
Auto-generated by https://github.com/menny/mabel
"""

alias(
name = "commons-io",
actual = "//program:commons_io__commons_io",
visibility = ["//visibility:public"],
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""
External Maven targets for artifact commons-logging:commons-logging
Auto-generated by https://github.com/menny/mabel
"""

alias(
name = "commons-logging",
actual = "//program:commons_logging__commons_logging",
visibility = ["//visibility:public"],
)
Loading

0 comments on commit 4c2806a

Please sign in to comment.