-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreleases.html
46 lines (37 loc) · 1.42 KB
/
releases.html
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
---
layout: default
---
<h1>
{% for header in site.headers %}
<a class="header" href="{{ header.url }}">{{ header.name }}</a>
{% endfor %}
</h1>
<ul class="posts">
{% for release in site.data.releases %}
<li class="posts"><span class="date">{{ release.date | date: "%Y %m %d" }}</span><a class="icon" href="{{ release.github }}"><span class="icon-github"></span></a><a class="icon" href="{{ release.jira }}"><span class="icon-bug"></span></a><a href="{{ release.announce }}">{{ release.name }}</a>
{% endfor %}
</ul>
<div id="post">
If you are using maven the easiest would be to add this to your pom.xml:
{% highlight xml %}
<dependency>
<groupId>io.agroal</groupId>
<artifactId>agroal-api</artifactId>
<version>${version.io.agroal}</version>
</dependency>
<dependency>
<groupId>io.agroal</groupId>
<artifactId>agroal-pool</artifactId>
<version>${version.io.agroal}</version>
<scope>runtime</scope>
</dependency>
{% endhighlight %}
For gradle builds add the following dependency:
{% highlight groovy %}
dependencies {
compile group: 'io.agroal', name: 'agroal-api', version: '${version.io.agroal}'
runtime group: 'io.agroal', name: 'agroal-pool', version: '${version.io.agroal}'
}
{% endhighlight %}
The releases are distributed through Maven Central repository, so no extra configuration should be necessary.
</div>