-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle .srcjar inputs in Bazel aspect (#754)
* Unpack .srcjars in Bazel aspect and add them to scip config * Use --verbose_failures when invoking scip-java aspect * Scip buildtool can now handle folders of source files * Improve compatibility with different Bazel versions * remove redundant conversion * Add a srcjar example/test
- Loading branch information
1 parent
e2d6e7e
commit a4eb361
Showing
5 changed files
with
91 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
genrule( | ||
name = "generated-srcjar", | ||
outs = ["sources.srcjar"], | ||
cmd = "echo 'package com.testing; public class Bar {};' > Bar.java && jar cf $(@) Bar.java", | ||
) | ||
|
||
java_library( | ||
name = "testing", | ||
srcs = [ | ||
"Foo.java", | ||
":generated-srcjar", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// testing/Foo.java | ||
package com.testing; | ||
|
||
public class Foo { | ||
public Bar foo(Bar value) { | ||
return value; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters