Skip to content
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.

Commit

Permalink
old username refactor and versio rename
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-tm committed Oct 22, 2023
1 parent 66089c3 commit 69dea35
Show file tree
Hide file tree
Showing 22 changed files with 13 additions and 237 deletions.
13 changes: 3 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
.mvn/wrapper/maven-wrapper.jar
.settings/
.classpath
.project
3 changes: 0 additions & 3 deletions .idea/.gitignore

This file was deleted.

13 changes: 0 additions & 13 deletions .idea/compiler.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/copyright/Default.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/copyright/profiles_settings.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/discord.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/encodings.xml

This file was deleted.

30 changes: 0 additions & 30 deletions .idea/jarRepositories.xml

This file was deleted.

14 changes: 0 additions & 14 deletions .idea/misc.xml

This file was deleted.

124 changes: 0 additions & 124 deletions .idea/uiDesigner.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>me.tim</groupId>
<artifactId>collisionmath</artifactId>
<version>1.1</version>
<version>0.0.2</version>

<properties>
<maven.compiler.source>8</maven.compiler.source>
Expand All @@ -17,8 +17,8 @@
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Web-Tim Apache Maven Packages</name>
<url>https://maven.pkg.github.com/Web-Tim/CollisionMath</url>
<name>GitHub tim-tm Apache Maven Packages</name>
<url>https://maven.pkg.github.com/tim-tm/CollisionMath</url>
</repository>
</distributionManagement>
</project>
</project>
2 changes: 1 addition & 1 deletion src/main/java/me/tim/BoundingBox2D.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* (Probably some kind of Rectangles or two-dimensional entities)
*
* @author Tim
* @since 21.11.2022 - Version 1.0
* @since 21.11.2022 - Version 0.0.1
*/
@SuppressWarnings("unused")
public class BoundingBox2D {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/me/tim/BoundingBox3D.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* (Probably some entity or just a cube)
*
* @author Tim
* @since 22.11.2022 - Version 1.1
* @since 22.11.2022 - Version 0.0.2
*/
@SuppressWarnings("unused")
public class BoundingBox3D {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/me/tim/CollisionHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Used to handle simple collisions between two bounding-boxes.
*
* @author Tim
* @since 21.11.2022 - Version 1.0
* @since 21.11.2022 - Version 0.0.1
*/
@SuppressWarnings("unused")
public class CollisionHandler {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/me/tim/util/Vec2f.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* This class was created to properly save and manage two-dimensional coordinates;
*
* @author Tim
* @since 22.11.2022 - Version 1.1
* @since 22.11.2022 - Version 0.0.2
*/
@SuppressWarnings("unused")
public class Vec2f {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/me/tim/util/Vec3f.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* This class was created to properly save and manage three-dimensional coordinates;
*
* @author Tim
* @since 22.11.2022 - Version 1.1
* @since 22.11.2022 - Version 0.0.2
*/
@SuppressWarnings("unused")
public class Vec3f {
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/me/tim/TestMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Example class for a possible usage of the CollisionLib.
*
* @author Tim
* @since 21.11.2022 - Version 1.0
* @since 21.11.2022 - Version 0.0.1
*/
public class TestMain {
//Simple JFrame
Expand Down
Binary file removed target/classes/me/tim/BoundingBox2D.class
Binary file not shown.
Binary file removed target/classes/me/tim/CollisionHandler.class
Binary file not shown.
Binary file removed target/test-classes/me/tim/TestMain$Entity.class
Binary file not shown.
Binary file removed target/test-classes/me/tim/TestMain.class
Binary file not shown.

0 comments on commit 69dea35

Please sign in to comment.