Skip to content

Commit

Permalink
Se completa el README y se configura para generar .jar
Browse files Browse the repository at this point in the history
  • Loading branch information
delucas committed Mar 2, 2014
1 parent 322a41e commit 58b89f7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -11,7 +11,9 @@ El programador deberá codificar un `Jugador`, que tenga la lógica para guiar a

## Modo de uso

Crear una clase que implemente la interfaz de `Jugador`. Por ejemplo, aquí está la que resuelve el primer nivel:
Primero, se debe agregar la biblioteca de `java-warrior` al proyecto.

Luego, es necesario crear una clase que implemente la interfaz de `Jugador`. Por ejemplo, aquí está la que resuelve el primer nivel:

package jwarrior.jugadores;

Expand Down
4 changes: 4 additions & 0 deletions build.gradle
Expand Up @@ -60,6 +60,10 @@ task wrapper(type: Wrapper) {
gradleVersion = '1.9'
}

jar {
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
}

checkstyle {
configFile = new File(rootDir, "src/test/resources/sun_checks.xml")
ignoreFailures = true
Expand Down

0 comments on commit 58b89f7

Please sign in to comment.