Uploaded image for project: 'IGB'
  1. IGB
  2. IGBF-2566

Get jidesoft code from maven central or other centralized repository

    Details

    • Type: New Feature
    • Status: Closed (View Workflow)
    • Priority: Major
    • Resolution: Done
    • Affects Version/s: None
    • Fix Version/s: None
    • Labels:
      None
    • Story Points:
      1.5
    • Sprint:
      Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22

      Description

      IGB uses GUI components from Jidesoft.

      For many years, the IGB project has imported these components by including the following configuration in the parent POM:

          <properties>
      ...
             <jide.version>3.5.15</jide.version>
      ...
          </properties>
      ...
          <dependencyManagement>
      ...
                  <dependency>
                      <groupId>com.jidesoft</groupId>
                      <artifactId>jide-ultimate</artifactId>
                      <version>${jide.version}</version>
                  </dependency>
      ...
          </dependencyManagement>
      

      The jide-ultimate artifact is available from legacy maven repository 2, specified in the parent POM with:

          <repositories>
      ...
              <repository>
                  <id>repo2</id>
                  <url>https://maven.bioviz.org/repo2</url>
              </repository>
      ...
          </repositories>
      

      Sai Supreeth Segu investigated obtaining jide-ultimate artifact from maven central. He could not find it there, but he did find some other artifacts that appear to contain packages from jide-ultimate.

      For this task, review the packages he found. Compare them jide-ultimate. Answer the question:

      • Which combination of packages contain all the packages used by jide-ultimate?

      Next, use the IGB Docker image to test building IGB, or use your local environment after removing all artifacts from your local .m2 repository to avoid getting confused by local caching.
      Recommended steps:

      • Make a branch on your IGB fork
      • Replace jide-ultimate artifact in the top level POM with the other artifacts.
      • Modify shared-lib-wrapper code to import the packages from the other artifacts into our large OSGi bundle, as is currently being done with jide-ultimate
      • Remove jide-ultimate artifact from the project
      • Test the build on a totally clean environment, e.g., no jidesoft artifacts in the repository local to the build process; ensure it can built on bitbucket using bitbucket pipelines as usual
      • Run the built application; check the log for OSGi-related errors, e.g., can't find a package

      Tip: IGB contains a Felix Web Console you can use to check whether or not a bundle has been loaded and resolve properly. Errors occur when a bundles dependencies can't be resolved due the framework not being able to locate them. See IGB repository top-level README for how to access and use the Felix Web console.

      Also, read: https://www.jidesoft.com/products/. Note that this documentation says that the first 14 artifacts are packaged with JIDE Ultimate Suite, which is probably the human-friendly name for the jide-ultimate.jar artifact. Do a global search of the IGB code base for all jidesoft imports and determine: Which classes and packages are being used? Use this information to identify the subset of artifacts we need for the IGB project.

      JIDE Software products are focused on feature-rich Swing components to simplify the development of rich-client applications. We currently offer 15 component products - the JIDE Docking Framework, JIDE Action Framework, JIDE Components, JIDE Grids, JIDE Dialogs, JIDE Shortcut Editor, JIDE Pivot Grid, JIDE Data Grids, JIDE Code Editor, JIDE Feed Reader, JIDE Dashboard, JIDE Charts, JIDE Gantt Chart, and JIDE Diff - which cover almost every aspect of Swing development. All those products above are bundled into JIDE Ultimate Suite. We also have JIDE Professional Suite and JIDE Enterprise Suite which bundle the first two and the first five products respectively.

      Also, note this message from Jidesoft:

      As of April 2007, we decided to open source the JIDE Common Layer - the foundation of all JIDE other products. You can get the JIDE Common Layer release or access the github repository from github (it was formally hosted on java.net which is now discontinued). If you use maven for your project, all released versions of JIDE Common Layer are also available on the centeral maven repository through sonatype. If you are paid JIDE customers, the source code for JIDE Common Layer is always included in the release under src subfolder.

      The above quote is from: https://www.jidesoft.com/products/oss.htm

        Attachments

          Issue Links

            Activity

            ann.loraine Ann Loraine created issue -
            ann.loraine Ann Loraine made changes -
            Field Original Value New Value
            Epic Link IGBF-1531 [ 17617 ]
            ann.loraine Ann Loraine made changes -
            Link This issue relates to IGBF-1986 [ IGBF-1986 ]
            ann.loraine Ann Loraine made changes -
            Assignee Ann Loraine [ aloraine ]
            ann.loraine Ann Loraine made changes -
            Description IGB uses GUI components from Jidesoft.

            For many years, the IGB project has imported these components by including the following configuration in the parent POM:

            {code}
                <properties>
            ...
                   <jide.version>3.5.15</jide.version>
            ...
                </properties>
            ...
                <dependencyManagement>
            ...
                        <dependency>
                            <groupId>com.jidesoft</groupId>
                            <artifactId>jide-ultimate</artifactId>
                            <version>${jide.version}</version>
                        </dependency>
            ...
                </dependencyManagement>
            {code}

            The jide-ultimate artifact is available from legacy maven repository 2, specified in the parent POM with:

            {code}
                <repositories>
            ...
                    <repository>
                        <id>repo2</id>
                        <url>https://maven.bioviz.org/repo2&lt;/url>
                    </repository>
            ...
                </repositories>
            {code}

            [~ssegu] investigated obtaining jide-ultimate artifact from maven central. He could not find it there, but he did find some other artifacts that appear to contain packages from jide-ultimate.

            For this task, review the packages he found. Compare them jide-ultimate. Answer the question:

            * Which combination of packages contain all the packages used by jide-ultimate?
            IGB uses GUI components from Jidesoft.

            For many years, the IGB project has imported these components by including the following configuration in the parent POM:

            {code}
                <properties>
            ...
                   <jide.version>3.5.15</jide.version>
            ...
                </properties>
            ...
                <dependencyManagement>
            ...
                        <dependency>
                            <groupId>com.jidesoft</groupId>
                            <artifactId>jide-ultimate</artifactId>
                            <version>${jide.version}</version>
                        </dependency>
            ...
                </dependencyManagement>
            {code}

            The jide-ultimate artifact is available from legacy maven repository 2, specified in the parent POM with:

            {code}
                <repositories>
            ...
                    <repository>
                        <id>repo2</id>
                        <url>https://maven.bioviz.org/repo2&lt;/url>
                    </repository>
            ...
                </repositories>
            {code}

            [~ssegu] investigated obtaining jide-ultimate artifact from maven central. He could not find it there, but he did find some other artifacts that appear to contain packages from jide-ultimate.

            For this task, review the packages he found. Compare them jide-ultimate. Answer the question:

            * Which combination of packages contain all the packages used by jide-ultimate?

            Next, use the IGB Docker image to test building IGB, or use your local environment after removing all artifacts from your local .m2 repository to avoid getting confused by local caching.
            Recommended steps:

            * Make a branch on your IGB fork
            * Replace jide-ultimate artifact in the top level POM with the other artifacts.
            * Modify shared-lib-wrapper code to import the packages from the other artifacts into our large OSGi bundle, as is currently being done with jide-ultimate
            * Remove jide-ultimate artifact from the project
            * Test the build on a totally clean environment, e.g., no jidesoft artifacts in the repository local to the build process; ensure it can built on bitbucket using bitbucket pipelines as usual
            * Run the built application; check the log for OSGi-related errors, e.g., can't find a package

            *Tip*: IGB contains a Felix Web Console you can use to check whether or not a bundle has been loaded and resolve properly. Errors occur when a bundles dependencies can't be resolved due the framework not being able to locate them. See IGB repository top-level README for how to access and use the Felix Web console.
            ann.loraine Ann Loraine made changes -
            Description IGB uses GUI components from Jidesoft.

            For many years, the IGB project has imported these components by including the following configuration in the parent POM:

            {code}
                <properties>
            ...
                   <jide.version>3.5.15</jide.version>
            ...
                </properties>
            ...
                <dependencyManagement>
            ...
                        <dependency>
                            <groupId>com.jidesoft</groupId>
                            <artifactId>jide-ultimate</artifactId>
                            <version>${jide.version}</version>
                        </dependency>
            ...
                </dependencyManagement>
            {code}

            The jide-ultimate artifact is available from legacy maven repository 2, specified in the parent POM with:

            {code}
                <repositories>
            ...
                    <repository>
                        <id>repo2</id>
                        <url>https://maven.bioviz.org/repo2&lt;/url>
                    </repository>
            ...
                </repositories>
            {code}

            [~ssegu] investigated obtaining jide-ultimate artifact from maven central. He could not find it there, but he did find some other artifacts that appear to contain packages from jide-ultimate.

            For this task, review the packages he found. Compare them jide-ultimate. Answer the question:

            * Which combination of packages contain all the packages used by jide-ultimate?

            Next, use the IGB Docker image to test building IGB, or use your local environment after removing all artifacts from your local .m2 repository to avoid getting confused by local caching.
            Recommended steps:

            * Make a branch on your IGB fork
            * Replace jide-ultimate artifact in the top level POM with the other artifacts.
            * Modify shared-lib-wrapper code to import the packages from the other artifacts into our large OSGi bundle, as is currently being done with jide-ultimate
            * Remove jide-ultimate artifact from the project
            * Test the build on a totally clean environment, e.g., no jidesoft artifacts in the repository local to the build process; ensure it can built on bitbucket using bitbucket pipelines as usual
            * Run the built application; check the log for OSGi-related errors, e.g., can't find a package

            *Tip*: IGB contains a Felix Web Console you can use to check whether or not a bundle has been loaded and resolve properly. Errors occur when a bundles dependencies can't be resolved due the framework not being able to locate them. See IGB repository top-level README for how to access and use the Felix Web console.
            IGB uses GUI components from Jidesoft.

            For many years, the IGB project has imported these components by including the following configuration in the parent POM:

            {code}
                <properties>
            ...
                   <jide.version>3.5.15</jide.version>
            ...
                </properties>
            ...
                <dependencyManagement>
            ...
                        <dependency>
                            <groupId>com.jidesoft</groupId>
                            <artifactId>jide-ultimate</artifactId>
                            <version>${jide.version}</version>
                        </dependency>
            ...
                </dependencyManagement>
            {code}

            The jide-ultimate artifact is available from legacy maven repository 2, specified in the parent POM with:

            {code}
                <repositories>
            ...
                    <repository>
                        <id>repo2</id>
                        <url>https://maven.bioviz.org/repo2&lt;/url>
                    </repository>
            ...
                </repositories>
            {code}

            [~ssegu] investigated obtaining jide-ultimate artifact from maven central. He could not find it there, but he did find some other artifacts that appear to contain packages from jide-ultimate.

            For this task, review the packages he found. Compare them jide-ultimate. Answer the question:

            * Which combination of packages contain all the packages used by jide-ultimate?

            Next, use the IGB Docker image to test building IGB, or use your local environment after removing all artifacts from your local .m2 repository to avoid getting confused by local caching.
            Recommended steps:

            * Make a branch on your IGB fork
            * Replace jide-ultimate artifact in the top level POM with the other artifacts.
            * Modify shared-lib-wrapper code to import the packages from the other artifacts into our large OSGi bundle, as is currently being done with jide-ultimate
            * Remove jide-ultimate artifact from the project
            * Test the build on a totally clean environment, e.g., no jidesoft artifacts in the repository local to the build process; ensure it can built on bitbucket using bitbucket pipelines as usual
            * Run the built application; check the log for OSGi-related errors, e.g., can't find a package

            *Tip*: IGB contains a Felix Web Console you can use to check whether or not a bundle has been loaded and resolve properly. Errors occur when a bundles dependencies can't be resolved due the framework not being able to locate them. See IGB repository top-level README for how to access and use the Felix Web console.

            Also, read: https://www.jidesoft.com/products/. Note that this documentation says that the first 14 artifacts are packaged with JIDE Ultimate Suite, which is probably the human-friendly name for the jide-ultimate.jar artifact. Do a global search of the IGB code base for all jidesoft imports and determine: Which classes and packages are being used? Use this information to identify the subset of artifacts we need for the IGB project.

            {quote}
            JIDE Software products are focused on feature-rich Swing components to simplify the development of rich-client applications. We currently offer 15 component products - the JIDE Docking Framework, JIDE Action Framework, JIDE Components, JIDE Grids, JIDE Dialogs, JIDE Shortcut Editor, JIDE Pivot Grid, JIDE Data Grids, JIDE Code Editor, JIDE Feed Reader, JIDE Dashboard, JIDE Charts, JIDE Gantt Chart, and JIDE Diff - which cover almost every aspect of Swing development. All those products above are bundled into JIDE Ultimate Suite. We also have JIDE Professional Suite and JIDE Enterprise Suite which bundle the first two and the first five products respectively.
            {quote}
            ann.loraine Ann Loraine made changes -
            Description IGB uses GUI components from Jidesoft.

            For many years, the IGB project has imported these components by including the following configuration in the parent POM:

            {code}
                <properties>
            ...
                   <jide.version>3.5.15</jide.version>
            ...
                </properties>
            ...
                <dependencyManagement>
            ...
                        <dependency>
                            <groupId>com.jidesoft</groupId>
                            <artifactId>jide-ultimate</artifactId>
                            <version>${jide.version}</version>
                        </dependency>
            ...
                </dependencyManagement>
            {code}

            The jide-ultimate artifact is available from legacy maven repository 2, specified in the parent POM with:

            {code}
                <repositories>
            ...
                    <repository>
                        <id>repo2</id>
                        <url>https://maven.bioviz.org/repo2&lt;/url>
                    </repository>
            ...
                </repositories>
            {code}

            [~ssegu] investigated obtaining jide-ultimate artifact from maven central. He could not find it there, but he did find some other artifacts that appear to contain packages from jide-ultimate.

            For this task, review the packages he found. Compare them jide-ultimate. Answer the question:

            * Which combination of packages contain all the packages used by jide-ultimate?

            Next, use the IGB Docker image to test building IGB, or use your local environment after removing all artifacts from your local .m2 repository to avoid getting confused by local caching.
            Recommended steps:

            * Make a branch on your IGB fork
            * Replace jide-ultimate artifact in the top level POM with the other artifacts.
            * Modify shared-lib-wrapper code to import the packages from the other artifacts into our large OSGi bundle, as is currently being done with jide-ultimate
            * Remove jide-ultimate artifact from the project
            * Test the build on a totally clean environment, e.g., no jidesoft artifacts in the repository local to the build process; ensure it can built on bitbucket using bitbucket pipelines as usual
            * Run the built application; check the log for OSGi-related errors, e.g., can't find a package

            *Tip*: IGB contains a Felix Web Console you can use to check whether or not a bundle has been loaded and resolve properly. Errors occur when a bundles dependencies can't be resolved due the framework not being able to locate them. See IGB repository top-level README for how to access and use the Felix Web console.

            Also, read: https://www.jidesoft.com/products/. Note that this documentation says that the first 14 artifacts are packaged with JIDE Ultimate Suite, which is probably the human-friendly name for the jide-ultimate.jar artifact. Do a global search of the IGB code base for all jidesoft imports and determine: Which classes and packages are being used? Use this information to identify the subset of artifacts we need for the IGB project.

            {quote}
            JIDE Software products are focused on feature-rich Swing components to simplify the development of rich-client applications. We currently offer 15 component products - the JIDE Docking Framework, JIDE Action Framework, JIDE Components, JIDE Grids, JIDE Dialogs, JIDE Shortcut Editor, JIDE Pivot Grid, JIDE Data Grids, JIDE Code Editor, JIDE Feed Reader, JIDE Dashboard, JIDE Charts, JIDE Gantt Chart, and JIDE Diff - which cover almost every aspect of Swing development. All those products above are bundled into JIDE Ultimate Suite. We also have JIDE Professional Suite and JIDE Enterprise Suite which bundle the first two and the first five products respectively.
            {quote}
            IGB uses GUI components from Jidesoft.

            For many years, the IGB project has imported these components by including the following configuration in the parent POM:

            {code}
                <properties>
            ...
                   <jide.version>3.5.15</jide.version>
            ...
                </properties>
            ...
                <dependencyManagement>
            ...
                        <dependency>
                            <groupId>com.jidesoft</groupId>
                            <artifactId>jide-ultimate</artifactId>
                            <version>${jide.version}</version>
                        </dependency>
            ...
                </dependencyManagement>
            {code}

            The jide-ultimate artifact is available from legacy maven repository 2, specified in the parent POM with:

            {code}
                <repositories>
            ...
                    <repository>
                        <id>repo2</id>
                        <url>https://maven.bioviz.org/repo2&lt;/url>
                    </repository>
            ...
                </repositories>
            {code}

            [~ssegu] investigated obtaining jide-ultimate artifact from maven central. He could not find it there, but he did find some other artifacts that appear to contain packages from jide-ultimate.

            For this task, review the packages he found. Compare them jide-ultimate. Answer the question:

            * Which combination of packages contain all the packages used by jide-ultimate?

            Next, use the IGB Docker image to test building IGB, or use your local environment after removing all artifacts from your local .m2 repository to avoid getting confused by local caching.
            Recommended steps:

            * Make a branch on your IGB fork
            * Replace jide-ultimate artifact in the top level POM with the other artifacts.
            * Modify shared-lib-wrapper code to import the packages from the other artifacts into our large OSGi bundle, as is currently being done with jide-ultimate
            * Remove jide-ultimate artifact from the project
            * Test the build on a totally clean environment, e.g., no jidesoft artifacts in the repository local to the build process; ensure it can built on bitbucket using bitbucket pipelines as usual
            * Run the built application; check the log for OSGi-related errors, e.g., can't find a package

            *Tip*: IGB contains a Felix Web Console you can use to check whether or not a bundle has been loaded and resolve properly. Errors occur when a bundles dependencies can't be resolved due the framework not being able to locate them. See IGB repository top-level README for how to access and use the Felix Web console.

            Also, read: https://www.jidesoft.com/products/. Note that this documentation says that the first 14 artifacts are packaged with JIDE Ultimate Suite, which is probably the human-friendly name for the jide-ultimate.jar artifact. Do a global search of the IGB code base for all jidesoft imports and determine: Which classes and packages are being used? Use this information to identify the subset of artifacts we need for the IGB project.

            {quote}
            JIDE Software products are focused on feature-rich Swing components to simplify the development of rich-client applications. We currently offer 15 component products - the JIDE Docking Framework, JIDE Action Framework, JIDE Components, JIDE Grids, JIDE Dialogs, JIDE Shortcut Editor, JIDE Pivot Grid, JIDE Data Grids, JIDE Code Editor, JIDE Feed Reader, JIDE Dashboard, JIDE Charts, JIDE Gantt Chart, and JIDE Diff - which cover almost every aspect of Swing development. All those products above are bundled into JIDE Ultimate Suite. We also have JIDE Professional Suite and JIDE Enterprise Suite which bundle the first two and the first five products respectively.
            {quote}

            Also, note this message from Jidesoft:

            {quote}
            As of April 2007, we decided to open source the JIDE Common Layer - the foundation of all JIDE other products. You can get the JIDE Common Layer release or access the github repository from github (it was formally hosted on java.net which is now discontinued). If you use maven for your project, all released versions of JIDE Common Layer are also available on the centeral maven repository through sonatype. If you are paid JIDE customers, the source code for JIDE Common Layer is always included in the release under src subfolder.
            {quote}

            The above quote is from: https://www.jidesoft.com/products/oss.htm
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            ssegu Sai Supreeth Segu (Inactive) made changes -
            Status To-Do [ 10305 ] In Progress [ 3 ]
            ssegu Sai Supreeth Segu (Inactive) made changes -
            Status In Progress [ 3 ] To-Do [ 10305 ]
            ssegu Sai Supreeth Segu (Inactive) made changes -
            Assignee Sai Supreeth Segu [ ssegu ]
            ssegu Sai Supreeth Segu (Inactive) made changes -
            Status To-Do [ 10305 ] In Progress [ 3 ]
            ssegu Sai Supreeth Segu (Inactive) made changes -
            Status In Progress [ 3 ] To-Do [ 10305 ]
            ssegu Sai Supreeth Segu (Inactive) made changes -
            Status To-Do [ 10305 ] In Progress [ 3 ]
            ssegu Sai Supreeth Segu (Inactive) made changes -
            Status In Progress [ 3 ] Needs 1st Level Review [ 10005 ]
            ssegu Sai Supreeth Segu (Inactive) made changes -
            Assignee Sai Supreeth Segu [ ssegu ]
            ann.loraine Ann Loraine made changes -
            Status Needs 1st Level Review [ 10005 ] First Level Review in Progress [ 10301 ]
            ann.loraine Ann Loraine made changes -
            Status First Level Review in Progress [ 10301 ] To-Do [ 10305 ]
            ann.loraine Ann Loraine made changes -
            Assignee Sai Supreeth Segu [ ssegu ]
            ann.loraine Ann Loraine made changes -
            Sprint Fall 4 Oct 26 - Nov 6 [ 107 ] Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20 [ 107, 108 ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            ssegu Sai Supreeth Segu (Inactive) made changes -
            Status To-Do [ 10305 ] In Progress [ 3 ]
            ssegu Sai Supreeth Segu (Inactive) made changes -
            Status In Progress [ 3 ] Needs 1st Level Review [ 10005 ]
            ssegu Sai Supreeth Segu (Inactive) made changes -
            Assignee Sai Supreeth Segu [ ssegu ]
            ann.loraine Ann Loraine made changes -
            Assignee Sai Supreeth Segu [ ssegu ]
            ann.loraine Ann Loraine made changes -
            Status Needs 1st Level Review [ 10005 ] First Level Review in Progress [ 10301 ]
            ann.loraine Ann Loraine made changes -
            Status First Level Review in Progress [ 10301 ] To-Do [ 10305 ]
            ann.loraine Ann Loraine made changes -
            Status To-Do [ 10305 ] In Progress [ 3 ]
            ann.loraine Ann Loraine made changes -
            Status In Progress [ 3 ] Needs 1st Level Review [ 10005 ]
            ann.loraine Ann Loraine made changes -
            Status Needs 1st Level Review [ 10005 ] First Level Review in Progress [ 10301 ]
            ann.loraine Ann Loraine made changes -
            Status First Level Review in Progress [ 10301 ] Ready for Pull Request [ 10304 ]
            ssegu Sai Supreeth Segu (Inactive) made changes -
            Status Ready for Pull Request [ 10304 ] Pull Request Submitted [ 10101 ]
            nfreese Nowlan Freese made changes -
            Assignee Sai Supreeth Segu [ ssegu ]
            ann.loraine Ann Loraine made changes -
            Status Pull Request Submitted [ 10101 ] Reviewing Pull Request [ 10303 ]
            ann.loraine Ann Loraine made changes -
            Status Reviewing Pull Request [ 10303 ] Merged Needs Testing [ 10002 ]
            noor91zahara Noor Zahara (Inactive) made changes -
            Status Merged Needs Testing [ 10002 ] Post-merge Testing In Progress [ 10003 ]
            noor91zahara Noor Zahara (Inactive) made changes -
            Assignee Noor Zahara [ noor91zahara ]
            noor91zahara Noor Zahara (Inactive) made changes -
            Status Post-merge Testing In Progress [ 10003 ] To-Do [ 10305 ]
            noor91zahara Noor Zahara (Inactive) made changes -
            Assignee Noor Zahara [ noor91zahara ] Sai Supreeth Segu [ ssegu ]
            ssegu Sai Supreeth Segu (Inactive) made changes -
            Status To-Do [ 10305 ] In Progress [ 3 ]
            ann.loraine Ann Loraine made changes -
            Sprint Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20 [ 107, 108 ] Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20, Fall 6 Nov 23 - Dec 4 [ 107, 108, 109 ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            ssegu Sai Supreeth Segu (Inactive) made changes -
            Status In Progress [ 3 ] To-Do [ 10305 ]
            ann.loraine Ann Loraine made changes -
            Sprint Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11 [ 107, 108, 109 ] Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23 [ 107, 108, 109, 110 ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            ann.loraine Ann Loraine made changes -
            Sprint Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23 [ 107, 108, 109, 110 ] Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8 [ 107, 108, 109, 110, 111 ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            ann.loraine Ann Loraine made changes -
            Sprint Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8 [ 107, 108, 109, 110, 111 ] Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22 [ 107, 108, 109, 110, 111, 112 ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            ann.loraine Ann Loraine made changes -
            Sprint Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22 [ 107, 108, 109, 110, 111, 112 ] Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8 [ 107, 108, 109, 110, 111 ]
            ann.loraine Ann Loraine made changes -
            Sprint Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8 [ 107, 108, 109, 110, 111 ] Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22 [ 107, 108, 109, 110, 111, 112 ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked lower
            ann.loraine Ann Loraine made changes -
            Sprint Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22 [ 107, 108, 109, 110, 111, 112 ] Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5 [ 107, 108, 109, 110, 111, 112, 113 ]
            ann.loraine Ann Loraine made changes -
            Rank Ranked higher
            ann.loraine Ann Loraine made changes -
            Sprint Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22, Winter 3 Jan 25 - Feb 5 [ 107, 108, 109, 110, 111, 112, 113 ] Fall 4 Oct 26 - Nov 6, Fall 5 Nov 9 - Nov 20, Fall 6 Nov 30 - Dec 11, Fall 7 Dec 14 - Dec 23, Winter 1 Dec 28 - Jan 8, Winter 2 Jan 11 - Jan 22 [ 107, 108, 109, 110, 111, 112 ]
            ann.loraine Ann Loraine made changes -
            Status To-Do [ 10305 ] In Progress [ 3 ]
            ann.loraine Ann Loraine made changes -
            Status In Progress [ 3 ] Needs 1st Level Review [ 10005 ]
            ann.loraine Ann Loraine made changes -
            Status Needs 1st Level Review [ 10005 ] First Level Review in Progress [ 10301 ]
            ann.loraine Ann Loraine made changes -
            Status First Level Review in Progress [ 10301 ] Ready for Pull Request [ 10304 ]
            ann.loraine Ann Loraine made changes -
            Status Ready for Pull Request [ 10304 ] Pull Request Submitted [ 10101 ]
            ann.loraine Ann Loraine made changes -
            Status Pull Request Submitted [ 10101 ] Reviewing Pull Request [ 10303 ]
            ann.loraine Ann Loraine made changes -
            Status Reviewing Pull Request [ 10303 ] Merged Needs Testing [ 10002 ]
            ann.loraine Ann Loraine made changes -
            Status Merged Needs Testing [ 10002 ] Post-merge Testing In Progress [ 10003 ]
            ann.loraine Ann Loraine made changes -
            Resolution Done [ 10000 ]
            Status Post-merge Testing In Progress [ 10003 ] Closed [ 6 ]
            ann.loraine Ann Loraine made changes -
            Link This issue relates to IGBF-3302 [ IGBF-3302 ]

              People

              • Assignee:
                ssegu Sai Supreeth Segu (Inactive)
                Reporter:
                ann.loraine Ann Loraine
              • Votes:
                0 Vote for this issue
                Watchers:
                3 Start watching this issue

                Dates

                • Created:
                  Updated:
                  Resolved: