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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@ target/

# CodeGraph local index (user tooling, not project state)
.codegraph/

# local session artifacts (agent runs at repo root) + Claude Code worktrees
/coverage/
.claude/
8 changes: 4 additions & 4 deletions README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
> 🇰🇷 [한국어](README.md) · 🇬🇧 **English** (this page)

<p align="center">
<a href="https://github.com/baekchangjoon/parallel-per-test-coverage/actions/workflows/ci.yml"><img alt="CI" src="https://github.com/baekchangjoon/parallel-per-test-coverage/actions/workflows/ci.yml/badge.svg"></a>
<a href="https://github.com/baekchangjoon/parallel-per-test-coverage/actions/workflows/jacoco-canary.yml"><img alt="JaCoCo version canary" src="https://github.com/baekchangjoon/parallel-per-test-coverage/actions/workflows/jacoco-canary.yml/badge.svg"></a>
<a href="https://github.com/beltian/parallel-per-test-coverage/actions/workflows/ci.yml"><img alt="CI" src="https://github.com/beltian/parallel-per-test-coverage/actions/workflows/ci.yml/badge.svg"></a>
<a href="https://github.com/beltian/parallel-per-test-coverage/actions/workflows/jacoco-canary.yml"><img alt="JaCoCo version canary" src="https://github.com/beltian/parallel-per-test-coverage/actions/workflows/jacoco-canary.yml/badge.svg"></a>
<a href="LICENSE"><img alt="License: MIT" src="https://img.shields.io/badge/License-MIT-yellow.svg"></a>
<img alt="Java" src="https://img.shields.io/badge/Java-8%2B-orange">
<img alt="JaCoCo" src="https://img.shields.io/badge/JaCoCo-0.8.11%E2%80%930.8.13-brightgreen">
Expand Down Expand Up @@ -256,9 +256,9 @@ First get the jar — from [Releases](../../releases/latest), or build it:

```bash
# Download a specific version (find the version on the Releases page)
wget https://github.com/baekchangjoon/parallel-per-test-coverage/releases/download/v1.4.1/pjacoco-agent-1.4.1.jar
wget https://github.com/beltian/parallel-per-test-coverage/releases/download/v1.4.1/pjacoco-agent-1.4.1.jar
# Or grab the latest release with the gh CLI
gh release download --repo baekchangjoon/parallel-per-test-coverage --pattern 'pjacoco-agent-*.jar'
gh release download --repo beltian/parallel-per-test-coverage --pattern 'pjacoco-agent-*.jar'
# Or build it (JDK 17+ to run Gradle; the artifact targets Java 8)
JAVA_HOME=<jdk17+> ./gradlew :agent:shadowJar # → agent/build/libs/pjacoco-agent.jar
```
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
> 🇰🇷 **한국어** (현재 문서) · [English](README.en.md)

<p align="center">
<a href="https://github.com/baekchangjoon/parallel-per-test-coverage/actions/workflows/ci.yml"><img alt="CI" src="https://github.com/baekchangjoon/parallel-per-test-coverage/actions/workflows/ci.yml/badge.svg"></a>
<a href="https://github.com/baekchangjoon/parallel-per-test-coverage/actions/workflows/jacoco-canary.yml"><img alt="JaCoCo version canary" src="https://github.com/baekchangjoon/parallel-per-test-coverage/actions/workflows/jacoco-canary.yml/badge.svg"></a>
<a href="https://github.com/beltian/parallel-per-test-coverage/actions/workflows/ci.yml"><img alt="CI" src="https://github.com/beltian/parallel-per-test-coverage/actions/workflows/ci.yml/badge.svg"></a>
<a href="https://github.com/beltian/parallel-per-test-coverage/actions/workflows/jacoco-canary.yml"><img alt="JaCoCo version canary" src="https://github.com/beltian/parallel-per-test-coverage/actions/workflows/jacoco-canary.yml/badge.svg"></a>
<a href="LICENSE"><img alt="License: MIT" src="https://img.shields.io/badge/License-MIT-yellow.svg"></a>
<img alt="Java" src="https://img.shields.io/badge/Java-8%2B-orange">
<img alt="JaCoCo" src="https://img.shields.io/badge/JaCoCo-0.8.11%E2%80%930.8.13-brightgreen">
Expand Down Expand Up @@ -322,9 +322,9 @@ java -cp <pjacoco-agent.jar> io.pjacoco.agent.output.TraceMergeMain \

```bash
# 특정 버전 받기 (버전은 Releases 페이지에서 확인)
wget https://github.com/baekchangjoon/parallel-per-test-coverage/releases/download/v1.4.1/pjacoco-agent-1.4.1.jar
wget https://github.com/beltian/parallel-per-test-coverage/releases/download/v1.4.1/pjacoco-agent-1.4.1.jar
# 또는 gh CLI로 최신 릴리스에서 받기
gh release download --repo baekchangjoon/parallel-per-test-coverage --pattern 'pjacoco-agent-*.jar'
gh release download --repo beltian/parallel-per-test-coverage --pattern 'pjacoco-agent-*.jar'
# 또는 직접 빌드 (JDK 17+ 필요; 산출물은 Java 8 호환)
JAVA_HOME=<jdk17+> ./gradlew :agent:shadowJar # → agent/build/libs/pjacoco-agent.jar
```
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ allprojects {
// modules via publishToMavenLocal until then (README "빠른 시작").
pluginManager.withPlugin("maven-publish") {
apply(plugin = "signing")
val repoUrl = "https://github.com/baekchangjoon/parallel-per-test-coverage"
val repoUrl = "https://github.com/beltian/parallel-per-test-coverage"
extensions.configure<PublishingExtension> {
publications.withType<MavenPublication>().configureEach {
pom {
Expand All @@ -48,7 +48,7 @@ allprojects {
}
developers {
developer {
id.set("baekchangjoon")
id.set("beltian")
name.set("Changjoon Baek")
}
}
Expand Down
4 changes: 2 additions & 2 deletions gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ dependencies {
}

gradlePlugin {
website.set("https://github.com/baekchangjoon/parallel-per-test-coverage")
vcsUrl.set("https://github.com/baekchangjoon/parallel-per-test-coverage.git")
website.set("https://github.com/beltian/parallel-per-test-coverage")
vcsUrl.set("https://github.com/beltian/parallel-per-test-coverage.git")
plugins {
create("pjacoco") {
id = "io.pjacoco.gradle"
Expand Down
2 changes: 1 addition & 1 deletion testkit-core/src/main/java/io/pjacoco/testkit/Pjacoco.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/**
* Framework-neutral entry point for routing per-test coverage to the
* <a href="https://github.com/baekchangjoon/parallel-per-test-coverage">parallel-per-test-coverage</a>
* <a href="https://github.com/beltian/parallel-per-test-coverage">parallel-per-test-coverage</a>
* agent attached to the server under test. Zero third-party dependencies; Java 8 compatible.
*
* <p><strong>Opt-in:</strong> point it at the agent's control endpoint with the system property
Expand Down
Loading