Files
SCM-Manager/docs/en/development/build-from-source.md
Florian Scholdei 9b6fb991e5 Building forms documentation with react-hook-form (#1704)
Building forms documentation with react-hook-form
2021-06-16 17:19:55 +02:00

26 lines
687 B
Markdown

---
title: Building SCM-Manager from Source
---
### Software Requirements
- JDK 1.8 or higher
([download](https://openjdk.java.net/install/))
- Maven 3 or higher ([download](https://maven.apache.org/))
- Git ([download](https://git-scm.com/))
### Build SCM-Manager 2.x from Source
```bash
git clone https://github.com/scm-manager/scm-manager.git
cd scm-manager
git checkout develop
./gradlew build
```
After gradle finished, the war bundle is located at
**scm-webapp/build/scm-webapp.war** and the standalone version is
located at **scm-server/build/scm-server-app**.
You can also start a dev server using `./gradlew run`. SCM-Manager is served at <http://localhost:8081/scm>.