Skip to content

Commit

Permalink
Enabled all pegdown extensions. Changed pom version to 0.1.1-SNAPSHOT…
Browse files Browse the repository at this point in the history
… to push a bugfix release.
  • Loading branch information
lhazlewood committed Apr 18, 2013
1 parent f7caa02 commit ec3f052
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.leshazlewood.scms</groupId>
<artifactId>scms-root</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.1.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.leshazlewood.scms</groupId>
<artifactId>scms-root</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.1.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import groovy.util.ConfigSlurper;
import org.apache.velocity.VelocityContext;
import org.apache.velocity.app.VelocityEngine;
import org.pegdown.Extensions;
import org.pegdown.PegDownProcessor;

import java.io.BufferedWriter;
Expand Down Expand Up @@ -130,7 +131,7 @@ public void init() throws Exception {
defaultExcludesEnabled = getValue(scmsConfig, DEFAULT_EXCLUDES_ENABLED_NAME, Boolean.class);
}

pegDownProcessor = new PegDownProcessor();
pegDownProcessor = new PegDownProcessor(Extensions.ALL);
}

private void ensureDirectory(File f) throws IOException {
Expand Down
2 changes: 1 addition & 1 deletion dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.leshazlewood.scms</groupId>
<artifactId>scms-root</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.1.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<groupId>com.leshazlewood.scms</groupId>
<artifactId>scms-root</artifactId>
<version>0.2.0-SNAPSHOT</version>
<version>0.1.1-SNAPSHOT</version>
<packaging>pom</packaging>

<name>SCMS</name>
Expand Down Expand Up @@ -191,7 +191,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<version>2.5</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
Expand Down

0 comments on commit ec3f052

Please sign in to comment.