Skip to content

Commit

Permalink
Jump to 2.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Campos committed Mar 30, 2017
1 parent 1ce2594 commit 261cd2f
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion evaluate.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
cp=target/neji-2.1.0-SNAPSHOT-jar-with-dependencies.jar:$CLASSPATH
cp=target/neji-2.0.1-jar-with-dependencies.jar:$CLASSPATH
MEMORY=8G
JAVA_COMMAND="java -Xmx$MEMORY -Dfile.encoding=UTF-8 -classpath $cp"
CLASS=pt.ua.tm.neji.evaluation.EvaluateMain
Expand Down
2 changes: 1 addition & 1 deletion neji.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off

set cp=target\neji-2.1.0-SNAPSHOT-jar-with-dependencies.jar
set cp=target\neji-2.0.1-jar-with-dependencies.jar
set memory=6144m
set encoding=UTF-8
set class=pt.ua.tm.neji.cli.Main
Expand Down
2 changes: 1 addition & 1 deletion neji.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
cp=target/neji-2.1.0-SNAPSHOT-jar-with-dependencies.jar:$CLASSPATH
cp=target/neji-2.0.1-jar-with-dependencies.jar:$CLASSPATH
MEMORY=6G
JAVA_COMMAND="java -Xmx$MEMORY -Dfile.encoding=UTF-8 -classpath $cp"
CLASS=pt.ua.tm.neji.cli.Main
Expand Down
2 changes: 1 addition & 1 deletion nejiTrain.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off

set cp=target/neji-2.1.0-SNAPSHOT-jar-with-dependencies.jar
set cp=target/neji-2.0.1-jar-with-dependencies.jar
set memory=6144m
set encoding=UTF-8
set class=pt.ua.tm.neji.train.cli.TrainMain
Expand Down
2 changes: 1 addition & 1 deletion nejiTrain.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
cp=target/neji-2.1.0-SNAPSHOT-jar-with-dependencies.jar:$CLASSPATH
cp=target/neji-2.0.1-jar-with-dependencies.jar:$CLASSPATH
MEMORY=6G
JAVA_COMMAND="java -Xmx$MEMORY -Dfile.encoding=UTF-8 -classpath $cp"
CLASS=pt.ua.tm.neji.train.cli.TrainMain
Expand Down
2 changes: 1 addition & 1 deletion nejiWeb.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off

set cp=target/neji-2.1.0-SNAPSHOT-server.jar
set cp=target/neji-2.0.1-server.jar
set memory=6144m
set encoding=UTF-8
set class=pt.ua.tm.neji.web.cli.WebMain
Expand Down
2 changes: 1 addition & 1 deletion nejiWeb.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
cp=target/neji-2.1.0-SNAPSHOT-server.jar:$CLASSPATH
cp=target/neji-2.0.1-server.jar:$CLASSPATH
MEMORY=6G
JAVA_COMMAND="java -Xmx$MEMORY -Dfile.encoding=UTF-8 -classpath $cp"
CLASS=pt.ua.tm.neji.web.cli.WebMain
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<groupId>pt.ua.tm</groupId>
<artifactId>neji</artifactId>
<version>2.1.0-SNAPSHOT</version>
<version>2.0.1</version>
<packaging>jar</packaging>

<name>neji</name>
Expand Down

0 comments on commit 261cd2f

Please sign in to comment.