aboutsummaryrefslogtreecommitdiffstats
path: root/gradle
Commit message (Collapse)AuthorAge
...
* chore(deps): bump dependenciesLibravatar Kristóf Marussy2022-09-11
|
* chore(deps): bump dependenciesLibravatar Kristóf Marussy2022-08-26
|
* chore(deps): bump dependenciesLibravatar Kristóf Marussy2022-08-12
|
* chore(deps): bump dependenciesLibravatar Kristóf Marussy2022-07-31
|
* refactor: simplify language projectLibravatar Kristóf Marussy2022-07-29
| | | | | | * Move all utilities for language-model to language, since they do not make sense on their own * Convert xtend code into java
* chore: bump dependenciesLibravatar Kristóf Marussy2022-07-27
|
* build: make sure slf4j is used instead of log4jLibravatar Kristóf Marussy2021-12-14
|
* chore: bump gradle dependency versionsLibravatar Kristóf Marussy2021-12-12
|
* build: add versions plugin to monitor updatesLibravatar Kristóf Marussy2021-12-12
|
* build: move to yarn workspacesLibravatar Kristóf Marussy2021-11-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The root project (worktree) must have a valid package.json, .yarnrc.yaml, and have the gradle precompiled script plugin refinery-frontend-worktree applied to it. All frontend modules (workspaces) must have a valid package.json, be referenced in the worktree project.json, and be a valid gradle subproject with the gradle precompiled script plugin refinery-frontend-workspace applied to it. To reduce unnecessary downloads, we do the following workarounds: * The node version is pinned in gradle.properties and the installed node version is stored in .node/frontend.properties. A new node version is only downloaded if it differs from the installed one (or none is installed). This improves on the default gradle behavior, which would download a new node version if the classpath of the installNode task was changed. * The yarn classic version is pinned in gradle.properties and the installed yarn classic version is stored in .node/frontend.properties. This improves on the default gradle behavior, which would reinstall the yarn npm package at every build. * We disable the enableYarnBerry task, since a yarn berry version is already committed into the repository at .yarn/versions as it is recommended in http://yarnpkg.com/getting-started/qa/ * We use yarn set version --only-if-needed in the installYarn task. * The installFrontend task takes package.json and yarn.lock as inputs and produces .pnp.cjs and .pnp.loader.mjs as outputs. Whether this task is up-to-date can be checked by gradle quickly, since it doesn't have to traverse the node_module folder due to pnp resoltion: https://yarnpkg.com/features/pnp/ All workspaces have the installNode, installYarnGlobally, installYarn and installFrontend tasks disabled. However, these tasks depend on the task with the same name in the worktree project, so installation is still triggered globally. Moreover, the installFrontend task in the worktree has the package.json of the workspaces as inputs, so reinstallation is triggered when the workspace package.json changes.
* build: upgrade to yarn 3Libravatar Kristóf Marussy2021-11-20
| | | | | | | Also upgrades various frontend dependencies. We can't upgrade to typescript 4.5 yet, because https://github.com/yarnpkg/berry/pull/3760 is not released yet.
* build: bump gradle version to 7.3Libravatar Kristóf Marussy2021-11-18
|
* build: library and application convetion pluginsLibravatar Kristóf Marussy2021-11-17
|
* build: move scripts into script pluginsLibravatar Kristóf Marussy2021-11-17
| | | | | Script plugins allow applying other plugins from plugins { } blocks, which simplifies the build script.
* build: use version catalogsLibravatar Kristóf Marussy2021-11-16
| | | | | | | | | | | Gradle version catalogs allow centralized management of dependency artifact coordinates using a toml file. Previously, we use the gradle.properties file, which cannot manage group and name coordinates, only versions. Node and yarn versions still have to be in gradle.properties, because they do not correspond to any coordiates of a maven artifact.
* feat(web): batched xtext websocket prototypeLibravatar Kristóf Marussy2021-10-31
|
* build: refactor task dependenciesLibravatar Kristóf Marussy2021-10-03
|
* build: simplify Eclipse project generationLibravatar Kristóf Marussy2021-10-02
| | | | | | Make sure both the :generateXtext and :generateTestXtext task are run if there is a generated xtend-gen source folder, so that BuildShip can set ignore_optional_problems also on there.
* build: fix Eclipse project generation instructionsLibravatar Kristóf Marussy2021-10-02
| | | | | | | | | | | | BuildShip and Gradle :eclipse are incompatible: https://github.com/eclipse/buildship/issues/267#issuecomment-547318667 Therefore, we run :eclipseJdt manually instead to genrate the JDT configuration to ignore @SuppressWarning unknown warnings, which lets us silence Sonar warnings in-line. We also run :generateXtext to make sure all generated sources are ready for the Eclipse build.
* build: bump to Java 17Libravatar Kristóf Marussy2021-10-02
|
* chore: bump Maven dependenciesLibravatar Kristóf Marussy2021-10-02
| | | | | Xtext 2.26.0.M2 might finally have Java 17 support: https://github.com/eclipse/xtext/issues/1982#issuecomment-931958311
* feat: skeleton for language to store mappingLibravatar Kristóf Marussy2021-10-01
|
* build: migration to Gradle 7Libravatar Kristóf Marussy2021-09-29
|
* ci: Sonar fixesLibravatar Kristóf Marussy2021-09-24
|
* build: make sure to produce JaCoCo xml reportLibravatar Kristóf Marussy2021-09-24
|
* ci: fix typo and simplify workflowLibravatar Kristóf Marussy2021-09-24
|
* ci: add GH actions build and SonarScannerLibravatar Kristóf Marussy2021-09-24
|
* Build fixes, formattingLibravatar Kristóf Marussy2021-08-16
|
* Add VIATRA Query dependencyLibravatar Kristóf Marussy2021-07-31
|
* Refactor Gradle configsLibravatar Kristóf Marussy2021-07-31
|
* Add JMH benchmarks for model-dataLibravatar Kristóf Marussy2021-07-30
|
* Data structure cleanup with SonarLibravatar Kristóf Marussy2021-07-29
|
* Add new data structure for backendLibravatar Kristóf Marussy2021-07-29
| | | | Co-authored-by: Oszkár Semeráth <semerath@mit.bme.hu>
* Refactoring based on Sonar reportsLibravatar Kristóf Marussy2021-07-29
|
* Generate all files on buildLibravatar Kristóf Marussy2021-06-29
|
* Fix running outside of EclipseLibravatar Kristóf Marussy2021-06-27
|
* Simplify project layoutLibravatar Kristóf Marussy2021-06-27