File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ STACK_GETTER_COMMON=$(location :stack_getter_common)
100100CHECKS=$(location :checks)
101101JAVABASE=$$PWD/$(JAVABASE)
102102JAR=$$PWD/$(JAVABASE)/bin/jar
103- $$JAVABASE/bin/javac -d $$TMPDIR -source 1. 8 -target 1. 8 -cp $${STACK_GETTER_COMMON}:$${CHECKS} -implicit:none \
103+ $$JAVABASE/bin/javac -d $$TMPDIR -source 8 -target 8 -cp $${STACK_GETTER_COMMON}:$${CHECKS} -implicit:none \
104104 $(location src/main/java/com/google/common/flogger/util/StackWalkerStackGetter.java)
105105cd $$TMPDIR && $$JAR cf $$OUTPUT com/google/common/flogger/util/*StackGetter*.class
106106 """ ,
@@ -111,14 +111,14 @@ cd $$TMPDIR && $$JAR cf $$OUTPUT com/google/common/flogger/util/*StackGetter*.cl
111111java_library (
112112 name = "stack_getter_common" ,
113113 srcs = STACK_GETTER_COMMON_SRCS ,
114- javacopts = ["-source 8 -target 8 " ],
114+ javacopts = ["-source 7 -target 7 " ],
115115 deps = [":checks" ],
116116)
117117
118118java_library (
119119 name = "checks" ,
120120 srcs = CHECKS ,
121- javacopts = ["-source 8 -target 8 " ],
121+ javacopts = ["-source 7 -target 7 " ],
122122)
123123
124124pom_file (
@@ -132,7 +132,10 @@ jarjar_library(
132132 name = "merged_api" ,
133133 jars = [
134134 ":api" ,
135+ ":checks" ,
135136 ":platform_provider" ,
137+ ":stack_getter_common" ,
138+ ":stack_getter_impl" ,
136139 ],
137140)
138141
You can’t perform that action at this time.
0 commit comments