Skip to content

Commit

Permalink
update pom
Browse files Browse the repository at this point in the history
  • Loading branch information
mikera committed Aug 9, 2014
1 parent 34c5e7d commit 1c762f6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -2,14 +2,14 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>clisk</artifactId>
<groupId>net.mikera</groupId>
<version>0.10.1-SNAPSHOT</version>
<version>0.10.1</version>
<name>Clisk</name>
<description>The Clojure Image Synthesis Kit</description>

<parent>
<groupId>net.mikera</groupId>
<artifactId>clojure-pom</artifactId>
<version>0.1.5</version>
<version>0.2.0</version>
</parent>

<licenses>
Expand All @@ -23,7 +23,7 @@
<connection>scm:git:git@github.com:mikera/${project.artifactId}.git</connection>
<url>scm:git:git@github.com:mikera/${project.artifactId}.git</url>
<developerConnection>scm:git:git@github.com:mikera/${project.artifactId}.git</developerConnection>
<tag>HEAD</tag>
<tag>clisk-0.10.1</tag>
</scm>

<repositories>
Expand Down
5 changes: 4 additions & 1 deletion src/main/java/clisk/Generator.java
Expand Up @@ -17,6 +17,8 @@ public class Generator {

/**
* Generates a Clisk image from a script
*
* @param script A String containing the clisk source script
*/
public static BufferedImage generate(String script) {
return generate(script,256,256);
Expand All @@ -34,7 +36,8 @@ public static BufferedImage generate(String script, int width, int height) {

/**
* Testing main function
* @param args
*
* @param args The startup arguments
*/
public static void main(String[] args) {
Util.show(generate("vplasma"));
Expand Down

0 comments on commit 1c762f6

Please sign in to comment.