Skip to content

Commit

Permalink
Lançamento da versão 0.1.0 (demo)
Browse files Browse the repository at this point in the history
  • Loading branch information
awvalenti committed Jul 4, 2016
1 parent 7f2211b commit 5f59a11
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Copyright © 2015 - 2016, André Willik Valenti. Todos os direitos reservado

## Perguntas e respostas
<dl>
<dt>Posso jogar?</dt>
<dd>Claro! A versão demo 0.1.0 está disponível em <a href="releases">Releases</a>.</dd>

<dt>Código aberto e direitos reservados... Pode isso, Arnaldo?</dt>
<dd>Sim, isso é possível! Veja mais detalhes aqui: http://choosealicense.com/no-license.
Resumindo: somente se receber permissão você legalmente poderá copiar o código para
Expand Down Expand Up @@ -42,4 +45,5 @@ Nada contra as outras, e inclusive acho que programar esse jogo novamente em Rub
<dd>Claro!
<a href="https://github.com/awvalenti/fugaescorregadia/issues/new">Abra uma issue</a>
e mande ver!</dd>

</dl>
24 changes: 23 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.awvalenti</groupId>
<artifactId>fugaescorregadia</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.1.0</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down Expand Up @@ -42,6 +42,28 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>com.github.awvalenti.fugaescorregadia.programa.MainModoHistoria</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 5f59a11

Please sign in to comment.