introduced snapshot, milestone, and release profiles to language server eclipse feature build
This commit is contained in:
@@ -12,14 +12,7 @@
|
||||
<packaging>eclipse-repository</packaging>
|
||||
|
||||
<properties>
|
||||
<dist.accessKey>${accessKey}</dist.accessKey>
|
||||
<dist.secretKey>${secretKey}</dist.secretKey>
|
||||
<dist.bucket>dist.springsource.com</dist.bucket>
|
||||
<dist.type>snapshot</dist.type>
|
||||
<dist.key>TOOLS</dist.key>
|
||||
<dist.project>sts4-language-server-integrations</dist.project>
|
||||
<dist.pathpostfix>nightly</dist.pathpostfix>
|
||||
<dist.path>${dist.type}/${dist.key}/${dist.project}/${dist.pathpostfix}</dist.path>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
|
||||
@@ -12,14 +12,7 @@
|
||||
<packaging>eclipse-repository</packaging>
|
||||
|
||||
<properties>
|
||||
<dist.accessKey>${accessKey}</dist.accessKey>
|
||||
<dist.secretKey>${secretKey}</dist.secretKey>
|
||||
<dist.bucket>dist.springsource.com</dist.bucket>
|
||||
<dist.type>snapshot</dist.type>
|
||||
<dist.key>TOOLS</dist.key>
|
||||
<dist.project>sts4-language-servers</dist.project>
|
||||
<dist.pathpostfix>nightly</dist.pathpostfix>
|
||||
<dist.path>${dist.type}/${dist.key}/${dist.project}/${dist.pathpostfix}</dist.path>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
|
||||
@@ -68,9 +68,41 @@
|
||||
|
||||
<tycho-version>0.26.0</tycho-version>
|
||||
<encoding>UTF-8</encoding>
|
||||
|
||||
<dist.accessKey>${accessKey}</dist.accessKey>
|
||||
<dist.secretKey>${secretKey}</dist.secretKey>
|
||||
<dist.bucket>dist.springsource.com</dist.bucket>
|
||||
<dist.key>TOOLS</dist.key>
|
||||
<dist.path>${dist.type}/${dist.key}/${dist.project}/${dist.version}</dist.path>
|
||||
|
||||
</properties>
|
||||
|
||||
<profiles>
|
||||
|
||||
<profile>
|
||||
<id>snapshot</id>
|
||||
<properties>
|
||||
<dist.type>snapshot</dist.type>
|
||||
<dist.version>nightly</dist.version>
|
||||
</properties>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>milestone</id>
|
||||
<properties>
|
||||
<dist.type>milestone</dist.type>
|
||||
<dist.version>20171121</dist.version>
|
||||
</properties>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>release</id>
|
||||
<properties>
|
||||
<dist.type>release</dist.type>
|
||||
<dist.version>20171121</dist.version>
|
||||
</properties>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>e47</id>
|
||||
<properties>
|
||||
@@ -298,7 +330,7 @@
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<format>yyyyMMddHHmm-'${p2.qualifier}'</format>
|
||||
<format>yyyyMMddHHmm</format>
|
||||
<archiveSite>true</archiveSite>
|
||||
<archive>
|
||||
<addMavenDescriptor>false</addMavenDescriptor>
|
||||
|
||||
Reference in New Issue
Block a user