Skip to content

Commit 4dfdfa0

Browse files
committed
Merge branch 'master' of
https://github.com/jeffryang24/2048-java-console.git Conflicts: 2048/pom.xml
2 parents f94483d + b56992c commit 4dfdfa0

8 files changed

Lines changed: 27 additions & 146 deletions

File tree

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
language: java
2+
script: mvn clean install

2048/.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
language: java
2+
script: mvn clean install

2048/backup_code.txt

Lines changed: 0 additions & 78 deletions
This file was deleted.

2048/backup_code_v1.1

Lines changed: 0 additions & 43 deletions
This file was deleted.

2048/bug_release.odt

-9.61 KB
Binary file not shown.

2048/code lama.txt

Lines changed: 0 additions & 23 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#2048 Java Console
1+
#2048 Java Console [![Build Status](https://travis-ci.org/jeffryang24/2048-java-console.svg?branch=master)](https://travis-ci.org/jeffryang24/2048-java-console) [![Join the chat at https://gitter.im/2048-java-console/Lobby](https://badges.gitter.im/2048-java-console/Lobby.svg)](https://gitter.im/2048-java-console/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
22
A simple 2048 game based on Java language. You can run it by executing the java binary from bin folder.
33

44
###Example
@@ -25,4 +25,4 @@ This project is dedicated for our Advanced OOP course. Our team member: <br />
2525
1. Jeffry Angtoni (1801425975)
2626
2. Benny Susanto (1801416743)
2727
3. Satrio Wibisono (1801437243)
28-
4. M Syidad Al'Abror (1801445680)
28+
4. M Syidad Al'Abror (1801445680)

pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>2048</groupId>
4+
<artifactId>2048-java</artifactId>
5+
<version>0.0.1-SNAPSHOT</version>
6+
<name>2048</name>
7+
<description>2048 - Maven</description>
8+
<build>
9+
<sourceDirectory>2048/src</sourceDirectory>
10+
<plugins>
11+
<plugin>
12+
<artifactId>maven-compiler-plugin</artifactId>
13+
<version>3.5.1</version>
14+
<configuration>
15+
<source>1.7</source>
16+
<target>1.7</target>
17+
</configuration>
18+
</plugin>
19+
</plugins>
20+
</build>
21+
</project>

0 commit comments

Comments
 (0)