Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pouet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Colin DAMON
pouet
Commits
a62ecbad
"readme.md" did not exist on "3ad3e1883c73e3a2f541b2fd259b5b7182d89021"
Commit
a62ecbad
authored
4 years ago
by
Colin DAMON
Browse files
Options
Downloads
Patches
Plain Diff
Remove ArchUnit
parent
ee85864a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pom.xml
+0
-15
0 additions, 15 deletions
pom.xml
src/test/java/com/ippon/pouet/ArchTest.java
+0
-29
0 additions, 29 deletions
src/test/java/com/ippon/pouet/ArchTest.java
with
0 additions
and
44 deletions
pom.xml
+
0
−
15
View file @
a62ecbad
...
...
@@ -57,7 +57,6 @@
<h2.version>
1.4.200
</h2.version>
<validation-api.version>
2.0.1.Final
</validation-api.version>
<jaxb-runtime.version>
2.3.3
</jaxb-runtime.version>
<archunit-junit5.version>
0.14.1
</archunit-junit5.version>
<mapstruct.version>
1.3.1.Final
</mapstruct.version>
<!-- Plugin versions -->
<maven-clean-plugin.version>
3.1.0
</maven-clean-plugin.version>
...
...
@@ -248,20 +247,6 @@
<artifactId>
spring-security-test
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
com.tngtech.archunit
</groupId>
<artifactId>
archunit-junit5-api
</artifactId>
<version>
${archunit-junit5.version}
</version>
<scope>
test
</scope>
</dependency>
<!-- Adding the engine dependency to the surefire-plugin unfortunately does not work in the current version. -->
<!-- https://www.archunit.org/userguide/html/000_Index.html#_junit_5 -->
<dependency>
<groupId>
com.tngtech.archunit
</groupId>
<artifactId>
archunit-junit5-engine
</artifactId>
<version>
${archunit-junit5.version}
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.zalando
</groupId>
<artifactId>
problem-spring-web
</artifactId>
...
...
This diff is collapsed.
Click to expand it.
src/test/java/com/ippon/pouet/ArchTest.java
deleted
100644 → 0
+
0
−
29
View file @
ee85864a
package
com.ippon.pouet
;
import
com.tngtech.archunit.core.domain.JavaClasses
;
import
com.tngtech.archunit.core.importer.ClassFileImporter
;
import
com.tngtech.archunit.core.importer.ImportOption
;
import
org.junit.jupiter.api.Test
;
import
static
com
.
tngtech
.
archunit
.
lang
.
syntax
.
ArchRuleDefinition
.
noClasses
;
class
ArchTest
{
@Test
void
servicesAndRepositoriesShouldNotDependOnWebLayer
()
{
JavaClasses
importedClasses
=
new
ClassFileImporter
()
.
withImportOption
(
ImportOption
.
Predefined
.
DO_NOT_INCLUDE_TESTS
)
.
importPackages
(
"com.ippon.pouet"
);
noClasses
()
.
that
()
.
resideInAnyPackage
(
"com.ippon.pouet.service.."
)
.
or
()
.
resideInAnyPackage
(
"com.ippon.pouet.repository.."
)
.
should
().
dependOnClassesThat
()
.
resideInAnyPackage
(
"..com.ippon.pouet.web.."
)
.
because
(
"Services and repositories should not depend on web layer"
)
.
check
(
importedClasses
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment