Skip to content

Commit 9a38db7

Browse files
author
davidparry
committed
updated passing the --validate-only for publishing before package refactor
1 parent 80c4b77 commit 9a38db7

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@
1111
/test-project/build/
1212
/test-project/run.log
1313
/test-project/test_results.html
14+
/test-project/gradle/libs.versions.toml

cover-agent-plugin/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/.gradle
22
/.idea
33
/build
4-
.codiumai
4+
.codiumai
5+
/src/test/resources/jacocoTestReport.csv

cover-agent-plugin/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ plugins {
1313
}
1414

1515
group = 'ai.codium'
16-
version = '1.0-SNAPSHOT'
16+
version = '0.0.1'
1717

1818
repositories {
1919
gradlePluginPortal()
@@ -45,13 +45,13 @@ dependencies {
4545
gradlePlugin {
4646
plugins {
4747
website = 'https://github.com/Codium-ai/gradle-cover-agent'
48-
vcsUrl = 'git@github.com:Codium-ai/gradle-cover-agent.git'
48+
vcsUrl = 'https://github.com/Codium-ai/gradle-cover-agent.git'
4949
coverAgent {
5050
id = 'ai.codium.plugin.cover-agent'
5151
implementationClass = 'ai.codium.cover.plugin.CoverAgentPlugin'
5252
displayName = 'Cover Agent Plugin'
5353
description = 'A plugin to cover agent functionality.'
54-
tags = ['cover', 'agent', 'plugin']
54+
tags = ['cover-agent', 'code-quality', 'unit-testing']
5555

5656
}
5757
}

0 commit comments

Comments
 (0)