https://github.com/sevdanurgenc/run-maven-project-gui-tool
In this repo, you can clean and build any MAVEN project with the help of a button in a JAVA GUI.
https://github.com/sevdanurgenc/run-maven-project-gui-tool
java maven maven-build maven-builder maven-clean maven-plugin maven-pom maven-tool
Last synced: 7 months ago
JSON representation
In this repo, you can clean and build any MAVEN project with the help of a button in a JAVA GUI.
- Host: GitHub
- URL: https://github.com/sevdanurgenc/run-maven-project-gui-tool
- Owner: SevdanurGENC
- License: mit
- Created: 2021-08-30T01:18:24.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-08-30T01:52:56.000Z (about 4 years ago)
- Last Synced: 2025-01-29T03:47:03.176Z (9 months ago)
- Topics: java, maven, maven-build, maven-builder, maven-clean, maven-plugin, maven-pom, maven-tool
- Language: Java
- Homepage:
- Size: 30.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Run-Maven-Project-GUI-TOOL
In this repo, you can clean and build any MAVEN project with the help of a button in a JAVA GUI.Maven is a build automation tool used primarily for Java projects. Maven can also be used to build and manage projects written in C#, Ruby, Scala, and other languages. The Maven project is hosted by the Apache Software Foundation, where it was formerly part of the Jakarta Project. Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.
## In this repo, there are two projects.
## One of them belongs to the maven project (my-app) and the other is the gui that belongs to the desktop application (my-app-desktop).
## The command line is opened with the help of a button in the desktop application designed in the gui.

## The following line of code is run on the command line, which can clean and build maven.

## Thus, you can easily build an existing maven project without using any ide.
* mvn claen compile test package
## You can also easily call not only one maven project, but also multiple maven projects or any java class.
## Of course, a maven project is called normally as follows.


## Of course, in order to run all these operations on the command line, you need to create the following settings in the system variables.
NOTE : While making all these adjustments, it varies according to the versions of the java and maven libraries available on your system.### Under System Variables add below (for Windows)
* JAVA_HOME = C:\Program Files\Java\jdk1.8.0_201
* JDK_HOME = %JAVA_HOME%\bin
* M2_HOME = C:\apache-maven-3.6.0
* MAVEN_BIN = %M2_HOME%\bin
* MAVEN_HOME = %M2_HOME%### Under path Add these (for Windows)
* %M2_HOME%
* %JDK_HOME%