Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
PriyaGovind committed Sep 27, 2019
2 parents ccf8d0e + 3fa8368 commit c07d88b
Show file tree
Hide file tree
Showing 463 changed files with 24,476 additions and 8,795 deletions.
8 changes: 5 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,16 @@ pipeline {
stage("build") {
steps {
checkout scm;
sh "mvn -Pplugins -Pplatforms -P!tests -P!deployment -Psign -f bundles/pom.xml clean install"
// clean local copies of mita artifacts
sh 'rm -rf /opt/public/hipp/homes/genie.mita/.m2/repository/org/eclipse/mita/'
sh "mvn -U -Pplugins -Pplatforms -P!tests -P!deployment -Psign -f bundles/pom.xml clean install"
}
}

stage('base tests') {
steps {
wrap([$class:'Xvnc', useXauthority: true]) {
sh "mvn -P!plugins -P!platforms -Ptests -P!deployment -P!sign -f bundles/pom.xml install"
sh "mvn -P!plugins -P!platforms -Ptests -P!deployment -P!sign -f bundles/pom.xml clean install"
}
}
post {
Expand All @@ -42,7 +44,7 @@ pipeline {

stage("deploy") {
steps {
sh "mvn -P!plugins -P!platforms -P!tests -Pdeployment -Psign -f bundles/pom.xml install"
sh "mvn -P!plugins -P!platforms -P!tests -Pdeployment -Psign -f bundles/pom.xml clean install"
}
post {
always {
Expand Down
4 changes: 2 additions & 2 deletions bundles/org.eclipse.mita.base.ide/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Mita Type Definition Language IDE
Bundle-Vendor: Eclipse.org/Mita
Bundle-Version: 0.1.0.qualifier
Bundle-Version: 0.2.0.qualifier
Bundle-SymbolicName: org.eclipse.mita.base.ide; singleton:=true
Bundle-ActivationPolicy: lazy
Automatic-Module-Name: org.eclipse.mita.base.ide
Require-Bundle: org.eclipse.mita.base,
org.eclipse.xtext.ide,
org.eclipse.xtext.xbase.ide,
org.antlr.runtime
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Export-Package: org.eclipse.mita.base.ide.contentassist.antlr,
org.eclipse.mita.base.ide.contentassist.antlr.internal

4 changes: 3 additions & 1 deletion bundles/org.eclipse.mita.base.ide/build.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
source.. = src-gen/
source.. = src-gen/,\
src/,\
xtend-gen/
bin.includes = .,\
META-INF/
4 changes: 2 additions & 2 deletions bundles/org.eclipse.mita.base.ide/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<parent>
<groupId>org.eclipse.mita</groupId>
<artifactId>org.eclipse.mita.releng</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.2.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<groupId>org.eclipse.mita</groupId>
<artifactId>org.eclipse.mita.base.ide</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>

</project>
4 changes: 3 additions & 1 deletion bundles/org.eclipse.mita.base.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Mita Type Definition Language UI
Bundle-Vendor: Eclipse.org/Mita
Bundle-Version: 0.1.0.qualifier
Bundle-Version: 0.2.0.qualifier
Bundle-SymbolicName: org.eclipse.mita.base.ui; singleton:=true
Bundle-ActivationPolicy: lazy
Automatic-Module-Name: org.eclipse.mita.base.ui
Require-Bundle: org.eclipse.mita.base,
org.eclipse.mita.base.ide,
org.eclipse.xtext.ui,
Expand All @@ -20,6 +21,7 @@ Require-Bundle: org.eclipse.mita.base,
Import-Package: org.apache.log4j
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Export-Package: org.eclipse.mita.base.ui.contentassist,
org.eclipse.mita.base.ui.index,
org.eclipse.mita.base.ui.internal,
org.eclipse.mita.base.ui.opener,
org.eclipse.mita.base.ui.quickfix
Expand Down
10 changes: 10 additions & 0 deletions bundles/org.eclipse.mita.base.ui/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -408,4 +408,14 @@
type="text">
</fileTypes>
</extension>
<extension
point="org.eclipse.ui.views">
<view
allowMultiple="false"
class="org.eclipse.mita.base.ui.MitaTypesDebugView"
id="org.eclipse.mita.base.ui.typesDebug"
name="Types"
restorable="true">
</view>
</extension>
</plugin>
4 changes: 2 additions & 2 deletions bundles/org.eclipse.mita.base.ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<parent>
<groupId>org.eclipse.mita</groupId>
<artifactId>org.eclipse.mita.releng</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.2.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<groupId>org.eclipse.mita</groupId>
<artifactId>org.eclipse.mita.base.ui</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<build>
<plugins>
Expand Down
Loading

0 comments on commit c07d88b

Please sign in to comment.