2020-05-06 15:41:14 +02:00
|
|
|
---
|
2021-06-16 17:19:55 +02:00
|
|
|
title: Building SCM-Manager from Source
|
2020-05-06 15:41:14 +02:00
|
|
|
---
|
2020-03-09 08:01:43 +01:00
|
|
|
|
|
|
|
|
### Software Requirements
|
|
|
|
|
|
2020-05-06 15:41:14 +02:00
|
|
|
- JDK 1.8 or higher
|
|
|
|
|
([download](https://openjdk.java.net/install/))
|
2021-06-16 17:19:55 +02:00
|
|
|
- Maven 3 or higher ([download](https://maven.apache.org/))
|
|
|
|
|
- Git ([download](https://git-scm.com/))
|
2020-03-09 08:01:43 +01:00
|
|
|
|
2025-03-25 00:05:14 +01:00
|
|
|
### Build SCM-Manager from Source
|
2020-03-09 08:01:43 +01:00
|
|
|
|
2020-03-31 17:28:30 +02:00
|
|
|
```bash
|
2021-06-16 17:19:55 +02:00
|
|
|
git clone https://github.com/scm-manager/scm-manager.git
|
2020-03-31 17:28:30 +02:00
|
|
|
cd scm-manager
|
2020-05-06 15:41:14 +02:00
|
|
|
git checkout develop
|
2021-06-16 17:19:55 +02:00
|
|
|
./gradlew build
|
2020-03-31 17:28:30 +02:00
|
|
|
```
|
|
|
|
|
|
2021-06-16 17:19:55 +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
|
|
|
|
2021-06-16 17:19:55 +02:00
|
|
|
You can also start a dev server using `./gradlew run`. SCM-Manager is served at <http://localhost:8081/scm>.
|