Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ spec:
environment {
NPM_CONFIG_USERCONFIG = "$WORKSPACE/.npmrc"
MAVEN_OPTS="-Xmx1024m"
GITHUB_API_CREDENTIALS_ID = 'github-bot-token'
}
stages {
stage('Prepare-environment') {
Expand All @@ -53,8 +54,10 @@ spec:
stage('Build') {
steps {
container('container') {
wrap([$class: 'Xvnc', useXauthority: true]) {
sh 'mvn clean verify -B -Dtycho.disableP2Mirrors=true -Ddownload.cache.skip=true -Dmaven.test.error.ignore=true -Dmaven.test.failure.ignore=true -PpackAndSign -Dmaven.repo.local=$WORKSPACE/.m2/repository'
withCredentials([string(credentialsId: "${GITHUB_API_CREDENTIALS_ID}", variable: 'GITHUB_API_TOKEN')]) {
wrap([$class: 'Xvnc', useXauthority: true]) {
sh 'mvn clean verify -B -Dtycho.disableP2Mirrors=true -Ddownload.cache.skip=true -Dmaven.test.error.ignore=true -Dmaven.test.failure.ignore=true -PpackAndSign -Dmaven.repo.local=$WORKSPACE/.m2/repository'
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.wildwebdeveloper.feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="org.eclipse.wildwebdeveloper.feature"
label="%name"
version="0.10.13.qualifier"
version="0.10.14.qualifier"
provider-name="Eclipse Wild Web Developer project"
license-feature="org.eclipse.license"
license-feature-version="0.0.0">
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.wildwebdeveloper.feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<version>0.5.0-SNAPSHOT</version>
</parent>
<packaging>eclipse-feature</packaging>
<version>0.10.13-SNAPSHOT</version>
<version>0.10.14-SNAPSHOT</version>
<build>
<plugins>
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion org.eclipse.wildwebdeveloper/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: Wild Web Developer: web development in Eclipse IDE
Bundle-SymbolicName: org.eclipse.wildwebdeveloper;singleton:=true
Automatic-Module-Name: org.eclipse.wildwebdeveloper
Bundle-Version: 0.5.21.qualifier
Bundle-Version: 0.5.22.qualifier
Bundle-Activator: org.eclipse.wildwebdeveloper.Activator
Bundle-Vendor: Eclipse Wild Web Developer project
Require-Bundle: org.eclipse.ui,
Expand Down
5 changes: 4 additions & 1 deletion org.eclipse.wildwebdeveloper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<version>0.5.0-SNAPSHOT</version>
</parent>
<packaging>eclipse-plugin</packaging>
<version>0.5.21-SNAPSHOT</version>
<version>0.5.22-SNAPSHOT</version>

<build>
<plugins>
Expand Down Expand Up @@ -93,6 +93,9 @@
<skipCache>true</skipCache>
<url>https://raw.githubusercontent.com/microsoft/vscode-eslint/release/2.2.2/server/package.json</url>
<outputDirectory>${project.build.directory}/vscode-eslint-ls/extension/server</outputDirectory>
<headers>
<Authorization>${GITHUB_API_TOKEN}</Authorization>
</headers>
</configuration>
</execution>
</executions>
Expand Down
2 changes: 1 addition & 1 deletion repository/epp.product
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?pde version="3.5"?>

<product name="Eclipse IDE for JavaScript and Web Developers" uid="org.eclipse.wildwebdeveloper.product" id="org.eclipse.wildwebdeveloper.product.branding.product" application="org.eclipse.ui.ide.workbench" version="0.13.4.qualifier" useFeatures="true" includeLaunchers="true">
<product name="Eclipse IDE for JavaScript and Web Developers" uid="org.eclipse.wildwebdeveloper.product" id="org.eclipse.wildwebdeveloper.product.branding.product" application="org.eclipse.ui.ide.workbench" version="0.13.5.qualifier" useFeatures="true" includeLaunchers="true">

<aboutInfo>
<image path="/org.eclipse.wildwebdeveloper.product.branding.product/eclipse_lg.png"/>
Expand Down
2 changes: 1 addition & 1 deletion repository/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<version>0.5.0-SNAPSHOT</version>
</parent>
<packaging>eclipse-repository</packaging>
<version>0.13.4-SNAPSHOT</version>
<version>0.13.5-SNAPSHOT</version>

<build>
<plugins>
Expand Down