aboutsummaryrefslogtreecommitdiff
path: root/website2/templates/download.html
blob: af992c39b3e7f5addcb5ff05475328fb5aaa426f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<#import "/_scaffold.html" as main>
<@main.scaffold>
	<div class="page-header top5">
		<div>
			<div class="row page-center">
				<div>
					<h1 class="text-center">
						<div class="row">
							<icon class="fa fa-download"></icon>
							<a>
								Download ${version}
							</a>
						</div>
						<div class="row">
							<a href="#/changelog">
								changelog
							</a>
						</div>
					</h1>
				</div>
			</div>
			<div class="row">
				<div class="text-center">
					<h3>
						Feeling adventurous? Download the latest <a href="lombok-edge.jar">snapshot</a>
						release.
					</h3>
				</div>
			</div>
		</div>
	
		<!--<div class="row">-->
	
		<!--<table class="table table-bordered">-->
		<!--<tr>-->
		<!--<td class="platform">Maven,&nbsp;Ivy&nbsp;or&nbsp;Gradle</td>-->
		<!--<td class="instruction">Lombok is in maven central. <a href="mavenrepo/index.html">More&hellip;</a>-->
		<!--</td>-->
		<!--</tr>-->
	
		<!--<tr>-->
		<!--<td class="platform">Javac</td>-->
		<!--<td class="instruction">Just put <code>lombok.jar</code> on the classpath.</td>-->
		<!--</tr>-->
	
		<!--<tr>-->
		<!--<td class="platform">NetBeans</td>-->
		<!--<td class="instruction">Just put <code>lombok.jar</code> on the classpath and enable annotation-->
		<!--processing. <a href="/setup/netbeans.html">More&hellip;</a></td>-->
		<!--</tr>-->
	
		<!--<tr>-->
		<!--<td class="platform">Eclipse&nbsp;and&nbsp;variants</td>-->
		<!--<td class="instruction">Run <code>lombok.jar</code> as a java app (i.e. doubleclick it, usually) to-->
		<!--install. Also add lombok.jar to your project. <span style="font-size: 0.8em;"><em>Supported-->
		<!--variants: Springsource Tool Suite, JBoss Developer Studio</em></span></td>-->
		<!--</tr>-->
	
		<!--<tr>-->
		<!--<td class="platform">IDEA&nbsp;IntelliJ</td>-->
		<!--<td class="instruction"><a href="https://github.com/mplushnikov/lombok-intellij-plugin">A plugin-->
		<!--developed by Michael Plushnikov</a> adds support for most features.-->
		<!--</td>-->
		<!--</tr>-->
	
		<!--<tr>-->
		<!--<td class="platform">Javadoc</td>-->
		<!--<td class="instruction">First delombok your code then run javadoc on the result. <a-->
		<!--href="/features/delombok">More&hellip;</a></td>-->
		<!--</tr>-->
	
		<!--<tr>-->
		<!--<td class="platform">Android</td>-->
		<!--<td class="instruction">The proper way to use lombok with android is somewhat complicated but-->
		<!--possible. <a href="/setup/android.html">More&hellip;</a></td>-->
		<!--</tr>-->
	
		<!--<tr>-->
		<!--<td class="platform">GWT</td>-->
		<!--<td class="instruction">Lombok works with GWT. <a href="setup/gwt.html">More&hellip;</a></td>-->
		<!--</tr>-->
	
		<!--<tr>-->
		<!--<td class="platform">Play!&nbsp;Framework</td>-->
		<!--<td class="instruction">Use Aaron Freeman's <a-->
		<!--href="https://github.com/aaronfreeman/play-lombok#readme">lombok play plugin</a>.-->
		<!--</td>-->
		<!--</tr>-->
	
		<!--<tr>-->
		<!--<td class="platform">ecj</td>-->
		<!--<td class="instruction">Lombok works on ecj and ecj-based tools. <a-->
		<!--href="setup/ecj.html">More&hellip;</a></td>-->
		<!--</tr>-->
		<!--</table>-->
		<!--<p style="font-size: 0.9em">-->
		<!--Or, <a href="/all-versions">download</a> a previous version of-->
		<!--lombok.-->
		<!--</p>-->
		<!--</div>-->
	</div>
</@main.scaffold>