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
2 changes: 1 addition & 1 deletion .github-workflows/build-on-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: pull_request
jobs:
build:
runs-on: windows-latest
name: Build and test on Windows
name: Build on Windows

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -135,3 +135,6 @@ pubspec.lock
# Python cache
__pycache__/
*.pyc

# Claude working files
/.claude/worktrees/
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Agent Guidelines
Please read and follow all guidelines in the project's agent documentation:

- Start with the table of contents: `./agents/_TOC.md`.
- Start with the table of contents: `.agents/_TOC.md`.
- Follow all linked documents from the TOC.
- Apply all coding standards, formatting rules, and project conventions found in these documents.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ object CoreJvmCompiler {
/**
* The version to be used for integration tests.
*/
const val version = "2.0.0-SNAPSHOT.062"
const val version = "2.0.0-SNAPSHOT.063"

/**
* The ID of the Gradle plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ class DependencyReportOutputTest {

@Test
fun `write the generated POM under docs-dependencies`() {
projectDir.resolve("pom.xml").writeText("legacy POM")

PomGenerator.applyTo(project)

project.tasks.named("generatePom").get()
Expand All @@ -70,8 +68,6 @@ class DependencyReportOutputTest {

@Test
fun `merge license reports under docs-dependencies`() {
projectDir.resolve("dependencies.md").writeText("legacy report")

project.pluginManager.apply(BasePlugin::class.java)
val subproject = subproject("sub")
LicenseReporter.generateReportIn(subproject)
Expand Down
Loading