[JBoss JIRA] (JBIDE-21439) Add JSON Editor to JBDS/JBT Target Platform
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBIDE-21439?page=com.atlassian.jira.plugi... ]
Nick Boldt updated JBIDE-21439:
-------------------------------
Fix Version/s: 4.4.0.Alpha2
(was: 4.4.0.Alpha1)
> Add JSON Editor to JBDS/JBT Target Platform
> -------------------------------------------
>
> Key: JBIDE-21439
> URL: https://issues.jboss.org/browse/JBIDE-21439
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: target-platform
> Reporter: Alexey Kazakov
> Assignee: Nick Boldt
> Priority: Critical
> Fix For: 4.4.0.Alpha2
>
>
> Missing description. Need update site from which to fetch IUs, and a list of which IUs to add.
> Also need to know what to do with the JSON editor once it's in the TP... will it be installed OOTB like YAML editor in JBIDE-21377? Or will it be a new Central connector?
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 8 months
[JBoss JIRA] (JBIDE-13671) Replace build timestamp in qualifier by last-mod-timestamp from git
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13671?page=com.atlassian.jira.plugi... ]
Nick Boldt commented on JBIDE-13671:
------------------------------------
{quote}How do we map binaries to jenkins build without -BXXX suffix?{quote}
The whole point here is that it no longer matters in which build the bits are built because we know they're coming from the same SHA in github. So we could add that suffix back onto the update site version qualifier if we want but I'm not sure we need it.
> Replace build timestamp in qualifier by last-mod-timestamp from git
> -------------------------------------------------------------------
>
> Key: JBIDE-13671
> URL: https://issues.jboss.org/browse/JBIDE-13671
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: build
> Affects Versions: 4.1.0.Alpha1
> Reporter: Nick Boldt
> Assignee: Nick Boldt
> Priority: Optional
> Fix For: 4.4.0.Alpha2
>
> Attachments: jbide13671-before-and-after.png
>
>
> This needs to be added to master parent pom:
> {code}
> <plugin>
> <groupId>org.eclipse.tycho</groupId>
> <artifactId>tycho-packaging-plugin</artifactId>
> <version>${tycho.version}</version>
> <dependencies>
> <dependency>
> <groupId>org.eclipse.tycho.extras</groupId>
> <artifactId>tycho-buildtimestamp-jgit</artifactId>
> <version>${tycho-extras.version}</version>
> </dependency>
> </dependencies>
> <configuration>
> <strictBinIncludes>false</strictBinIncludes>
> <format>'v'yyyyMMdd-HHmm</format>
> <timestampProvider>jgit</timestampProvider>
> <jgit.ignore>
> </jgit.ignore>
> </configuration>
> </plugin>
> {code}
> Ref: http://pweclipse.blogspot.ch/2012_09_01_archive.html
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 8 months
[JBoss JIRA] (JBIDE-13671) Replace build timestamp in qualifier by last-mod-timestamp from git
by Nick Boldt (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13671?page=com.atlassian.jira.plugi... ]
Nick Boldt commented on JBIDE-13671:
------------------------------------
Found a better implementation:
https://github.com/jbosstools/jbosstools-build/pull/217
For a dirty git workspace local build (changing the local arquillian feature.xml & having an extra untracked file in there), I get:
{code}
org.jboss.tools.arquillian.feature_1.2.100.Alpha1-v20160429-1802-LOCAL.jar (local timestamp, not jgit)
org.jboss.tools.arquillian.ui_1.2.100.Alpha1-v20160211-2142-LOCAL.jar (remote jgit timestamp, unchanged except the -LOCAL suffix)
$➔ cat site/target/repository/index.html | grep 1.2.100
<title>JBoss Tools - arquillian.site - ­ Update Site: 1.2.100-SNAPSHOT (Alpha1-v20160429-1802-LOCAL)</title> (local timestamp, not jgit)
{code}
If I commit the change and remove the untracked files so we're clean locally:
{code}
org.jboss.tools.arquillian.feature_1.2.100.Alpha1-v20160429-1811-LOCAL.jar (local jgit timestamp)
org.jboss.tools.arquillian.ui_1.2.100.Alpha1-v20160211-2142-LOCAL.jar (remote jgit timestamp, unchanged except the -LOCAL suffix)
<title>JBoss Tools - arquillian.site - ­ Update Site: 1.2.100-SNAPSHOT (Alpha1-v20160429-1811-LOCAL)</title> (local jgit timestamp)
{code}
If I remove the change and all untracked files:
{code}
org.jboss.tools.arquillian.feature_1.2.100.Alpha1-v20160211-2142-LOCAL.jar (remote jgit timestamp, unchanged except the -LOCAL suffix)
org.jboss.tools.arquillian.ui_1.2.100.Alpha1-v20160211-2142-LOCAL.jar (remote jgit timestamp, unchanged except the -LOCAL suffix)
<title>JBoss Tools - arquillian.site - ­ Update Site: 1.2.100-SNAPSHOT (Alpha1-v20160211-2142-LOCAL)</title> (remote jgit timestamp, unchanged except the -LOCAL suffix)
{code}
If I rebuild the last Jenkins build locally:
{code}
org.jboss.tools.arquillian.feature_1.2.100.Alpha1-v20160211-2142-ci.jar (remote jgit timestamp, unchanged except the -ci suffix)
org.jboss.tools.arquillian.ui_1.2.100.Alpha1-v20160211-2142-ci.jar (remote jgit timestamp, unchanged except the -ci suffix)
<title>JBoss Tools - arquillian.site - ­ Update Site: 1.2.100-SNAPSHOT (Alpha1-v20160211-2142-ci)</title> (remote jgit timestamp, unchanged except the -ci suffix)
{code}
Why use 'LOCAL' and 'ci'? That way just in case there are two builds done at the exact same time, one in Jenkins and one locally, the Jenkins one will always be considered NEWER (lowercase letters are of higher priority in the ASCII table than uppercase ones, which is how OSGi determines which is newer).
> Replace build timestamp in qualifier by last-mod-timestamp from git
> -------------------------------------------------------------------
>
> Key: JBIDE-13671
> URL: https://issues.jboss.org/browse/JBIDE-13671
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: build
> Affects Versions: 4.1.0.Alpha1
> Reporter: Nick Boldt
> Assignee: Nick Boldt
> Priority: Optional
> Fix For: 4.4.0.Alpha2
>
> Attachments: jbide13671-before-and-after.png
>
>
> This needs to be added to master parent pom:
> {code}
> <plugin>
> <groupId>org.eclipse.tycho</groupId>
> <artifactId>tycho-packaging-plugin</artifactId>
> <version>${tycho.version}</version>
> <dependencies>
> <dependency>
> <groupId>org.eclipse.tycho.extras</groupId>
> <artifactId>tycho-buildtimestamp-jgit</artifactId>
> <version>${tycho-extras.version}</version>
> </dependency>
> </dependencies>
> <configuration>
> <strictBinIncludes>false</strictBinIncludes>
> <format>'v'yyyyMMdd-HHmm</format>
> <timestampProvider>jgit</timestampProvider>
> <jgit.ignore>
> </jgit.ignore>
> </configuration>
> </plugin>
> {code}
> Ref: http://pweclipse.blogspot.ch/2012_09_01_archive.html
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 8 months
[JBoss JIRA] (JBIDE-13671) Replace build timestamp in qualifier by last-mod-timestamp from git
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13671?page=com.atlassian.jira.plugi... ]
Denis Golovin commented on JBIDE-13671:
---------------------------------------
How do we map binaries to jenkins build without -BXXX suffix?
> Replace build timestamp in qualifier by last-mod-timestamp from git
> -------------------------------------------------------------------
>
> Key: JBIDE-13671
> URL: https://issues.jboss.org/browse/JBIDE-13671
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: build
> Affects Versions: 4.1.0.Alpha1
> Reporter: Nick Boldt
> Assignee: Nick Boldt
> Priority: Optional
> Fix For: 4.4.0.Alpha2
>
> Attachments: jbide13671-before-and-after.png
>
>
> This needs to be added to master parent pom:
> {code}
> <plugin>
> <groupId>org.eclipse.tycho</groupId>
> <artifactId>tycho-packaging-plugin</artifactId>
> <version>${tycho.version}</version>
> <dependencies>
> <dependency>
> <groupId>org.eclipse.tycho.extras</groupId>
> <artifactId>tycho-buildtimestamp-jgit</artifactId>
> <version>${tycho-extras.version}</version>
> </dependency>
> </dependencies>
> <configuration>
> <strictBinIncludes>false</strictBinIncludes>
> <format>'v'yyyyMMdd-HHmm</format>
> <timestampProvider>jgit</timestampProvider>
> <jgit.ignore>
> </jgit.ignore>
> </configuration>
> </plugin>
> {code}
> Ref: http://pweclipse.blogspot.ch/2012_09_01_archive.html
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 8 months
[JBoss JIRA] (JBDS-3861) Can't donwload some example projects from central
by Fred Bricon (JIRA)
[ https://issues.jboss.org/browse/JBDS-3861?page=com.atlassian.jira.plugin.... ]
Fred Bricon updated JBDS-3861:
------------------------------
Story Points: 2 (was: 3)
> Can't donwload some example projects from central
> -------------------------------------------------
>
> Key: JBDS-3861
> URL: https://issues.jboss.org/browse/JBDS-3861
> Project: Red Hat Developer Studio (DevStudio)
> Issue Type: Bug
> Components: central, project-examples
> Affects Versions: 10.0.0.Alpha1
> Environment: Devstudio 10.0.0.Alpha1-v20160427-0539-B5240
> Reporter: Jan Richter
> Assignee: Fred Bricon
> Priority: Blocker
> Fix For: 10.0.0.Alpha1
>
>
> Trying to download some example projects from central simply opens a progress dialog, which quickly disappears and nothing happens. So far I found it happening with HTML5 project, AngularJS forge and Java EE Web Project - but there might be more.
> Note that in JBT master they all work.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 8 months
[JBoss JIRA] (JBDS-3861) Can't donwload some example projects from central
by Fred Bricon (JIRA)
[ https://issues.jboss.org/browse/JBDS-3861?page=com.atlassian.jira.plugin.... ]
Fred Bricon resolved JBDS-3861.
-------------------------------
Resolution: Done
Indeed this was due to missing entries for devstudio 10. Please restart Devstudio and try again.
> Can't donwload some example projects from central
> -------------------------------------------------
>
> Key: JBDS-3861
> URL: https://issues.jboss.org/browse/JBDS-3861
> Project: Red Hat Developer Studio (DevStudio)
> Issue Type: Bug
> Components: central, project-examples
> Affects Versions: 10.0.0.Alpha1
> Environment: Devstudio 10.0.0.Alpha1-v20160427-0539-B5240
> Reporter: Jan Richter
> Assignee: Fred Bricon
> Priority: Blocker
> Fix For: 10.0.0.Alpha1
>
>
> Trying to download some example projects from central simply opens a progress dialog, which quickly disappears and nothing happens. So far I found it happening with HTML5 project, AngularJS forge and Java EE Web Project - but there might be more.
> Note that in JBT master they all work.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 8 months
[JBoss JIRA] (JBDS-3861) Can't donwload some example projects from central
by CDW Engine (JIRA)
[ https://issues.jboss.org/browse/JBDS-3861?page=com.atlassian.jira.plugin.... ]
CDW Engine reassigned JBDS-3861:
--------------------------------
> Can't donwload some example projects from central
> -------------------------------------------------
>
> Key: JBDS-3861
> URL: https://issues.jboss.org/browse/JBDS-3861
> Project: Red Hat Developer Studio (DevStudio)
> Issue Type: Bug
> Components: central, project-examples
> Affects Versions: 10.0.0.Alpha1
> Environment: Devstudio 10.0.0.Alpha1-v20160427-0539-B5240
> Reporter: Jan Richter
> Assignee: Fred Bricon
> Priority: Blocker
> Fix For: 10.0.0.Alpha1
>
>
> Trying to download some example projects from central simply opens a progress dialog, which quickly disappears and nothing happens. So far I found it happening with HTML5 project, AngularJS forge and Java EE Web Project - but there might be more.
> Note that in JBT master they all work.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 8 months
[JBoss JIRA] (JBDS-3861) Can't donwload some example projects from central
by Fred Bricon (JIRA)
[ https://issues.jboss.org/browse/JBDS-3861?page=com.atlassian.jira.plugin.... ]
Fred Bricon updated JBDS-3861:
------------------------------
Fix Version/s: 10.0.0.Alpha1
(was: 10.0.0.Alpha2)
Story Points: 3
Sprint: devex #113 April 2016
> Can't donwload some example projects from central
> -------------------------------------------------
>
> Key: JBDS-3861
> URL: https://issues.jboss.org/browse/JBDS-3861
> Project: Red Hat Developer Studio (DevStudio)
> Issue Type: Bug
> Components: central, project-examples
> Affects Versions: 10.0.0.Alpha1
> Environment: Devstudio 10.0.0.Alpha1-v20160427-0539-B5240
> Reporter: Jan Richter
> Assignee: Fred Bricon
> Priority: Blocker
> Fix For: 10.0.0.Alpha1
>
>
> Trying to download some example projects from central simply opens a progress dialog, which quickly disappears and nothing happens. So far I found it happening with HTML5 project, AngularJS forge and Java EE Web Project - but there might be more.
> Note that in JBT master they all work.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 8 months
[JBoss JIRA] (JBDS-3861) Can't donwload some example projects from central
by CDW Engine (JIRA)
[ https://issues.jboss.org/browse/JBDS-3861?page=com.atlassian.jira.plugin.... ]
CDW Engine updated JBDS-3861:
-----------------------------
> Can't donwload some example projects from central
> -------------------------------------------------
>
> Key: JBDS-3861
> URL: https://issues.jboss.org/browse/JBDS-3861
> Project: Red Hat Developer Studio (DevStudio)
> Issue Type: Bug
> Components: central, project-examples
> Affects Versions: 10.0.0.Alpha1
> Environment: Devstudio 10.0.0.Alpha1-v20160427-0539-B5240
> Reporter: Jan Richter
> Assignee: Fred Bricon
> Priority: Blocker
> Fix For: 10.0.0.Alpha2
>
>
> Trying to download some example projects from central simply opens a progress dialog, which quickly disappears and nothing happens. So far I found it happening with HTML5 project, AngularJS forge and Java EE Web Project - but there might be more.
> Note that in JBT master they all work.
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
9 years, 8 months