Skip to content

Commit

Permalink
Update build script to start using tagged branches
Browse files Browse the repository at this point in the history
  • Loading branch information
bdionne committed Aug 24, 2016
1 parent 62ba3cc commit ab37946
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,31 @@ mkdir nci-protege5
cd nci-protege5
git clone https://github.com/bdionne/protege.git
cd protege
git checkout -b search-api origin/search-api
git checkout d1.4
mvn clean install -DskipTests=true
cd ..
git clone https://github.com/protegeproject/metaproject.git
cd metaproject
git checkout d1.4
mvn clean install -DskipTests=true
cp target/metaproject*.jar ../protege/protege-desktop/target/protege-5.0.1-SNAPSHOT-platform-independent/Protege-5.0.1-SNAPSHOT/bundles
cd ..
git clone https://github.com/protegeproject/lucene-search-plugin.git
cd lucene-search-plugin
git checkout -b nci-lucene-search origin/nci-lucene-search
git checkout d1.4
mvn clean install -DskipTests=true
cp target/lucene*.jar ../protege/protege-desktop/target/protege-5.0.1-SNAPSHOT-platform-independent/Protege-5.0.1-SNAPSHOT/bundles
cd ..
git clone https://github.com/protegeproject/protege-server.git
cd protege-server
git checkout -b http-metaproject-integration origin/http-metaproject-integration
git checkout d1.4
mvn clean install -DskipTests=true
cp target/protege-server*.jar ../protege/protege-desktop/target/protege-5.0.1-SNAPSHOT-platform-independent/Protege-5.0.1-SNAPSHOT/bundles
cp -R root target/server-distribution/server
cd ..
git clone https://github.com/protegeproject/protege-client.git
cd protege-client
git checkout -b http-metaproject-integration origin/http-metaproject-integration
git checkout d1.4
mvn clean install -DskipTests=true
cp target/protege-client*.jar ../protege/protege-desktop/target/protege-5.0.1-SNAPSHOT-platform-independent/Protege-5.0.1-SNAPSHOT/bundles

Expand Down

0 comments on commit ab37946

Please sign in to comment.