diff options
Diffstat (limited to 'website')
-rw-r--r-- | website/download.html | 3 | ||||
-rw-r--r-- | website/index.css | 3 | ||||
-rw-r--r-- | website/index.html | 4 | ||||
-rw-r--r-- | website/mavenrepo/index.html | 22 |
4 files changed, 19 insertions, 13 deletions
diff --git a/website/download.html b/website/download.html index 5b546b72..cc8ac1c5 100644 --- a/website/download.html +++ b/website/download.html @@ -48,6 +48,9 @@ <a href="http://projectlombok.googlecode.com/files/lombok.jar" id="downloadLink"> Download now! </a> + <p> + <a href="mavenrepo/index.html">Using maven? Click here!</a> + </p> <div class="backLink"> <a href="index.html">back to the project homepage</a> </div> diff --git a/website/index.css b/website/index.css index a1480c40..66dcf3bb 100644 --- a/website/index.css +++ b/website/index.css @@ -127,9 +127,6 @@ code { margin-top: 8px; margin-left: 32px; } -.downloadActions a { - display: block; -} .footer { margin-top: 8px; diff --git a/website/index.html b/website/index.html index f28db795..a2a1e748 100644 --- a/website/index.html +++ b/website/index.html @@ -20,8 +20,8 @@ <div id="downloadInfo" class="buttonBar" style="display: none;"> <span></span> <div class="downloadActions"> - <a class="backToBar" href="http://projectlombok.googlecode.com/files/lombok.jar">Okay, download <strong>lombok</strong></a> - <a href="#" class="backToBar">No, don't</a> + <a class="backToBar" href="http://projectlombok.googlecode.com/files/lombok.jar">Okay, download <strong>lombok</strong></a> | <a href="mavenrepo/index.html">I use maven</a><br /> + <a href="#" class="backToBar">Cancel</a> </div> </div> <div id="buttonBar" class="buttonBar"> diff --git a/website/mavenrepo/index.html b/website/mavenrepo/index.html index 70cd2778..1d791e31 100644 --- a/website/mavenrepo/index.html +++ b/website/mavenrepo/index.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <link rel="stylesheet" type="text/css" href="logi/reset.css" /> + <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> @@ -32,7 +32,13 @@ h1 { padding-bottom: 0; - margin-bottom: 4px; + margin-bottom: 8px; + } + + #downloadLink { + display: block; + margin-top: 32px; + font-size: 14px; } </style> </head><body> @@ -46,19 +52,19 @@ <artifactId>lombok</artifactId> <version>@VERSION@</version> </dependency> -</dependencies></div> - For now you also need to add the following repository, though we've put in a request at apache to add lombok to - the central maven repository, so you may want to try it without this extra block first and see if it works. If not, also add: - <div class="snippet"><repositories> +</dependencies> +<repositories> <repository> <id>projectlombok.org</id> <url>http://projectlombok.org/mavenrepo</url> </repository> </repositories></div> - That's all there is to it! + That's all there is to it!<br /> + <em>note:</em> You'll still need to download lombok, or doubleclick on the lombok.jar file downloaded by maven, to install lombok into your eclipse installation.<br /> + <a id="downloadLink" href="http://projectlombok.googlecode.com/files/lombok.jar">Download lombok.jar</a> </div> <div class="backLink"> - <a href="index.html">back to the project homepage</a> + <a href="../index.html">back to the project homepage</a> </div> </div> <script type="text/javascript"> |