Created
May 1, 2012 16:18
-
-
Save mathieuancelin/2569318 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# build the modified Weld API | |
# we're using Ales Justin (JBoss Weld lead) branches because he does a very good job at keeping everything up to date with Weld upstream | |
git clone https://github.com/alesj/api.git | |
git checkout -b osgi origin/osgi | |
cd ${START}/api | |
mvn clean install | |
# build Weld core with Weld-OSGi included | |
git clone https://github.com/alesj/core.git | |
git checkout -b osgi origin/osgi | |
cd ${START}/core | |
mvn clean install | |
# at this point you can go to the coffee machine ;-) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd ${START}/core/environments/osgi/examples | |
mvn clean install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd ${START}/core/environments/osgi | |
./run-felix.sh | |
# or | |
./run-equinox.sh | |
# or | |
./run-knopflerfish.sh | |
# or | |
./run-pojosr.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment