Skip to content

Commit

Permalink
merged branch line_number_in_error_message_fix; version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
naltatis committed Jun 18, 2012
1 parent 4b9b7ba commit 80b6f82
Show file tree
Hide file tree
Showing 11 changed files with 164 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -92,7 +92,7 @@ We are using Github for Maven hosting. Just add this repository ...
<dependency>
<groupId>de.neuland</groupId>
<artifactId>jade4j</artifactId>
<version>0.2.9</version>
<version>0.2.12</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.neuland</groupId>
<artifactId>jade4j</artifactId>
<version>0.2.11</version>
<version>0.2.12</version>
<name>jade templating engine for Java VM</name>
<issueManagement>
<url>https://github.com/neuland/jade4j/issues</url>
Expand Down
Binary file not shown.
1 change: 1 addition & 0 deletions releases/de/neuland/jade4j/0.2.12/jade4j-0.2.12.jar.md5
@@ -0,0 +1 @@
709a06b5322612b5d30c600b96c9bfe1
1 change: 1 addition & 0 deletions releases/de/neuland/jade4j/0.2.12/jade4j-0.2.12.jar.sha1
@@ -0,0 +1 @@
720a88a4ed91300f98a23d44a0e12117bcd670a9
153 changes: 153 additions & 0 deletions releases/de/neuland/jade4j/0.2.12/jade4j-0.2.12.pom
@@ -0,0 +1,153 @@
<?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.2.12</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:git@github.com: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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<excludes>
<include>**/log4j.xml</include>
<include>**/log4j.dtd</include>
</excludes>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>ognl</groupId>
<artifactId>ognl</artifactId>
<version>3.0.3</version>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
<version>3.0.5.RELEASE</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.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.1</version>
</dependency>

<!-- Other dependencies -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.6.0</version>
</dependency>

<!-- Testing -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.6.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.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>
1 change: 1 addition & 0 deletions releases/de/neuland/jade4j/0.2.12/jade4j-0.2.12.pom.md5
@@ -0,0 +1 @@
330f092ae54aec9d633be63eeb7257f8
1 change: 1 addition & 0 deletions releases/de/neuland/jade4j/0.2.12/jade4j-0.2.12.pom.sha1
@@ -0,0 +1 @@
44320e7ff0290e3da4ac03cd7d6ca4847df1ac4f
5 changes: 3 additions & 2 deletions releases/de/neuland/jade4j/maven-metadata.xml
Expand Up @@ -3,7 +3,7 @@
<groupId>de.neuland</groupId>
<artifactId>jade4j</artifactId>
<versioning>
<release>0.2.11</release>
<release>0.2.12</release>
<versions>
<version>0.2.0</version>
<version>0.2.1</version>
Expand All @@ -17,7 +17,8 @@
<version>0.2.9</version>
<version>0.2.10</version>
<version>0.2.11</version>
<version>0.2.12</version>
</versions>
<lastUpdated>20120615085312</lastUpdated>
<lastUpdated>20120618072228</lastUpdated>
</versioning>
</metadata>
2 changes: 1 addition & 1 deletion releases/de/neuland/jade4j/maven-metadata.xml.md5
@@ -1 +1 @@
13100f45a51ff7e08aea4e8d7a30eb58
912a940a7fef2554b96b1aa473dce09a
2 changes: 1 addition & 1 deletion releases/de/neuland/jade4j/maven-metadata.xml.sha1
@@ -1 +1 @@
b33c7d4e76a455e2525173a287bfcb958fcb905e
4666ac6b01197e64bf17a3b279e04397df32d81a

0 comments on commit 80b6f82

Please sign in to comment.