GH-1 - Consistent author names.
This commit is contained in:
@@ -18,7 +18,7 @@ package com.acme.myproject;
|
||||
import org.springframework.modulith.Modulith;
|
||||
|
||||
/**
|
||||
* @author Oliver Gierke
|
||||
* @author Oliver Drotbohm
|
||||
*/
|
||||
@Modulith
|
||||
public class Application {
|
||||
|
||||
@@ -17,7 +17,7 @@ package com.acme.myproject.complex.api;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Oliver Gierke
|
||||
* @author Oliver Drotbohm
|
||||
*/
|
||||
public class ComplexApiComponent {
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ package com.acme.myproject.complex.internal;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
/**
|
||||
* @author Oliver Gierke
|
||||
* @author Oliver Drotbohm
|
||||
*/
|
||||
@Component
|
||||
class ComplextInternalComponent {
|
||||
|
||||
@@ -17,7 +17,7 @@ package com.acme.myproject.complex.spi;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Oliver Gierke
|
||||
* @author Oliver Drotbohm
|
||||
*/
|
||||
public class ComplexSpiComponent {
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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 {
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ package com.acme.myproject.invalid2;
|
||||
import com.acme.myproject.moduleA.ServiceComponentA;
|
||||
|
||||
/**
|
||||
* @author Oliver Gierke
|
||||
* @author Oliver Drotbohm
|
||||
*/
|
||||
public class InvalidModuleDependency {
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -21,7 +21,7 @@ import org.springframework.stereotype.Component;
|
||||
import com.acme.myproject.moduleA.SomeEventA;
|
||||
|
||||
/**
|
||||
* @author Oliver Gierke
|
||||
* @author Oliver Drotbohm
|
||||
*/
|
||||
@Component
|
||||
class SomeEventListenerB {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -18,7 +18,7 @@ package com.acme.myproject.moduleB.internal;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
/**
|
||||
* @author Oliver Gierke
|
||||
* @author Oliver Drotbohm
|
||||
*/
|
||||
@Component
|
||||
class SupportingComponentB {
|
||||
|
||||
@@ -22,7 +22,7 @@ import org.springframework.stereotype.Component;
|
||||
import com.acme.myproject.moduleB.ServiceComponentB;
|
||||
|
||||
/**
|
||||
* @author Oliver Gierke
|
||||
* @author Oliver Drotbohm
|
||||
*/
|
||||
@Component
|
||||
@RequiredArgsConstructor
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -26,7 +26,7 @@ import org.springframework.modulith.test.ModuleTestExecution;
|
||||
import com.acme.myproject.NonVerifyingModuleTest;
|
||||
|
||||
/**
|
||||
* @author Oliver Gierke
|
||||
* @author Oliver Drotbohm
|
||||
*/
|
||||
@NonVerifyingModuleTest
|
||||
class ComplexTest {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@ import com.acme.myproject.moduleA.ServiceComponentA;
|
||||
import com.acme.myproject.moduleB.ServiceComponentB;
|
||||
|
||||
/**
|
||||
* @author Oliver Gierke
|
||||
* @author Oliver Drotbohm
|
||||
*/
|
||||
class ModuleCTest {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user