Skip to content

Commit aedfaf5

Browse files
committed
add: JVB/Jicofo as submodules for reproducible builds
1 parent f7c5eb0 commit aedfaf5

File tree

4 files changed

+28
-0
lines changed

4 files changed

+28
-0
lines changed

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "jitsi/jvb"]
2+
path = jitsi/jvb
3+
url = https://github.com/jitsi/jitsi-videobridge.git
4+
[submodule "jitsi/jicofo"]
5+
path = jitsi/jicofo
6+
url = https://github.com/jitsi/jicofo.git

jitsi/build.bat

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
echo "------ start jvb"
2+
del ..\classes\jvb\*.jar
3+
pushd jvb
4+
call mvn clean package install -P buildFatJar -DskipTests
5+
popd
6+
cd
7+
dir jvb\jvb\target\
8+
copy jvb\jvb\target\jitsi*.jar ..\classes\jvb
9+
echo "------ copy jvb"
10+
11+
12+
echo "------ start jicofo"
13+
del ..\classes\jicofo\*.jar
14+
pushd jicofo
15+
call mvn clean package install -P buildFatJar -DskipTests
16+
popd
17+
cd
18+
dir jicofo\jicofo\target\
19+
copy jicofo\jicofo\target\jicofo*.jar ..\classes\jicofo
20+
echo "------ copy jicofo"

jitsi/jicofo

Submodule jicofo added at c320234

jitsi/jvb

Submodule jvb added at bf75725

0 commit comments

Comments
 (0)