Skip to content

Tags: sing-group/aibench-project

Tags

v2.10.2

Toggle v2.10.2's commit message
Version 2.10.2

v2.10.1

Toggle v2.10.1's commit message
Updates project to allow deployment in Maven Central

The POM files have been configured to allow deploying the project in
Maven Central repository.

Two different profiles have been created to allow deploying the project
into the SING's repository or into Maven Central. To do so, the command
that should be used is:
  - SING: mvn deploy -P sign-artifacts,sing-repository
  - Maven Central: mvn deploy -P sign-artifacts,maven-central-repository

v2.10.0

Toggle v2.10.0's commit message
Change version to 2.10.0

v2.9.0

Toggle v2.9.0's commit message
Change version to 2.9.0

v2.8.4

Toggle v2.8.4's commit message
Version 2.8.4

v2.8.3

Toggle v2.8.3's commit message
Version 2.8.3

v2.8.2

Toggle v2.8.2's commit message
Fixes bugs: dialog's help icon location and port order

This commit fixes two bugs. The first one is related to the location of
the help icon used in the generated operation dialogs that it is used to
replace the description text, so that the text appears as a tooltip of
these icons. The code that replaces the description with this icons had
some bugs that caused the application to fail with certain
configurations.

The second bug was related to the port sorting comparator used in the
OperationDefinition class. The comparator didn't follow the comparator's
contract, causing the code to fail, for example, when to ports don't
have a specific port order.

v2.8.1

Toggle v2.8.1's commit message
Updates starting instructions in docs to new project layout

Adds the new /dist directory in starting instructions.

v2.8.0

Toggle v2.8.0's commit message
Change version 2.8.0

v2.7.3

Toggle v2.7.3's commit message
Fix AIBenchJTreeManager

An error was detected in the AIBenchJTreeManager, caused by the
datatypes that do not have an associated icon. The current code tried to
recover their icon as a global resource and, as the icon URL was null,
it caused an error.

This commit fixes this error by checking first whether the icon URL is
null or not.

In addition, this commit also simplifies some additional code in the
same class.