Skip to content

Commit

Permalink
Bug #369: Prepare for 0.9.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahgraham committed Feb 29, 2020
1 parent d9331c8 commit 328ce8a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 14 deletions.
2 changes: 1 addition & 1 deletion gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
******************************************************************************/

version = '0.9.0-SNAPSHOT'
version = '0.9.0'

ext.versions = [
'xtend_lib': '2.19.0',
Expand Down
6 changes: 5 additions & 1 deletion releng/build.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ pipeline {
stage('Deploy Snapshot') {
steps {
timeout(activity: true, time: 20) {
sh './releng/deploy-build.sh'
// Skip Deploy on release builds
// XXX: Can release vs snapshot be detected automatically so that
// the following line does not have to be commented/uncommented
// on each change to/from SNAPSHOT?
// sh './releng/deploy-build.sh'
}
}
}
Expand Down
24 changes: 12 additions & 12 deletions releng/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,67 +36,67 @@
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j</artifactId>
<version>0.9.0-SNAPSHOT</version>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j</artifactId>
<version>0.9.0-SNAPSHOT</version>
<version>0.9.0</version>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j.debug</artifactId>
<version>0.9.0-SNAPSHOT</version>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j.debug</artifactId>
<version>0.9.0-SNAPSHOT</version>
<version>0.9.0</version>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j.generator</artifactId>
<version>0.9.0-SNAPSHOT</version>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j.generator</artifactId>
<version>0.9.0-SNAPSHOT</version>
<version>0.9.0</version>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j.jsonrpc</artifactId>
<version>0.9.0-SNAPSHOT</version>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j.jsonrpc</artifactId>
<version>0.9.0-SNAPSHOT</version>
<version>0.9.0</version>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j.jsonrpc.debug</artifactId>
<version>0.9.0-SNAPSHOT</version>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j.jsonrpc.debug</artifactId>
<version>0.9.0-SNAPSHOT</version>
<version>0.9.0</version>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j.websocket</artifactId>
<version>0.9.0-SNAPSHOT</version>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j.websocket</artifactId>
<version>0.9.0-SNAPSHOT</version>
<version>0.9.0</version>
<classifier>sources</classifier>
</dependency>
</dependencies>
Expand Down

0 comments on commit 328ce8a

Please sign in to comment.