diff options
Diffstat (limited to 'website/download.html')
-rw-r--r-- | website/download.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/website/download.html b/website/download.html new file mode 100644 index 00000000..7a2d13e9 --- /dev/null +++ b/website/download.html @@ -0,0 +1,39 @@ +<!DOCTYPE html> +<html><head> + <meta http-equiv="Content-Type" content="application/html; charset=utf-8" /> + <script src="logi/jQuery-all.js" type="text/javascript"></script> + <script src="index.js" type="text/javascript"></script> + <link rel="stylesheet" type="text/css" href="logi/reset.css" /> + <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> + <meta name="description" content="Spice up your java" /> + <title>Project Lombok</title> + <!--[if lt IE 7]><script type="text/javascript" src="logi/iepngfix_tilebg.js"></script><![endif]--> + <style type="text/css"> + code { + font-size: 12px; + font-family: monospaced; + } + + #downloadLink { + font-size: 14px; + } + + .meat { + margin: 16px auto 0 auto; + width: 800px; + } + </style> +</head><body> + <div class="meat"> + <h1>Download Lombok</h1> + <p id="downloadHelp"> + Just double-click the <code>lombok.jar</code> file you've downloaded to install lombok into + your IDE. <code>lombok.jar</code> is also the jar you use as a project dependency + (include it in your classpath when compiling with <code>javac</code> or add it to your project + library list in your java IDE). It's the only jar you need! + </p> + <a href="http://projectlombok.googlecode.com/files/lombok.jar" id="downloadLink"> + Download now! + </a> + </div> +</body></html> |