GH-1 - Consistent author names.

This commit is contained in:
Oliver Drotbohm
2022-07-19 14:57:12 +02:00
parent da278f7774
commit 48ea08ae59
46 changed files with 49 additions and 49 deletions

View File

@@ -18,7 +18,7 @@ package com.acme.myproject;
import org.springframework.modulith.Modulith;
/**
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
@Modulith
public class Application {

View File

@@ -17,7 +17,7 @@ package com.acme.myproject.complex.api;
/**
*
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
public class ComplexApiComponent {

View File

@@ -18,7 +18,7 @@ package com.acme.myproject.complex.internal;
import org.springframework.stereotype.Component;
/**
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
@Component
class ComplextInternalComponent {

View File

@@ -17,7 +17,7 @@ package com.acme.myproject.complex.spi;
/**
*
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
public class ComplexSpiComponent {

View File

@@ -18,7 +18,7 @@ package com.acme.myproject.cycleA;
import com.acme.myproject.cycleB.CycleB;
/**
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
public class CycleA {
CycleB cycleB;

View File

@@ -18,7 +18,7 @@ package com.acme.myproject.cycleB;
import com.acme.myproject.cycleA.CycleA;
/**
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
public class CycleB {
CycleA cycleA;

View File

@@ -18,7 +18,7 @@ package com.acme.myproject.invalid;
import com.acme.myproject.moduleB.internal.InternalComponentB;
/**
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
public class InvalidComponent {

View File

@@ -18,7 +18,7 @@ package com.acme.myproject.invalid2;
import com.acme.myproject.moduleA.ServiceComponentA;
/**
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
public class InvalidModuleDependency {

View File

@@ -19,7 +19,7 @@ import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
@Configuration
public class SomeConfigurationA {

View File

@@ -23,7 +23,7 @@ import com.acme.myproject.moduleA.ServiceComponentA;
import com.acme.myproject.moduleB.internal.InternalComponentB;
/**
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
@Component
@RequiredArgsConstructor

View File

@@ -21,7 +21,7 @@ import org.springframework.stereotype.Component;
import com.acme.myproject.moduleA.SomeEventA;
/**
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
@Component
class SomeEventListenerB {

View File

@@ -18,7 +18,7 @@ package com.acme.myproject.moduleB.internal;
import org.springframework.stereotype.Component;
/**
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
@Component
public class InternalComponentB {

View File

@@ -18,7 +18,7 @@ package com.acme.myproject.moduleB.internal;
import org.springframework.stereotype.Component;
/**
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
@Component
class SupportingComponentB {

View File

@@ -22,7 +22,7 @@ import org.springframework.stereotype.Component;
import com.acme.myproject.moduleB.ServiceComponentB;
/**
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
@Component
@RequiredArgsConstructor

View File

@@ -30,7 +30,7 @@ import com.tngtech.archunit.core.domain.JavaClass;
/**
* Test cases to verify the validity of the overall modulith rules
*
* @author Oliver Gierke
* @author Oliver Drotbohm
* @author Peter Gafert
*/
class ModulithTest {

View File

@@ -25,7 +25,7 @@ import org.springframework.modulith.test.ModuleTest;
import org.springframework.modulith.test.ModuleTest.BootstrapMode;
/**
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)

View File

@@ -26,7 +26,7 @@ import org.springframework.modulith.test.ModuleTestExecution;
import com.acme.myproject.NonVerifyingModuleTest;
/**
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
@NonVerifyingModuleTest
class ComplexTest {

View File

@@ -32,7 +32,7 @@ import com.acme.myproject.moduleA.ServiceComponentA;
import com.acme.myproject.moduleB.internal.InternalComponentB;
/**
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
class ModuleBTest {

View File

@@ -29,7 +29,7 @@ import com.acme.myproject.moduleA.ServiceComponentA;
import com.acme.myproject.moduleB.ServiceComponentB;
/**
* @author Oliver Gierke
* @author Oliver Drotbohm
*/
class ModuleCTest {