Skip to content

Commit

Permalink
All versions incresed
Browse files Browse the repository at this point in the history
  • Loading branch information
robertotru committed Jul 9, 2016
1 parent 8b00e1f commit 2908c88
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jmh.version>1.11.2</jmh.version>
<jmh.version>1.12</jmh.version>
<uberjar.name>benchmarks</uberjar.name>

<pebble.version>2.2.0</pebble.version>
<mustache.version>0.9.1</mustache.version>
<pebble.version>2.2.2</pebble.version>
<mustache.version>0.9.2</mustache.version>
<freemarker.version>2.3.23</freemarker.version>
<velocity.version>1.7</velocity.version>
<thymeleaf.version>2.1.4.RELEASE</thymeleaf.version>
<thymeleaf.version>3.0.0.RELEASE</thymeleaf.version>
<junit.version>4.12</junit.version>
<trimou.version>1.8.2.Final</trimou.version>
<hbs.version>4.0.1</hbs.version>
<rocker.version>0.10.3</rocker.version>
<trimou.version>2.0.1.Final</trimou.version>
<hbs.version>4.0.5</hbs.version>
<rocker.version>0.12.0</rocker.version>
</properties>

<licenses>
Expand All @@ -47,8 +47,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/stocks.thymeleaf.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ <h1>Stock Prices</h1>
<tbody>
<!--/* Note that itemStat.odd works with index (starting with 0) whereas itemStat.count is starting with 1 */-->
<tr th:each="item: ${items}"
th:class="${itemStat.odd}? 'even' : 'odd'">
th:class="${itemStat.even}? 'even' : 'odd'">
<td th:utext="${itemStat.count}"></td>
<td><a th:href="${'/stocks/' + item.symbol}"
th:utext="${item.symbol}"></a></td>
Expand Down

0 comments on commit 2908c88

Please sign in to comment.