Files
SCM-Manager/docs/en/development/build-from-source.md

26 lines
683 B
Markdown
Raw Normal View History

---
title: Building SCM-Manager from Source
---
2020-03-09 08:01:43 +01:00
### 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/))
2020-03-09 08:01:43 +01:00
### Build SCM-Manager from Source
2020-03-09 08:01:43 +01:00
2020-03-31 17:28:30 +02:00
```bash
git clone https://github.com/scm-manager/scm-manager.git
2020-03-31 17:28:30 +02:00
cd scm-manager
git checkout develop
./gradlew build
2020-03-31 17:28:30 +02:00
```
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**.
2020-03-09 08:01:43 +01:00
You can also start a dev server using `./gradlew run`. SCM-Manager is served at <http://localhost:8081/scm>.