[JBoss JIRA] (ERT-485) CDT Container launcher fails when Docker Connection created using DOCKER_HOST env variables [EBZ#512917]
by Friendly Jira Robot (JIRA)
Friendly Jira Robot created ERT-485:
---------------------------------------
Summary: CDT Container launcher fails when Docker Connection created using DOCKER_HOST env variables [EBZ#512917]
Key: ERT-485
URL: https://issues.jboss.org/browse/ERT-485
Project: Eclipse Release Train
Issue Type: Task
Components: Linux Tools
Reporter: Friendly Jira Robot
Fix For: Neon.3 (4.6)
When a Docker Connection is automatically discovered using env variables such as DOCKER_HOST, it does not have a name. When a CDT Container launcher config is created, the Container tab has a failure when it tries to add a null entry to the Connection selector.
Make the Docker Connection return a default name in such a case such "<unnamed>" which matches the Docker Explorer View behaviour.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 10 months
[JBoss JIRA] (JBDS-4293) Merge requirements-*.json files into one
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBDS-4293?page=com.atlassian.jira.plugin.... ]
Denis Golovin updated JBDS-4293:
--------------------------------
Sprint: devex #128 February 2017 (was: RHDEVDOCS Sprint 128, > Mar 15)
> Merge requirements-*.json files into one
> ----------------------------------------
>
> Key: JBDS-4293
> URL: https://issues.jboss.org/browse/JBDS-4293
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Task
> Components: platform-installer
> Affects Versions: 10.4.0.AM1
> Reporter: Denis Golovin
> Assignee: Sudhir Verma
> Fix For: 10.4.0.AM1
>
>
> Current implementation is looking for requirements-${process.platform}.json. There are three supported platforms and therefore three configuration file with duplicated information for some components.
> New implementation should merge configuration in one file and introduce platform attribute for component configuration's. Only components that has platform specific binaries are affected.
> For example for CDK configuration instead of having it defined in three files like this:
> {code:title=requirements-win32.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "filename": "minishift.exe",
> "sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> {code:title=requirements-darwin.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "filename": "minishift",
> "sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> {code:title=requirements-linux.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
> "filename": "linux-amd64.tar.gz",
> "sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> It would be defined only once like this
> {code:title=requirements.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "vendor": "Red Hat, Inc."
> platform: {
> win32: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "filename": "minishift.exe",
> "sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94"
> },
> darwin: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "filename": "minishift",
> "sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e"
> },
> linux: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
> "filename": "linux-amd64.tar.gz",
> "sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32"
> }
> }
> }
> }
> {code}
> Note that requirements files used as is in tests, they also transformed during the build and final file is landed in 'transpiled' folder.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 10 months
[JBoss JIRA] (JBDS-4293) Merge requirements-*.json files into one
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBDS-4293?page=com.atlassian.jira.plugin.... ]
Denis Golovin updated JBDS-4293:
--------------------------------
Story Points: 7
Sprint: RHDEVDOCS Sprint 128, > Mar 15
> Merge requirements-*.json files into one
> ----------------------------------------
>
> Key: JBDS-4293
> URL: https://issues.jboss.org/browse/JBDS-4293
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Task
> Components: platform-installer
> Affects Versions: 10.4.0.AM1
> Reporter: Denis Golovin
> Assignee: Sudhir Verma
> Fix For: 10.4.0.AM1
>
>
> Current implementation is looking for requirements-${process.platform}.json. There are three supported platforms and therefore three configuration file with duplicated information for some components.
> New implementation should merge configuration in one file and introduce platform attribute for component configuration's. Only components that has platform specific binaries are affected.
> For example for CDK configuration instead of having it defined in three files like this:
> {code:title=requirements-win32.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "filename": "minishift.exe",
> "sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> {code:title=requirements-darwin.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "filename": "minishift",
> "sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> {code:title=requirements-linux.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
> "filename": "linux-amd64.tar.gz",
> "sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> It would be defined only once like this
> {code:title=requirements.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "vendor": "Red Hat, Inc."
> platform: {
> win32: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "filename": "minishift.exe",
> "sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94"
> },
> darwin: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "filename": "minishift",
> "sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e"
> },
> linux: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
> "filename": "linux-amd64.tar.gz",
> "sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32"
> }
> }
> }
> }
> {code}
> Note that requirements files used as is in tests, they also transformed during the build and final file is landed in 'transpiled' folder.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 10 months
[JBoss JIRA] (JBDS-4293) Merge requirements-*.json files into one
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBDS-4293?page=com.atlassian.jira.plugin.... ]
Denis Golovin reassigned JBDS-4293:
-----------------------------------
Assignee: Sudhir Verma (was: Denis Golovin)
> Merge requirements-*.json files into one
> ----------------------------------------
>
> Key: JBDS-4293
> URL: https://issues.jboss.org/browse/JBDS-4293
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Task
> Components: platform-installer
> Affects Versions: 10.4.0.AM1
> Reporter: Denis Golovin
> Assignee: Sudhir Verma
> Fix For: 10.4.0.AM1
>
>
> Current implementation is looking for requirements-${process.platform}.json. There are three supported platforms and therefore three configuration file with duplicated information for some components.
> New implementation should merge configuration in one file and introduce platform attribute for component configuration's. Only components that has platform specific binaries are affected.
> For example for CDK configuration instead of having it defined in three files like this:
> {code:title=requirements-win32.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "filename": "minishift.exe",
> "sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> {code:title=requirements-darwin.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "filename": "minishift",
> "sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> {code:title=requirements-linux.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
> "filename": "linux-amd64.tar.gz",
> "sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> It would be defined only once like this
> {code:title=requirements.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "vendor": "Red Hat, Inc."
> platform: {
> win32: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "filename": "minishift.exe",
> "sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94"
> },
> darwin: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "filename": "minishift",
> "sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e"
> },
> linux: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
> "filename": "linux-amd64.tar.gz",
> "sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32"
> }
> }
> }
> }
> {code}
> Note that requirements files used as is in tests, they also transformed during the build and final file is landed in 'transpiled' folder.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 10 months
[JBoss JIRA] (JBDS-4293) Merge requirements-*.json files into one
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBDS-4293?page=com.atlassian.jira.plugin.... ]
Denis Golovin reassigned JBDS-4293:
-----------------------------------
Assignee: Denis Golovin
> Merge requirements-*.json files into one
> ----------------------------------------
>
> Key: JBDS-4293
> URL: https://issues.jboss.org/browse/JBDS-4293
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Task
> Components: platform-installer
> Affects Versions: 10.4.0.AM1
> Reporter: Denis Golovin
> Assignee: Denis Golovin
> Fix For: 10.4.0.AM1
>
>
> Current implementation is looking for requirements-${process.platform}.json. There are three supported platforms and therefore three configuration file with duplicated information for some components.
> New implementation should merge configuration in one file and introduce platform attribute for component configuration's. Only components that has platform specific binaries are affected.
> For example for CDK configuration instead of having it defined in three files like this:
> {code:title=requirements-win32.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "filename": "minishift.exe",
> "sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> {code:title=requirements-darwin.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "filename": "minishift",
> "sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> {code:title=requirements-linux.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
> "filename": "linux-amd64.tar.gz",
> "sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> It would be defined only once like this
> {code:title=requirements.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "vendor": "Red Hat, Inc."
> platform: {
> win32: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "filename": "minishift.exe",
> "sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94"
> },
> darwin: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "filename": "minishift",
> "sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e"
> },
> linux: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
> "filename": "linux-amd64.tar.gz",
> "sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32"
> }
> }
> }
> }
> {code}
> Note that requirements files used as is in tests, they also transformed during the build and final file is landed in 'transpiled' folder.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 10 months
[JBoss JIRA] (JBDS-4293) Merge requirements-*.json files into one
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBDS-4293?page=com.atlassian.jira.plugin.... ]
Denis Golovin updated JBDS-4293:
--------------------------------
Fix Version/s: 10.4.0.AM1
> Merge requirements-*.json files into one
> ----------------------------------------
>
> Key: JBDS-4293
> URL: https://issues.jboss.org/browse/JBDS-4293
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Task
> Components: platform-installer
> Affects Versions: 10.4.0.AM1
> Reporter: Denis Golovin
> Fix For: 10.4.0.AM1
>
>
> Current implementation is looking for requirements-${process.platform}.json. There are three supported platforms and therefore three configuration file with duplicated information for some components.
> New implementation should merge configuration in one file and introduce platform attribute for component configuration's. Only components that has platform specific binaries are affected.
> For example for CDK configuration instead of having it defined in three files like this:
> {code:title=requirements-win32.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "filename": "minishift.exe",
> "sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> {code:title=requirements-darwin.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "filename": "minishift",
> "sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> {code:title=requirements-linux.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
> "filename": "linux-amd64.tar.gz",
> "sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> It would be defined only once like this
> {code:title=requirements.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "vendor": "Red Hat, Inc."
> platform: {
> win32: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "filename": "minishift.exe",
> "sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94"
> },
> darwin: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "filename": "minishift",
> "sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e"
> },
> linux: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
> "filename": "linux-amd64.tar.gz",
> "sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32"
> }
> }
> }
> }
> {code}
> Note that requirements files used as is in tests, they also transformed during the build and final file is landed in 'transpiled' folder.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 10 months
[JBoss JIRA] (JBDS-4293) Merge requirements-*.json files into one
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBDS-4293?page=com.atlassian.jira.plugin.... ]
Denis Golovin updated JBDS-4293:
--------------------------------
Description:
Current implementation is looking for requirements-${process.platform}.json. There are three supported platforms and therefore three configuration file with duplicated information for some components.
New implementation should merge configuration in one file and introduce platform attribute for component configuration's. Only components that has platform specific binaries are affected.
For example for CDK configuration instead of having it defined in three files like this:
{code:title=requirements-win32.json|borderStyle=solid}
{
"cdk": {
"name": "Red Hat Container Development Kit",
"description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
"bundle": "yes",
"version": "3.0.0.GA",
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
"url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
"filename": "minishift.exe",
"sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94",
"vendor": "Red Hat, Inc."
}
}
{code}
{code:title=requirements-darwin.json|borderStyle=solid}
{
"cdk": {
"name": "Red Hat Container Development Kit",
"description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
"bundle": "yes",
"version": "3.0.0.GA",
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
"url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
"filename": "minishift",
"sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e",
"vendor": "Red Hat, Inc."
}
}
{code}
{code:title=requirements-linux.json|borderStyle=solid}
{
"cdk": {
"name": "Red Hat Container Development Kit",
"description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
"bundle": "yes",
"version": "3.0.0.GA",
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
"url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
"filename": "linux-amd64.tar.gz",
"sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32",
"vendor": "Red Hat, Inc."
}
}
{code}
It would be defined only once like this
{code:title=requirements.json|borderStyle=solid}
{
"cdk": {
"name": "Red Hat Container Development Kit",
"description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
"bundle": "yes",
"version": "3.0.0.GA",
"vendor": "Red Hat, Inc."
platform: {
win32: {
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
"url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
"filename": "minishift.exe",
"sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94"
},
darwin: {
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
"url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
"filename": "minishift",
"sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e"
},
linux: {
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
"url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
"filename": "linux-amd64.tar.gz",
"sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32"
}
}
}
}
{code}
Note that requirements files used as is in tests, they also transformed during the build and final file is landed in 'transpiled' folder.
was:
Current implementation is looking for requirements-${process.platform}.json. There are three supported platforms and therefore three configuration file with duplicated information for some components.
New implementation should merge configuration in one file and introduce platform attribute for component configuration's. Only components that has platform specific binaries are affected.
For example for CDK configuration instead of having it defined in three files like this:
{code:title=requirements-win32.json|borderStyle=solid}
{
"cdk": {
"name": "Red Hat Container Development Kit",
"description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
"bundle": "yes",
"version": "3.0.0.GA",
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
"url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
"filename": "minishift.exe",
"sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94",
"vendor": "Red Hat, Inc."
}
}
{code}
{code:title=requirements-darwin.json|borderStyle=solid}
{
"cdk": {
"name": "Red Hat Container Development Kit",
"description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
"bundle": "yes",
"version": "3.0.0.GA",
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
"url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
"filename": "minishift",
"sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e",
"vendor": "Red Hat, Inc."
}
}
{code}
{code:title=requirements-linux.json|borderStyle=solid}
{
"cdk": {
"name": "Red Hat Container Development Kit",
"description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
"bundle": "yes",
"version": "3.0.0.GA",
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
"url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
"filename": "linux-amd64.tar.gz",
"sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32",
"vendor": "Red Hat, Inc."
}
}
{code}
It would be defined only once like this
{code:title=requirements.json|borderStyle=solid}
{
"cdk": {
"name": "Red Hat Container Development Kit",
"description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
"bundle": "yes",
"version": "3.0.0.GA",
"vendor": "Red Hat, Inc."
platform: {
win32: {
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
"url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
"filename": "minishift.exe",
"sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94"
},
darwin: {
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
"url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
"filename": "minishift",
"sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e"
},
linux: {
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
"url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
"filename": "linux-amd64.tar.gz",
"sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32"
}
}
}
}
{code}
> Merge requirements-*.json files into one
> ----------------------------------------
>
> Key: JBDS-4293
> URL: https://issues.jboss.org/browse/JBDS-4293
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Task
> Components: platform-installer
> Affects Versions: 10.4.0.AM1
> Reporter: Denis Golovin
>
> Current implementation is looking for requirements-${process.platform}.json. There are three supported platforms and therefore three configuration file with duplicated information for some components.
> New implementation should merge configuration in one file and introduce platform attribute for component configuration's. Only components that has platform specific binaries are affected.
> For example for CDK configuration instead of having it defined in three files like this:
> {code:title=requirements-win32.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "filename": "minishift.exe",
> "sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> {code:title=requirements-darwin.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "filename": "minishift",
> "sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> {code:title=requirements-linux.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
> "filename": "linux-amd64.tar.gz",
> "sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> It would be defined only once like this
> {code:title=requirements.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "vendor": "Red Hat, Inc."
> platform: {
> win32: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "filename": "minishift.exe",
> "sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94"
> },
> darwin: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "filename": "minishift",
> "sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e"
> },
> linux: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
> "filename": "linux-amd64.tar.gz",
> "sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32"
> }
> }
> }
> }
> {code}
> Note that requirements files used as is in tests, they also transformed during the build and final file is landed in 'transpiled' folder.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 10 months
[JBoss JIRA] (JBDS-4293) Merge requirements-*.json files into one
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBDS-4293?page=com.atlassian.jira.plugin.... ]
Denis Golovin updated JBDS-4293:
--------------------------------
Description:
Current implementation is looking for requirements-${process.platform}.json. There are three supported platforms and therefore three configuration file with duplicated information for some components.
New implementation should merge configuration in one file and introduce platform attribute for component configuration's. Only components that has platform specific binaries are affected.
For example for CDK configuration instead of having it defined in three files like this:
{code:title=requirements-win32.json|borderStyle=solid}
{
"cdk": {
"name": "Red Hat Container Development Kit",
"description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
"bundle": "yes",
"version": "3.0.0.GA",
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
"url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
"filename": "minishift.exe",
"sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94",
"vendor": "Red Hat, Inc."
}
}
{code}
{code:title=requirements-darwin.json|borderStyle=solid}
{
"cdk": {
"name": "Red Hat Container Development Kit",
"description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
"bundle": "yes",
"version": "3.0.0.GA",
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
"url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
"filename": "minishift",
"sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e",
"vendor": "Red Hat, Inc."
}
}
{code}
{code:title=requirements-linux.json|borderStyle=solid}
{
"cdk": {
"name": "Red Hat Container Development Kit",
"description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
"bundle": "yes",
"version": "3.0.0.GA",
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
"url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
"filename": "linux-amd64.tar.gz",
"sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32",
"vendor": "Red Hat, Inc."
}
}
{code}
It would be defined only once like this
{code:title=requirements.json|borderStyle=solid}
{
"cdk": {
"name": "Red Hat Container Development Kit",
"description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
"bundle": "yes",
"version": "3.0.0.GA",
"vendor": "Red Hat, Inc."
platform: {
win32: {
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
"url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
"filename": "minishift.exe",
"sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94"
},
darwin: {
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
"url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
"filename": "minishift",
"sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e"
},
linux: {
"dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
"url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
"filename": "linux-amd64.tar.gz",
"sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32"
}
}
}
}
{code}
was:
Current implementation is looking for requirements-${process.platform}.json. There are three supported platforms and therefore three configuration file with duplicated information for some components.
New implementation should merge configuration in one file and introduce platform attribute for component configuration's. Only components that has platform specific binaries are affected.
For example for CDK configuration instead of having it defined in three files like this:
{code:title=requirements-win32.json|borderStyle=solid}
{code}
{code:title=requirements-darwin.json|borderStyle=solid}
{code}
{code:title=requirements-linux.json|borderStyle=solid}
{code}
It would be defined only once like this
{code:title=requirements.json|borderStyle=solid}
{code}
> Merge requirements-*.json files into one
> ----------------------------------------
>
> Key: JBDS-4293
> URL: https://issues.jboss.org/browse/JBDS-4293
> Project: Red Hat JBoss Developer Studio (devstudio)
> Issue Type: Task
> Components: platform-installer
> Affects Versions: 10.4.0.AM1
> Reporter: Denis Golovin
>
> Current implementation is looking for requirements-${process.platform}.json. There are three supported platforms and therefore three configuration file with duplicated information for some components.
> New implementation should merge configuration in one file and introduce platform attribute for component configuration's. Only components that has platform specific binaries are affected.
> For example for CDK configuration instead of having it defined in three files like this:
> {code:title=requirements-win32.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "filename": "minishift.exe",
> "sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> {code:title=requirements-darwin.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "filename": "minishift",
> "sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> {code:title=requirements-linux.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
> "filename": "linux-amd64.tar.gz",
> "sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32",
> "vendor": "Red Hat, Inc."
> }
> }
> {code}
> It would be defined only once like this
> {code:title=requirements.json|borderStyle=solid}
> {
> "cdk": {
> "name": "Red Hat Container Development Kit",
> "description": "Developer Tools for Creating, Testing, and Distributing Red Hat Container-Based Applications",
> "bundle": "yes",
> "version": "3.0.0.GA",
> "vendor": "Red Hat, Inc."
> platform: {
> win32: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/windows-a...",
> "filename": "minishift.exe",
> "sha256sum": "984318638a5c0d67ae4483bb508f6b90b99f885153dc525660bfff07fa883c94"
> },
> darwin: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/darwin-am...",
> "filename": "minishift",
> "sha256sum": "1e7472175e25d9d197149a3ed2192440a1f581f1884cf2b2c77d97674ee73e5e"
> },
> linux: {
> "dmUrl": "http://cdk-builds.usersys.redhat.com/builds/nightly/11-Feb-2017/linux-amd...",
> "url": "http://cdk-builds.usersys.redhat.com/builds/weekly/25-Jan-2017.3.0_alpha....",
> "filename": "linux-amd64.tar.gz",
> "sha256sum": "76da07d4065eb387093af1316371a19c11982b4b9270eff14bca84db69e2bb32"
> }
> }
> }
> }
> {code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 10 months
[JBoss JIRA] (JBDS-4293) Merge requirements-*.json files into one
by Denis Golovin (JIRA)
Denis Golovin created JBDS-4293:
-----------------------------------
Summary: Merge requirements-*.json files into one
Key: JBDS-4293
URL: https://issues.jboss.org/browse/JBDS-4293
Project: Red Hat JBoss Developer Studio (devstudio)
Issue Type: Task
Components: platform-installer
Affects Versions: 10.4.0.AM1
Reporter: Denis Golovin
Current implementation is looking for requirements-${process.platform}.json. There are three supported platforms and therefore three configuration file with duplicated information for some components.
New implementation should merge configuration in one file and introduce platform attribute for component configuration's. Only components that has platform specific binaries are affected.
For example for CDK configuration instead of having it defined in three files like this:
{code:title=requirements-win32.json|borderStyle=solid}
{code}
{code:title=requirements-darwin.json|borderStyle=solid}
{code}
{code:title=requirements-linux.json|borderStyle=solid}
{code}
It would be defined only once like this
{code:title=requirements.json|borderStyle=solid}
{code}
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 10 months