Skip to content

Commit

Permalink
Import lombook
Browse files Browse the repository at this point in the history
  • Loading branch information
germandilio committed Jul 17, 2022
1 parent 282fc46 commit a3cd0b2
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 4 deletions.
1 change: 1 addition & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions .idea/libraries/Maven__org_projectlombok_lombok_1_18_24.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Greater than Tetris
Client-server communication based on sockets and string commands without any high-level libraries.
Client-server communication based on sockets and string commands without Network high-level libraries.

Libraries: JDK 17, JavaFX, Apache Derby and JUnit 5.
Libraries: JDK 17, Lombook, JavaFX, Apache Derby and JUnit 5.

## Client-server application based on Sockets.
Server configuration should contain:
Expand Down
1 change: 1 addition & 0 deletions Tetris.iml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<orderEntry type="library" name="Maven: org.openjfx:javafx-base:mac:17.0.1" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-fxml:17.0.1" level="project" />
<orderEntry type="library" name="Maven: org.openjfx:javafx-fxml:mac:17.0.1" level="project" />
<orderEntry type="library" scope="PROVIDED" name="Maven: org.projectlombok:lombok:1.18.24" level="project" />
<orderEntry type="library" name="Maven: org.apache.derby:derby:10.15.2.0" level="project" />
<orderEntry type="library" name="Maven: org.apache.derby:derbyshared:10.15.2.0" level="project" />
<orderEntry type="library" name="Maven: org.apache.derby:derbyclient:10.15.2.0" level="project" />
Expand Down
14 changes: 12 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<build.compiler.source>17</build.compiler.source>
<build.compiler.target>17</build.compiler.target>
<javafx.version>17.0.1</javafx.version>
<derby.version>10.15.2.0</derby.version>
<junit.version>5.8.1</junit.version>
Expand All @@ -29,6 +31,14 @@
<version>${javafx.version}</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.24</version>
<scope>provided</scope>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.derby/derby -->
<dependency>
<groupId>org.apache.derby</groupId>
Expand Down Expand Up @@ -69,8 +79,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>17</source>
<target>17</target>
<source>${build.compiler.source}</source>
<target>${build.compiler.target}</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit a3cd0b2

Please sign in to comment.