Skip to content

Commit 8197d76

Browse files
committed
* Move GitHub repository to https://github.com/java-testkit/assertlog
1 parent 7f3c751 commit 8197d76

7 files changed

Lines changed: 66 additions & 14 deletions

File tree

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: gradle
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
open-pull-requests-limit: 10
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: daily
12+
open-pull-requests-limit: 10

.github/release-drafter.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name-template: 'v$NEXT_PATCH_VERSION'
2+
tag-template: 'v$NEXT_PATCH_VERSION'
3+
template: |
4+
## Changes
5+
$CHANGES
6+
7+
categories:
8+
- title: '🚀 Features'
9+
labels:
10+
- 'feature'
11+
- 'refactoring'
12+
- title: '🐛 Bug Fixes'
13+
label: 'bug'
14+
- title: 📦 Dependency updates
15+
label: 'dependencies'
16+
- title: 📖 Documentation
17+
label: 'documentation'

.github/workflows/test.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
8+
jobs:
9+
run-tests:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v7
14+
- name: Set up JDK
15+
uses: actions/setup-java@v5
16+
with:
17+
distribution: 'temurin'
18+
cache: 'gradle'
19+
java-version: '17'
20+
- name: Run tests in Gradle
21+
run: ./gradlew clean test --info --rerun-tasks
22+
- uses: actions/upload-artifact@v7
23+
if: failure()
24+
with:
25+
name: test-report
26+
path: build/reports/

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Codeborne
3+
Copyright (c) 2019-2026 Andrei Solntsev & Codeborne
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
# assertlog
22
Unit-tests for your logging
33

4-
https://github.com/codeborne/assertlog
5-
6-
[![Build Status](https://travis-ci.org/codeborne/assertlog.svg?branch=master)](https://travis-ci.org/codeborne/assertlog)
7-
[![Maven Central](https://img.shields.io/maven-central/v/com.codeborne/assertlog.svg)](https://search.maven.org/artifact/com.codeborne/assertlog)
8-
[![MIT License](http://img.shields.io/badge/license-MIT-green.svg)](https://github.com/codeborne/assertlog/blob/master/LICENSE)
4+
[![Maven Central](https://img.shields.io/maven-central/v/com.codeborne/assertlog.svg)](https://central.sonatype.com/search?q=assertlog&namespace=com.codeborne)
5+
[![MIT License](http://img.shields.io/badge/license-MIT-green.svg)](https://github.com/selenide/selenide/blob/main/LICENSE)
96
![Free](https://img.shields.io/badge/free-open--source-green.svg)
7+
![Build Status](https://github.com/java-testkit/assertlog/actions/workflows/test.yml/badge.svg)
8+
109

1110
## What is AssertLog?
1211

build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ subprojects {
33
apply plugin: 'maven'
44

55
group 'com.codeborne.assertlog'
6-
version '0.1'
6+
version '0.2-SNAPSHOT'
77

88
sourceCompatibility = 1.8
99
targetCompatibility = 1.8
@@ -13,9 +13,7 @@ subprojects {
1313
compileJava.options.debugOptions.debugLevel = "source,lines,vars"
1414

1515
repositories {
16-
jcenter()
1716
mavenCentral()
18-
mavenLocal()
1917
}
2018

2119
tasks.withType(Test).all { testTask ->

gradle/deploy.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ subprojects {
77
"Automatic-Module-Name": project.group + '.' + project.name,
88
"Implementation-Title": project.group + '.' + project.name,
99
"Implementation-Version": archiveVersion,
10-
"Implementation-Vendor": "Codeborne")
10+
"Implementation-Vendor": "Andrei Solntsev & Codeborne")
1111
}
1212
}
1313

@@ -54,12 +54,12 @@ subprojects {
5454
name archivesBaseName
5555
packaging 'jar'
5656
description 'AssertLog: Unit-tests for your logging'
57-
url 'https://github.com/codeborne/assertlog'
57+
url 'https://github.com/java-testkit/assertlog'
5858

5959
scm {
60-
url 'scm:git@github.com:codeborne/assertlog.git'
61-
connection 'scm:git@github.com:codeborne/assertlog.git'
62-
developerConnection 'scm:git@github.com:codeborne/assertlog.git'
60+
url 'scm:git@github.com:java-testkit/assertlog.git'
61+
connection 'scm:git@github.com:java-testkit/assertlog.git'
62+
developerConnection 'scm:git@github.com:java-testkit/assertlog.git'
6363
}
6464

6565
licenses {

0 commit comments

Comments
 (0)