-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
150 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
# History | ||
|
||
## 0.3.14 / 2013-08-24 | ||
* added ability to clear expression and template caches | ||
* added new convenience method to Jade4J thats lets you use Reader #49 | ||
|
||
## 0.3.13 / 2013-08-21 | ||
* the indentation exception shows the expected indent sequence #50 | ||
* the indentation exception shows the expected indent sequence #50 | ||
* code nodes can have sub blocks #44 | ||
* better error message for invalid attribute definition #37 | ||
* blockquotes are now parsed correctly and don't interfere with "layout blocks" #45 | ||
* ExpressionStrings are now evaluated multiple times to support expressions that point to expressions #47 | ||
* better error message for invalid attribute definition #37 | ||
* blockquotes are now parsed correctly and don't interfere with "layout blocks" #45 | ||
* ExpressionStrings are now evaluated multiple times to support expressions that point to expressions #47 | ||
|
||
## 0.3.12 / 2013-06-20 | ||
* reduced jexl log level for 'unknown variable' messages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
#!/bin/bash | ||
mvn versions:set | ||
mvn -DaltDeploymentRepository=snapshot-repo::default::file:releases clean deploy | ||
rm pom.xml.versionsBackup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
cc42b0ed0e4c59af93fe9e46aebe41b4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
50e5a88c701c9a611ee2b49a324ce5004e25fc7b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>de.neuland</groupId> | ||
<artifactId>jade4j</artifactId> | ||
<version>0.3.14</version> | ||
<name>jade templating engine for Java VM</name> | ||
<issueManagement> | ||
<url>https://github.com/neuland/jade4j/issues</url> | ||
<system>GitHub Issues</system> | ||
</issueManagement> | ||
<licenses> | ||
<license> | ||
<name>MIT License</name> | ||
<url>http://www.opensource.org/licenses/mit-license.php</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
||
<scm> | ||
<url>https://github.com/neuland/jade4j</url> | ||
<connection>scm:git:git://github.com/neuland/jade4j.git</connection> | ||
<developerConnection>scm:git:[email protected]:neuland/jade4j.git</developerConnection> | ||
</scm> | ||
|
||
<developers> | ||
<developer> | ||
<name>Artur Tomas</name> | ||
<url>https://github.com/atomiccoder</url> | ||
<id>atomiccoder</id> | ||
</developer> | ||
<developer> | ||
<name>Stefan Kuper</name> | ||
<url>https://github.com/planetk</url> | ||
<id>planetk</id> | ||
</developer> | ||
<developer> | ||
<name>Michael Geers</name> | ||
<url>https://github.com/naltatis</url> | ||
<id>naltatis</id> | ||
</developer> | ||
</developers> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
|
||
<distributionManagement> | ||
<repository> | ||
<id>repo</id> | ||
<url>https://github.com/neuland/jade4j/raw/master/releases</url> | ||
</repository> | ||
<snapshotRepository> | ||
<id>snapshot-repo</id> | ||
<url>https://github.com/neuland/jade4j/raw/master/snapshots</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.3.2</version> | ||
<configuration> | ||
<source>1.6</source> | ||
<target>1.6</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.12</version> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-jexl</artifactId> | ||
<version>2.1.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-collections</groupId> | ||
<artifactId>commons-collections</artifactId> | ||
<version>3.2.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<version>2.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-lang3</artifactId> | ||
<version>3.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.googlecode.concurrentlinkedhashmap</groupId> | ||
<artifactId>concurrentlinkedhashmap-lru</artifactId> | ||
<version>1.3.1</version> | ||
</dependency> | ||
|
||
<!-- Testing --> | ||
<dependency> | ||
<groupId>org.hamcrest</groupId> | ||
<artifactId>hamcrest-all</artifactId> | ||
<version>1.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.10</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.pegdown</groupId> | ||
<artifactId>pegdown</artifactId> | ||
<version>1.1.0</version> | ||
</dependency> | ||
|
||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2d720e6a37d12051d696fd1d468b3b23 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
025e9f7006a4c55978e2eac1fcb8202a6e677a76 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
e4e3143518ee242f631c2b6f0e3ee9b7 | ||
317c84838ee802a5c7d5b46c09275012 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
9f0d11a53f15d164e7da2197b99e49bacf9515d8 | ||
6432fce2150a631400d75ad4a95a29ec2a7a26b7 |