Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ TEAM.md includes decision authority hierarchy, collaboration patterns, and railw

Railway Interlocking Simulator - A BSc thesis project (2006/2007) from Brno University of Technology that simulates railway interlocking systems with a graphical editor and discrete event simulation engine.

[![Gradle Build with Java 21](https://github.com/bedavs/interlockSim/actions/workflows/gradle-java21.yml/badge.svg)](https://github.com/bedavs/interlockSim/actions/workflows/gradle-java21.yml)
[![SonarQube Analysis](https://github.com/bedavs/interlockSim/actions/workflows/sonarqube.yml/badge.svg)](https://github.com/bedavs/interlockSim/actions/workflows/sonarqube.yml)
[![Gradle Build with Java 21](https://github.com/bedaHovorka/interlockSim/actions/workflows/gradle-java21.yml/badge.svg)](https://github.com/bedaHovorka/interlockSim/actions/workflows/gradle-java21.yml)
[![SonarQube Analysis](https://github.com/bedaHovorka/interlockSim/actions/workflows/sonarqube.yml/badge.svg)](https://github.com/bedaHovorka/interlockSim/actions/workflows/sonarqube.yml)

## Build System

Expand Down Expand Up @@ -446,7 +446,7 @@ For complete logging configuration, runtime log level override, and output confi

GitHub Actions workflow (`.github/workflows/gradle-java21.yml`) runs on push/PR to main/develop branches. Compiles with Java 21, runs tests, packages JAR (90-day artifact retention), caches dependencies.

View build status: [GitHub Actions](https://github.com/bedavs/interlockSim/actions)
View build status: [GitHub Actions](https://github.com/bedaHovorka/interlockSim/actions)

## Documentation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import org.koin.test.get
* (graph size, occupied blocks, active reservations, train count)
* - These tests MUST pass before merging any Koin changes
*
* @see <a href="https://github.com/bedavs/interlockSim">docs/KOTLIN_STYLE_GUIDE.md - Dependency Injection with Koin</a>
* @see <a href="https://github.com/bedaHovorka/interlockSim">docs/KOTLIN_STYLE_GUIDE.md - Dependency Injection with Koin</a>
*/
@Tag("integration-test")
class KoinGoldenOutputTest : KoinTestBase() {
Expand Down
2 changes: 1 addition & 1 deletion docs/FAST_SIM_BENCHMARK.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Fast-Sim Performance Benchmark: Native vs JVM

Issue [#418](https://github.com/bedavs/interlockSim/issues/418) — Last issue in the fastSim milestone.
Issue [#418](https://github.com/bedaHovorka/interlockSim/issues/418) — Last issue in the fastSim milestone.

## Configuration

Expand Down
4 changes: 2 additions & 2 deletions docs/JAVA21-MIGRATION-SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,12 +214,12 @@ env:

**Before:**
```markdown
[![Gradle Build with Java 11](https://github.com/bedavs/interlockSim/actions/workflows/ant-java11.yml/badge.svg)](...)
[![Gradle Build with Java 11](https://github.com/bedaHovorka/interlockSim/actions/workflows/ant-java11.yml/badge.svg)](...)
```

**After:**
```markdown
[![Gradle Build with Java 21](https://github.com/bedavs/interlockSim/actions/workflows/gradle-java21.yml/badge.svg)](...)
[![Gradle Build with Java 21](https://github.com/bedaHovorka/interlockSim/actions/workflows/gradle-java21.yml/badge.svg)](...)
```

### CI/CD Testing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ issues, via weighted subagent voting on semantic dependency impact.

## Definitions

- `X` = all open GitHub issues in `bedavs/interlockSim`
- `X` = all open GitHub issues in `bedaHovorka/interlockSim`
- `B ⊆ X` = issues whose milestone is `Backlog`
- **Effect of `b ∈ B`**: the aggregated, voter-weighted degree to which
completing `b` would help (unblock, simplify, enable, de-risk) other issues
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ From the set `B` of open Backlog issues, elect the top 3 whose completion would

## Definitions

- `X` = all open GitHub issues in `bedavs/interlockSim`
- `X` = all open GitHub issues in `bedaHovorka/interlockSim`
- `B ⊆ X` = issues whose `milestone.title == "Backlog"`
- **Effect of `b ∈ B`**: how much completing `b` unblocks or simplifies other issues in `X`, as judged by each team subagent from their domain perspective

Expand Down
8 changes: 4 additions & 4 deletions sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ sonar.junit.reportPaths=desktop-ui/build/test-results/test,desktop-ui/build/test
sonar.coverage.jacoco.xmlReportPaths=desktop-ui/build/reports/jacoco/test/jacocoTestReport.xml,core/build/reports/jacoco/jvmTest/jacocoTestReport.xml

# Project links (optional - useful for GitHub integration)
# sonar.links.homepage=https://github.com/bedavs/interlockSim
# sonar.links.ci=https://github.com/bedavs/interlockSim/actions
# sonar.links.issue=https://github.com/bedavs/interlockSim/issues
# sonar.links.scm=https://github.com/bedavs/interlockSim
# sonar.links.homepage=https://github.com/bedaHovorka/interlockSim
# sonar.links.ci=https://github.com/bedaHovorka/interlockSim/actions
# sonar.links.issue=https://github.com/bedaHovorka/interlockSim/issues
# sonar.links.scm=https://github.com/bedaHovorka/interlockSim

# Exclusions (exclude files from analysis)
# sonar.exclusions=**/generated/**,**/legacy/**
Expand Down
Loading