Actions
Building Project » History » Revision 1
Revision 1/3
| Next »
Alexander Kamkin, 01/10/2020 06:05 PM
Building Project¶
Working in command line¶
In command line, use Gradle (via the wrapper gradlew
):
./gradlew clean
- Clean the previous build./gradlew assemble
- Build the distribution package./gradlew test
- Run the unit tests./gradlew build
- Build the distribution package
- Run the unit tests./gradlew release
- Build the distribution package
- Run the unit tests
- Create the tag
- Publish the distribution package in Nexus
Working in IntelliJ IDEA¶
- Open
build.gradle
as a project
Working in Eclipse IDE¶
- Generate the Eclipse IDE project and classpath files with Gradle:
$ ./gradlew eclipse
- Create a workspace located in the directory with
microtesk
- Use the menu itemFile/Switch Workspace...
- Browse the directory - Import an existing project called
microtesk
into the workspace
- Use the menu itemFile/Import...
- ChooseGeneral/Existing Projects into Workspace
- Select themicrotesk
folder as the root directory
- Select themicrotesk
project located in this directory
- Press theFinish
button
Updated by Alexander Kamkin almost 5 years ago · 3 revisions