Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
SteliosRusta committed Oct 25, 2022
1 parent fb19654 commit 9b42ae3
Show file tree
Hide file tree
Showing 21 changed files with 46 additions and 355 deletions.
63 changes: 28 additions & 35 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,40 +1,33 @@
# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

# Intellij
HELP.md
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

# Mac
.DS_Store

# Maven

HELP.md
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**
!**/src/test/**
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/

### VS Code ###
.vscode/
Binary file added .mvn/wrapper/maven-wrapper.jar
Binary file not shown.
2 changes: 2 additions & 0 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.6/apache-maven-3.8.6-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar
14 changes: 11 additions & 3 deletions HELP.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
# Read Me First
The following was discovered as part of building this project:

* The original package name 'net.dancer.chat-dancer' is invalid and this project uses 'net.dancer.chatdancer' instead.
* The original package name 'net.dancier.chat-dancer' is invalid and this project uses 'net.dancier.chatdancer' instead.

# Getting Started

### Reference Documentation
For further reference, please consider the following sections:

* [Official Apache Maven documentation](https://maven.apache.org/guides/index.html)
* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/2.7.4/maven-plugin/reference/html/)
* [Create an OCI image](https://docs.spring.io/spring-boot/docs/2.7.4/maven-plugin/reference/html/#build-image)
* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/2.7.5/maven-plugin/reference/html/)
* [Create an OCI image](https://docs.spring.io/spring-boot/docs/2.7.5/maven-plugin/reference/html/#build-image)
* [Spring Web](https://docs.spring.io/spring-boot/docs/2.7.5/reference/htmlsingle/#web)

### Guides
The following guides illustrate how to use some features concretely:

* [Building a RESTful Web Service](https://spring.io/guides/gs/rest-service/)
* [Serving Web Content with Spring MVC](https://spring.io/guides/gs/serving-web-content/)
* [Building REST services with Spring](https://spring.io/guides/tutorials/rest/)

75 changes: 0 additions & 75 deletions chat-dancer.iml

This file was deleted.

7 changes: 3 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.4</version>
<version>2.7.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>net.dancer</groupId>
<groupId>net.dancier</groupId>
<artifactId>chat-dancer</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>chat-dancer</name>
<description>Dancer chat application</description>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>17</java.version>
</properties>
Expand All @@ -27,7 +27,6 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

<build>
Expand Down
28 changes: 0 additions & 28 deletions src/main/java/net/dancer/chatdancer/Chat.java

This file was deleted.

34 changes: 0 additions & 34 deletions src/main/java/net/dancer/chatdancer/ChatController.java

This file was deleted.

40 changes: 0 additions & 40 deletions src/main/java/net/dancer/chatdancer/Message.java

This file was deleted.

52 changes: 0 additions & 52 deletions src/main/java/net/dancer/chatdancer/Participants.java

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.dancer.chatdancer;
package net.dancier.chatdancer;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.dancer.chatdancer;
package net.dancier.chatdancer;

import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
Expand Down
Binary file removed target/chat-dancer-0.0.1-SNAPSHOT.jar.original
Binary file not shown.
1 change: 0 additions & 1 deletion target/classes/application.properties

This file was deleted.

3 changes: 0 additions & 3 deletions target/maven-archiver/pom.properties

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 9b42ae3

Please sign in to comment.