Skip to content

Commit 0261581

Browse files
committed
Target Java 7.
Java 6 was EOL'd in March, 2013. Java 7's last public update was in April, 2015. If a company is not running Java 7 (at least! it seems as if they'll never update. Embrace the past: target Java 7.
1 parent 5f3fb1d commit 0261581

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: .buckconfig

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[java]
22
src_roots = /java/client/src, /java/client/test, /java/server/src, /java/server/test
3+
source_level = 7
4+
target_level = 7
35

46
[project]
57
ignore = \

Diff for: rake-tasks/crazy_fun/mappings/java.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,8 @@ def handle(fun, dir, args)
318318
:optimize => true,
319319
:debug => true,
320320
:nowarn => true,
321-
:source => '1.6',
322-
:target => '1.6'
321+
:source => '1.7',
322+
:target => '1.7'
323323
) { |ant|
324324
ant.classpath(:refid => "#{args[:name]}.path")
325325

0 commit comments

Comments
 (0)