Skip to content

Commit

Permalink
Manual renaming to works.bosk
Browse files Browse the repository at this point in the history
  • Loading branch information
prdoyle committed Jun 29, 2024
1 parent a3dba3e commit d9be3ba
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
![Release status](https://github.com/venasolutions/bosk/actions/workflows/release.yml/badge.svg)
[![Maven Central](https://img.shields.io/maven-central/v/io.vena/bosk-core)](https://mvnrepository.com/artifact/io.vena/bosk-core)
![Release status](https://github.com/boskworks/bosk/actions/workflows/release.yml/badge.svg)
[![Maven Central](https://img.shields.io/maven-central/v/works.bosk/bosk-core)](https://mvnrepository.com/artifact/works.bosk/bosk-core)

# Bosk

Expand Down
6 changes: 3 additions & 3 deletions bosk-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ dependencies {
pitest {
junit5PluginVersion = '0.15'
jvmArgs = ['-ea'] // Our unit tests check for assert statements
targetClasses = ['io.vena.bosk.ReferenceBuilder*'] //by default "${project.group}.*"
targetTests = ['io.vena.bosk.BuildReferences*Test']
//targetTests = ['io.vena.bosk.OldBoskTest', 'io.vena.bosk.BoskTest', 'io.vena.bosk.BoskConstructorTest', 'io.vena.bosk.HooksTest', 'io.vena.bosk.ReferenceTest']
targetClasses = ['works.bosk.ReferenceBuilder*'] //by default "${project.group}.*"
targetTests = ['works.bosk.BuildReferences*Test']
//targetTests = ['works.bosk.OldBoskTest', 'works.bosk.BoskTest', 'works.bosk.BoskConstructorTest', 'works.bosk.HooksTest', 'works.bosk.ReferenceTest']
threads = 4
outputFormats = ['XML', 'HTML']
timestampedReports = false
Expand Down
2 changes: 1 addition & 1 deletion bosk-core/src/main/java/works/bosk/ReferenceUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ public static Method getterMethod(Class<?> objectClass, String fieldName) throws
// If the program is compiled without parameter info, we'll see the generated name "arg0".
// In that case, try to give a helpful error message.
if (methodName.equals("arg0")) {
throw new InvalidTypeException(objectClass.getSimpleName() + " was compiled without parameter info; see https://github.com/venasolutions/bosk#build-settings");
throw new InvalidTypeException(objectClass.getSimpleName() + " was compiled without parameter info; see https://github.com/boskworks/bosk#build-settings");
} else {
throw new InvalidTypeException("No method \"" + methodName + "()\" in type " + objectClass.getSimpleName());
}
Expand Down
4 changes: 2 additions & 2 deletions bosk-mongo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ pitest {
pitestVersion = '1.15.0'
junit5PluginVersion = '1.2.0'
jvmArgs = ['-ea'] // Our unit tests check for assert statements
targetClasses = ['io.vena.bosk.drivers.mongo.BsonSurgeon']
targetTests = ['io.vena.bosk.drivers.mongo.BsonSurgeonTest']
targetClasses = ['works.bosk.drivers.mongo.BsonSurgeon']
targetTests = ['works.bosk.drivers.mongo.BsonSurgeonTest']
threads = 4
outputFormats = ['XML', 'HTML']
timestampedReports = false
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ spotless {
}

allprojects {
group = 'io.vena'
group = 'works.bosk'
// version should be set as a property with -Pversion
}
2 changes: 1 addition & 1 deletion example-hello/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'io.spring.dependency-management' version '1.1.3'
}

group = 'io.vena'
group = 'works.bosk'
version = '0.0.1-SNAPSHOT'

java {
Expand Down
2 changes: 1 addition & 1 deletion lib-testing/src/main/resources/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<logger name="mongo.drivers.works.bosk.UninitializedCollectionException" level="ERROR"/>

<!-- How to add more tracing during unit tests
<logger name="io.vena.bosk.drivers.mongo" level="DEBUG"/>
<logger name="works.bosk.drivers.mongo" level="DEBUG"/>
<logger name="drivers.works.bosk.DriverConformanceTest" level="DEBUG"/>
<logger name="mongo.drivers.works.bosk.PandoFormatDriver" level="TRACE"/>
<logger name="mongo.drivers.works.bosk.MainDriver" level="TRACE"/>
Expand Down

0 comments on commit d9be3ba

Please sign in to comment.