Skip to content
This repository has been archived by the owner on Aug 18, 2022. It is now read-only.

Commit

Permalink
Merge pull request #3 from evolutionsoftswiss/develop
Browse files Browse the repository at this point in the history
Adapt logging and increase version
  • Loading branch information
evolutionsoftswiss authored Apr 26, 2021
2 parents 24255ad + 5273544 commit 16137c3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<artifactId>tic-tac-toe</artifactId>
<packaging>war</packaging>
<name>tic-tac-toe</name>
<version>1.1.0</version>
<version>1.1.1</version>
<build>
<plugins>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void initialize() {
this.game.addObserver(this);
this.initGame();

gameLog.info("Tic Tac Toe Game started.");
gameLog.info("Tic Tac Toe Game initialized.");
}


Expand Down Expand Up @@ -79,6 +79,8 @@ public void move() {
public void newGame() {

this.initGame();

gameLog.info("Tic Tac Toe Game restarted.");
}


Expand Down
4 changes: 2 additions & 2 deletions src/main/webapp/WEB-INF/liferay-plugin-package.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name=tic-tac-toe
module-group-id=tic-tac-toe
module-incremental-version=2
module-incremental-version=3
tags=game spiele tictactoe
short-description=Perfectly playing Tic Tac Toe portlet
change-log=
page-url=https://evolutionsoft.ch
author=EvolutionSoft
licenses=LGPL
Bundle-Version: 1.1.0
Bundle-Version=1.1.1

0 comments on commit 16137c3

Please sign in to comment.