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 .junie/guidelines.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Guidelines for Junie and AI Agent from JetBrains

Read the `../.agents/_TOC.md` file at the root of the project to understand:
Read the `../.agents/_TOC.md` file to understand:
- the agent responsibilities,
- project overview,
- coding guidelines,
- project overview,
- coding guidelines,
- other relevant topics.

Also follow the Junie-specific rules described below.
Expand Down
10 changes: 5 additions & 5 deletions buildSrc/src/main/kotlin/io/spine/dependency/local/Compiler.kt
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ object Compiler {
* The version of ProtoData dependencies.
*/
val version: String
private const val fallbackVersion = "2.0.0-SNAPSHOT.017"
private const val fallbackVersion = "2.0.0-SNAPSHOT.021"

/**
* The distinct version of ProtoData used by other build tools.
Expand All @@ -79,7 +79,7 @@ object Compiler {
* transitional dependencies, this is the version used to build the project itself.
*/
val dogfoodingVersion: String
private const val fallbackDfVersion = "2.0.0-SNAPSHOT.017"
private const val fallbackDfVersion = "2.0.0-SNAPSHOT.021"

/**
* The artifact for the ProtoData Gradle plugin.
Expand Down Expand Up @@ -161,10 +161,10 @@ object Compiler {
-----------------------------------------
Regular version = v$version
Dogfooding version = v$dogfoodingVersion

The Compiler Gradle plugin can now be loaded from Maven Local.
To reset the versions, erase the `$$VERSION_ENV` and `$$DF_VERSION_ENV` environment variables.

To reset the versions, erase the `$$VERSION_ENV` and `$$DF_VERSION_ENV` environment variables.

""".trimIndent())
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ object CoreJvmCompiler {
/**
* The version used to in the build classpath.
*/
const val dogfoodingVersion = "2.0.0-SNAPSHOT.008"
const val dogfoodingVersion = "2.0.0-SNAPSHOT.009"

/**
* The version to be used for integration tests.
*/
const val version = "2.0.0-SNAPSHOT.008"
const val version = "2.0.0-SNAPSHOT.009"

/**
* The ID of the Gradle plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ package io.spine.dependency.local
@Suppress("ConstPropertyName", "unused")
object ToolBase {
const val group = Spine.toolsGroup
const val version = "2.0.0-SNAPSHOT.357"
const val version = "2.0.0-SNAPSHOT.358"

const val lib = "$group:tool-base:$version"
const val pluginBase = "$group:plugin-base:$version"
Expand Down
13 changes: 5 additions & 8 deletions migrate
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ cp CODE_OF_CONDUCT.md ..
echo "Updating Codecov settings"
cp .codecov.yml ..


echo "Updating \\\`AGENTS.md\\\`"
cp AGENTS.md ..

echo "Updating \\\`CLAUDE.md\\\`"
cp CLAUDE.md ..

echo "Updating Junie guidelines"
rm -rf ../.junie
if [ -d ".junie" ]; then
Expand Down Expand Up @@ -47,13 +49,8 @@ cp -a .github-workflows/. ../.github/workflows
cp -a .github/workflows/. ../.github/workflows
rm -f ../.github/workflows/detekt-code-analysis.yml # This one is `config`-only workflow.

# echo "Cleaning up GitHub workflows"
#rm -f ../buildSrc/src/main/kotlin/force-jacoco.gradle.kts
#rm -f ../buildSrc/src/main/kotlin/deps-between-tasks.kt

# echo "Cleaning up Gradle 'buildSrc' scripts"
#rm -f ../buildSrc/src/main/kotlin/force-jacoco.gradle.kts
#rm -f ../buildSrc/src/main/kotlin/deps-between-tasks.kt
# 2025-10-01 Remove renamed `CoreJava.kt`
rm -f ../buildSrc/src/main/kotlin/io/spine/dependency/local/CoreJava.kt

# 2025-05-02 Remove the refactored file.
rm -f ../buildSrc/src/main/kotlin/io/spine/gradle/javadoc/TaskContainerExtensions.kt
Expand Down