Skip to content

Commit 328ce8a

Browse files
committed
Bug #369: Prepare for 0.9.0 release.
1 parent d9331c8 commit 328ce8a

File tree

3 files changed

+18
-14
lines changed

3 files changed

+18
-14
lines changed

gradle/versions.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
1111
******************************************************************************/
1212

13-
version = '0.9.0-SNAPSHOT'
13+
version = '0.9.0'
1414

1515
ext.versions = [
1616
'xtend_lib': '2.19.0',

releng/build.Jenkinsfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@ pipeline {
4545
stage('Deploy Snapshot') {
4646
steps {
4747
timeout(activity: true, time: 20) {
48-
sh './releng/deploy-build.sh'
48+
// Skip Deploy on release builds
49+
// XXX: Can release vs snapshot be detected automatically so that
50+
// the following line does not have to be commented/uncommented
51+
// on each change to/from SNAPSHOT?
52+
// sh './releng/deploy-build.sh'
4953
}
5054
}
5155
}

releng/pom.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,67 +36,67 @@
3636
<dependency>
3737
<groupId>org.eclipse.lsp4j</groupId>
3838
<artifactId>org.eclipse.lsp4j</artifactId>
39-
<version>0.9.0-SNAPSHOT</version>
39+
<version>0.9.0</version>
4040
</dependency>
4141
<dependency>
4242
<groupId>org.eclipse.lsp4j</groupId>
4343
<artifactId>org.eclipse.lsp4j</artifactId>
44-
<version>0.9.0-SNAPSHOT</version>
44+
<version>0.9.0</version>
4545
<classifier>sources</classifier>
4646
</dependency>
4747
<dependency>
4848
<groupId>org.eclipse.lsp4j</groupId>
4949
<artifactId>org.eclipse.lsp4j.debug</artifactId>
50-
<version>0.9.0-SNAPSHOT</version>
50+
<version>0.9.0</version>
5151
</dependency>
5252
<dependency>
5353
<groupId>org.eclipse.lsp4j</groupId>
5454
<artifactId>org.eclipse.lsp4j.debug</artifactId>
55-
<version>0.9.0-SNAPSHOT</version>
55+
<version>0.9.0</version>
5656
<classifier>sources</classifier>
5757
</dependency>
5858
<dependency>
5959
<groupId>org.eclipse.lsp4j</groupId>
6060
<artifactId>org.eclipse.lsp4j.generator</artifactId>
61-
<version>0.9.0-SNAPSHOT</version>
61+
<version>0.9.0</version>
6262
</dependency>
6363
<dependency>
6464
<groupId>org.eclipse.lsp4j</groupId>
6565
<artifactId>org.eclipse.lsp4j.generator</artifactId>
66-
<version>0.9.0-SNAPSHOT</version>
66+
<version>0.9.0</version>
6767
<classifier>sources</classifier>
6868
</dependency>
6969
<dependency>
7070
<groupId>org.eclipse.lsp4j</groupId>
7171
<artifactId>org.eclipse.lsp4j.jsonrpc</artifactId>
72-
<version>0.9.0-SNAPSHOT</version>
72+
<version>0.9.0</version>
7373
</dependency>
7474
<dependency>
7575
<groupId>org.eclipse.lsp4j</groupId>
7676
<artifactId>org.eclipse.lsp4j.jsonrpc</artifactId>
77-
<version>0.9.0-SNAPSHOT</version>
77+
<version>0.9.0</version>
7878
<classifier>sources</classifier>
7979
</dependency>
8080
<dependency>
8181
<groupId>org.eclipse.lsp4j</groupId>
8282
<artifactId>org.eclipse.lsp4j.jsonrpc.debug</artifactId>
83-
<version>0.9.0-SNAPSHOT</version>
83+
<version>0.9.0</version>
8484
</dependency>
8585
<dependency>
8686
<groupId>org.eclipse.lsp4j</groupId>
8787
<artifactId>org.eclipse.lsp4j.jsonrpc.debug</artifactId>
88-
<version>0.9.0-SNAPSHOT</version>
88+
<version>0.9.0</version>
8989
<classifier>sources</classifier>
9090
</dependency>
9191
<dependency>
9292
<groupId>org.eclipse.lsp4j</groupId>
9393
<artifactId>org.eclipse.lsp4j.websocket</artifactId>
94-
<version>0.9.0-SNAPSHOT</version>
94+
<version>0.9.0</version>
9595
</dependency>
9696
<dependency>
9797
<groupId>org.eclipse.lsp4j</groupId>
9898
<artifactId>org.eclipse.lsp4j.websocket</artifactId>
99-
<version>0.9.0-SNAPSHOT</version>
99+
<version>0.9.0</version>
100100
<classifier>sources</classifier>
101101
</dependency>
102102
</dependencies>

0 commit comments

Comments
 (0)