|
1
2
|
#Download
|
|
3
|
#set($metadata = $xml.read("http://central.maven.org/maven2/org/textexploration/mtas/mtas/maven-metadata.xml"))
|
|
4
5
6
7
8
9
10
11
|
**Latest release**
<table>
<tbody>
<tr>
<th>Version</th>
<th>Lucene/Solr</th>
|
|
12
|
<th>Release</th>
|
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<th colspan='3'>GitHub</th>
<th colspan='4'>Maven</th>
</tr>
#set($version = $metadata.versioning.latest)
#set($fullversion = $version.getText())
#set($versionnumbers = $StringUtils.split($fullversion,"."))
#foreach( $item in $loop.watch($versionnumbers) )
#set($itemindex = $loop.getIndex())
#if ($itemindex == 0)
#set($majorversion = $item)
#elseif ($itemindex == 1)
#set($minorversion = $item)
#elseif ($itemindex == 2)
#set($incrementalversion = $item)
#elseif ($itemindex == 3)
#set($mtasversion = $item)
#end
#end
<tr>
<td>${fullversion}</td>
|
|
33
|
<td><a href='http://archive.apache.org/dist/lucene/solr/${majorversion}.${minorversion}.${incrementalversion}/'>${majorversion}.${minorversion}.${incrementalversion}</a></td>
|
|
34
|
<td>${mtasversion}</td>
|
|
35
36
37
38
39
40
41
|
<td><a href='https://github.com/textexploration/mtas/releases/download/v${fullversion}/mtas-${fullversion}.jar'>Binary (jar)</a></td>
<td><a href='https://github.com/textexploration/mtas/archive/v${fullversion}.tar.gz'>Source (tgz)</a></td>
<td><a href='https://github.com/textexploration/mtas/archive/v${fullversion}.zip'>Source (zip)</a></td>
<td><a href='http://central.maven.org/maven2/org/textexploration/mtas/mtas/${fullversion}/mtas-${fullversion}.pom'>pom</a></td>
<td><a href='http://central.maven.org/maven2/org/textexploration/mtas/mtas/${fullversion}/mtas-${fullversion}.jar'>jar</a></td>
<td><a href='http://central.maven.org/maven2/org/textexploration/mtas/mtas/${fullversion}/mtas-${fullversion}-javadoc.jar'>javadoc.jar</a></td>
<td><a href='http://central.maven.org/maven2/org/textexploration/mtas/mtas/${fullversion}/mtas-${fullversion}-sources.jar'>sources.jar</a></td>
|
|
42
43
44
45
46
|
</tr>
</tbody>
</table>
**Previous releases**
|
|
47
48
49
50
|
<table>
<tbody>
<tr>
|
|
51
|
<th>Version</th>
|
|
52
|
<th>Lucene/Solr</th>
|
|
53
|
<th>Release</th>
|
|
54
|
<th colspan='3'>GitHub</th>
|
|
55
|
<th colspan='4'>Maven</th>
|
|
56
|
</tr>
|
|
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
#foreach($version in $metadata.versioning.versions.children().iterator())
#set($fullversion = $version.getText())
#if($fullversion != $metadata.versioning.latest.getText())
#set($versionnumbers = $StringUtils.split($fullversion,"."))
#foreach( $item in $loop.watch($versionnumbers) )
#set($itemindex = $loop.getIndex())
#if ($itemindex == 0)
#set($majorversion = $item)
#elseif ($itemindex == 1)
#set($minorversion = $item)
#elseif ($itemindex == 2)
#set($incrementalversion = $item)
#elseif ($itemindex == 3)
#set($mtasversion = $item)
#end
#end
|
|
73
|
<tr>
|
|
74
|
<td>${fullversion}</td>
|
|
75
|
<td><a href='http://archive.apache.org/dist/lucene/solr/${majorversion}.${minorversion}.${incrementalversion}/'>${majorversion}.${minorversion}.${incrementalversion}</a></td>
|
|
76
|
<td>${mtasversion}</td>
|
|
77
78
79
80
81
82
83
|
<td><a href='https://github.com/textexploration/mtas/releases/download/v${fullversion}/mtas-${fullversion}.jar'>Binary (jar)</a></td>
<td><a href='https://github.com/textexploration/mtas/archive/v${fullversion}.tar.gz'>Source (tgz)</a></td>
<td><a href='https://github.com/textexploration/mtas/archive/v${fullversion}.zip'>Source (zip)</a></td>
<td><a href='http://central.maven.org/maven2/org/textexploration/mtas/mtas/${fullversion}/mtas-${fullversion}.pom'>pom</a></td>
<td><a href='http://central.maven.org/maven2/org/textexploration/mtas/mtas/${fullversion}/mtas-${fullversion}.jar'>jar</a></td>
<td><a href='http://central.maven.org/maven2/org/textexploration/mtas/mtas/${fullversion}/mtas-${fullversion}-javadoc.jar'>javadoc.jar</a></td>
<td><a href='http://central.maven.org/maven2/org/textexploration/mtas/mtas/${fullversion}/mtas-${fullversion}-sources.jar'>sources.jar</a></td>
|
|
84
|
</tr>
|
|
85
86
87
|
#end
#end
</tbody>
|
|
88
89
|
</table>
|
|
90
|
See also the [Maven Central Repository](https://mvnrepository.com/artifact/org.textexploration.mtas/mtas) and [GitHub Releases](https://github.com/textexploration/mtas/releases).
|