Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.idea/
*.iml
application.log
target/
Binary file modified Preview/track1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
# Highway
A Java game to drive your truck against other 2 trucks throughout the highway and compete to stay on the top of the leaderboard<br><br>

Author : Aditya Chatterjee<br>
:e-mail: me : aditianhacker@gmail.com<br>
A _Java Swing_ game to drive your car against other 2 cars throughout the highway and compete to stay on the top of the leaderboard

:movie_camera: : [here](https://www.youtube.com/watch?v=AQzlGbrLvDw)<br>
-----

![alt text](Preview/track1.png "I am leading the leaderboard but competitors are a tough match")<br><br>
Feel free to suggest improvements
__Language__ : Java SE 8

## Extension
__Authors__ : Aditya Chatterjee, Gaboso

[Endless](https://github.com/Gaboso/Highway) by [Gaboso](https://github.com/Gaboso)
![alt text](Preview/track1.png "I am leading the leaderboard but competitors are a tough match")

-----

Feel free to suggest improvements.
242 changes: 0 additions & 242 deletions Track.java

This file was deleted.

72 changes: 72 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>

<groupId>com.highway</groupId>
<artifactId>Highway</artifactId>
<version>1.0.0</version>

<organization>
<name>com.github.gaboso</name>
<url>https://github.com/Gaboso/Highway</url>
</organization>
<scm>
<connection>
scm:git:git://github.com/Gaboso/Highway.git
</connection>
<url>
https://github.com/Gaboso/Highway
</url>
</scm>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>

<dependencies>

<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>

</dependencies>

<build>
<finalName>${project.artifactId}</finalName>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<archive>
<manifest>
<mainClass>com.highway.Track</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>install</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>
Loading