Skip to content

Commit

Permalink
Merge pull request #21 from pith/remove-specs
Browse files Browse the repository at this point in the history
Remove assertJ, some unused specifications
  • Loading branch information
pith committed Apr 23, 2015
2 parents 35274f7 + acf11ae commit 5c094fe
Show file tree
Hide file tree
Showing 31 changed files with 26 additions and 808 deletions.
2 changes: 1 addition & 1 deletion audit-logback/src/it/resources/logback-test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<appender-ref ref="AUDIT_APPENDER" />
</logger>

<root level="info">
<root level="WARN">
<appender-ref ref="STDOUT" />
</root>
</configuration>
2 changes: 1 addition & 1 deletion audit/src/it/resources/logback-test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<appender-ref ref="AUDIT_APPENDER" />
</logger>

<root level="info">
<root level="WARN">
<appender-ref ref="STDOUT" />
</root>
</configuration>
2 changes: 1 addition & 1 deletion audit/src/test/resources/logback-test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<root level="info">
<root level="WARN">
<appender-ref ref="STDOUT" />
</root>
</configuration>
2 changes: 1 addition & 1 deletion core/src/it/resources/logback-test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<logger name="org.reflections" level="OFF"/>
<logger name="io.nuun" level="WARN"/>

<root level="INFO">
<root level="WARN">
<appender-ref ref="STDOUT" />
</root>
</configuration>

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import org.seedstack.business.api.domain.DomainObject;
import org.seedstack.business.api.domain.Factory;
import org.seedstack.business.api.domain.Repository;
import org.seedstack.business.api.domain.meta.specifications.DomainSpecifications;
import org.seedstack.business.api.specifications.DomainSpecifications;
import org.seedstack.business.api.interfaces.assembler.Assembler;
import org.seedstack.business.api.interfaces.assembler.DtoOf;
import org.seedstack.business.core.domain.FactoryInternal;
Expand All @@ -47,8 +47,8 @@
import java.lang.reflect.Type;
import java.util.*;

import static org.seedstack.business.api.domain.meta.specifications.BaseClassSpecifications.classIsAbstract;
import static org.seedstack.business.api.domain.meta.specifications.BaseClassSpecifications.classIsInterface;
import static org.seedstack.business.api.specifications.BaseClassSpecifications.classIsAbstract;
import static org.seedstack.business.api.specifications.BaseClassSpecifications.classIsInterface;

/**
* This plugin is a multi round plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import io.nuun.kernel.api.plugin.request.ClasspathScanRequest;
import io.nuun.kernel.core.AbstractPlugin;
import org.kametic.specifications.Specification;
import org.seedstack.business.api.domain.meta.specifications.DomainSpecifications;
import org.seedstack.business.api.specifications.DomainSpecifications;
import org.seedstack.seed.core.internal.application.ApplicationPlugin;

import java.util.ArrayList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import org.junit.Before;
import org.junit.Test;
import org.mockito.Mockito;
import org.seedstack.business.api.domain.meta.specifications.DomainSpecifications;
import org.seedstack.business.api.specifications.DomainSpecifications;
import org.seedstack.business.fixtures.domain.discount.Discount;

import static org.mockito.Mockito.mock;
Expand Down
2 changes: 1 addition & 1 deletion core/src/test/resources/logback-test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<root level="INFO">
<root level="WARN">
<appender-ref ref="STDOUT" />
</root>
</configuration>
2 changes: 1 addition & 1 deletion jpa/src/it/resources/logback-test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<root level="info">
<root level="WARN">
<appender-ref ref="STDOUT" />
</root>
</configuration>

This file was deleted.

Loading

0 comments on commit 5c094fe

Please sign in to comment.