Skip to content

Commit

Permalink
Target Java 7.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
shs96c committed Jun 9, 2015
1 parent 5f3fb1d commit 0261581
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .buckconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[java]
src_roots = /java/client/src, /java/client/test, /java/server/src, /java/server/test
source_level = 7
target_level = 7

[project]
ignore = \
Expand Down
4 changes: 2 additions & 2 deletions rake-tasks/crazy_fun/mappings/java.rb
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,8 @@ def handle(fun, dir, args)
:optimize => true,
:debug => true,
:nowarn => true,
:source => '1.6',
:target => '1.6'
:source => '1.7',
:target => '1.7'
) { |ant|
ant.classpath(:refid => "#{args[:name]}.path")

Expand Down

0 comments on commit 0261581

Please sign in to comment.