Skip to content

Commit

Permalink
updated passing the --validate-only for publishing before package ref…
Browse files Browse the repository at this point in the history
…actor
  • Loading branch information
davidparry committed Sep 27, 2024
1 parent 80c4b77 commit 9a38db7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@
/test-project/build/
/test-project/run.log
/test-project/test_results.html
/test-project/gradle/libs.versions.toml
3 changes: 2 additions & 1 deletion cover-agent-plugin/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/.gradle
/.idea
/build
.codiumai
.codiumai
/src/test/resources/jacocoTestReport.csv
6 changes: 3 additions & 3 deletions cover-agent-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
}

group = 'ai.codium'
version = '1.0-SNAPSHOT'
version = '0.0.1'

repositories {
gradlePluginPortal()
Expand Down Expand Up @@ -45,13 +45,13 @@ dependencies {
gradlePlugin {
plugins {
website = 'https://github.com/Codium-ai/gradle-cover-agent'
vcsUrl = 'git@github.com:Codium-ai/gradle-cover-agent.git'
vcsUrl = 'https://github.com/Codium-ai/gradle-cover-agent.git'
coverAgent {
id = 'ai.codium.plugin.cover-agent'
implementationClass = 'ai.codium.cover.plugin.CoverAgentPlugin'
displayName = 'Cover Agent Plugin'
description = 'A plugin to cover agent functionality.'
tags = ['cover', 'agent', 'plugin']
tags = ['cover-agent', 'code-quality', 'unit-testing']

}
}
Expand Down

0 comments on commit 9a38db7

Please sign in to comment.