Skip to content

Latest commit

 

History

History
77 lines (61 loc) · 3.34 KB

README_EN.md

File metadata and controls

77 lines (61 loc) · 3.34 KB
last-commit time-with-code sonar-code-lines sonar-quality-gate-status ci

📖 Description


Desktop application for random updating of the displayed number from 0 to 100. It is possible to start updating the number by timer at intervals: 1 second or 1.5 seconds.

❗ Requirements


  • JDK: 18 and higher;
  • Configured environment variable: JAVA_HOME.

📋 Instructions for starting


All commands are executed in the console.

  1. Create a folder: mkdir GitProjects;
  2. Go to the folder: cd GitProjects;
  3. Cloning a repository: git clone https://github.com/HogwartsSchoolOfMagic/Vertex.git;
  4. Go to the folder: cd Vertex;
  5. Build project: mvn clean install;
  6. After completing 5 points — a folder with the name “Target” will be created. We go into it: go target;
  7. Inside there will be a JAR file named “vertex-1.0.0.jar”. We execute the command: java -jar vertex-1.0.0.jar;
  8. The GUI application will start (see: Application interface).

Bonus: instead of point 7, you can act differently. In the folder — target, there will also be a file: vertex.exe, which you can simply run. If you have any problems — write to me.

public class VertexApplication {

  public static void main(String[] args) { // Used to launch the application.
    Runnable runnable = VertexUtil::started;
    invokeLater(runnable);
  }
}

💻 Application interface


gui-interface
gui-interface

🎫 License


Apache License Version 2.0

Copyright ©2022, Vladislav [SmithyVL] Kuznetsov