Skip to content

Commit 1706832

Browse files
committed
Missing required Java version fix #864
1 parent 0c58798 commit 1706832

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ Handlebars provides the power necessary to let you build semantic templates effe
3030

3131
The [Handlebars.java blog](https://jknack.github.io/handlebars.java) is a good place for getting started too. Javadoc is available at [javadoc.io](https://javadoc.io/doc/com.github.jknack/handlebars).
3232

33+
Since 4.3.0 release Handlebars.java requires Java 8 or higher.
34+
3335
## Maven
3436
#### Stable version: [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.jknack/handlebars/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.jknack/handlebars)
3537

@@ -42,10 +44,6 @@ Handlebars provides the power necessary to let you build semantic templates effe
4244
</dependency>
4345
```
4446

45-
#### Development version
46-
47-
SNAPSHOT versions are NOT synchronized to Central. If you want to use a snapshot version you need to add the https://oss.sonatype.org/content/repositories/snapshots/ repository to your pom.xml.
48-
4947
### Loading templates
5048
Templates are loaded using the ```TemplateLoader``` class. Handlebars.java provides three implementations of a ```TemplateLoader```:
5149
* ClassPathTemplateLoader (default)

pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,5 +398,7 @@
398398
<jacoco.version>0.8.7</jacoco.version>
399399
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ssa</maven.build.timestamp.format>
400400
<timestamp>${maven.build.timestamp}</timestamp>
401+
<maven.compiler.source>1.8</maven.compiler.source>
402+
<maven.compiler.target>1.8</maven.compiler.target>
401403
</properties>
402404
</project>

0 commit comments

Comments
 (0)