Das Problem besteht darin, dass in meinem Projekt mit mehreren Modulen nicht alle Module standardmäßig kompiliert werden.
Zuerst habe ich exec:java an den Verify-Lebenszyklus gebunden. Wenn ich also mvn clean install -Dexec.mainClass=com.ade.logic.ServerInitializer durchführe, werden nur die benötigten Module kompiliert.
Mein Projekt besteht aus drei Modulen (Service, Common und Client_App). Es kompiliert nur Service und Common, aber keine client_app.
Wie hier:
Code: Select all
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] chat_app [pom]
[INFO] common [jar]
[INFO] service [jar]
[INFO] clientapp [jar]
[INFO]
[INFO] --------------------------< com.ade:chat_app >--------------------------
[INFO] Building chat_app 1.0-SNAPSHOT [1/4]
[INFO] from pom.xml
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- clean:3.2.0:clean (default-clean) @ chat_app ---
[INFO]
[INFO] --- install:3.1.2:install (default-install) @ chat_app ---
[INFO] Installing /home/ade/proyectos/proyectos_trabajando/chat_app/pom.xml to /home/ade/.m2/repository/com/ade/chat_app/1.0-SNAPSHOT/chat_app-1.0-SNAPSHOT.pom
[INFO]
[INFO] ---------------------------< com.ade:common >---------------------------
[INFO] Building common 1.0-SNAPSHOT [2/4]
[INFO] from common/pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- clean:3.2.0:clean (default-clean) @ common ---
[INFO]
[INFO] --- resources:3.3.1:resources (default-resources) @ common ---
[INFO] skip non existing resourceDirectory /home/ade/proyectos/proyectos_trabajando/chat_app/common/src/main/resources
[INFO]
[INFO] --- compiler:3.13.0:compile (default-compile) @ common ---
[INFO] Recompiling the module because of changed source code.
[INFO] Compiling 3 source files with javac [debug release 23] to target/classes
[INFO]
[INFO] --- resources:3.3.1:testResources (default-testResources) @ common ---
[INFO] skip non existing resourceDirectory /home/ade/proyectos/proyectos_trabajando/chat_app/common/src/test/resources
[INFO]
[INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ common ---
[INFO] Recompiling the module because of changed dependency.
[INFO] Compiling 1 source file with javac [debug release 23] to target/test-classes
[INFO]
[INFO] --- surefire:3.2.5:test (default-test) @ common ---
[INFO] Using auto detected provider org.apache.maven.surefire.junit.JUnit3Provider
[INFO]
[INFO] -------------------------------------------------------
[INFO] T E S T S
[INFO] -------------------------------------------------------
[INFO] Running com.ade.AppTest
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.125 s -- in com.ade.AppTest
[INFO]
[INFO] Results:
[INFO]
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO]
[INFO] --- jar:3.4.1:jar (default-jar) @ common ---
[INFO] Building jar: /home/ade/proyectos/proyectos_trabajando/chat_app/common/target/common-1.0-SNAPSHOT.jar
[INFO]
[INFO] --- install:3.1.2:install (default-install) @ common ---
[INFO] Installing /home/ade/proyectos/proyectos_trabajando/chat_app/common/pom.xml to /home/ade/.m2/repository/com/ade/common/1.0-SNAPSHOT/common-1.0-SNAPSHOT.pom
[INFO] Installing /home/ade/proyectos/proyectos_trabajando/chat_app/common/target/common-1.0-SNAPSHOT.jar to /home/ade/.m2/repository/com/ade/common/1.0-SNAPSHOT/common-1.0-SNAPSHOT.jar
[INFO]
[INFO] --------------------------< com.ade:service >---------------------------
[INFO] Building service 1.0-SNAPSHOT [3/4]
[INFO] from service/pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- clean:3.2.0:clean (default-clean) @ service ---
[INFO]
[INFO] --- resources:3.3.1:resources (default-resources) @ service ---
[INFO] skip non existing resourceDirectory /home/ade/proyectos/proyectos_trabajando/chat_app/service/src/main/resources
[INFO]
[INFO] --- compiler:3.13.0:compile (default-compile) @ service ---
[INFO] Recompiling the module because of changed dependency.
[INFO] Compiling 4 source files with javac [debug release 23] to target/classes
[INFO]
[INFO] --- resources:3.3.1:testResources (default-testResources) @ service ---
[INFO] skip non existing resourceDirectory /home/ade/proyectos/proyectos_trabajando/chat_app/service/src/test/resources
[INFO]
[INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ service ---
[INFO] Recompiling the module because of changed dependency.
[INFO] Compiling 1 source file with javac [debug release 23] to target/test-classes
[INFO]
[INFO] --- surefire:3.2.5:test (default-test) @ service ---
[INFO] Using auto detected provider org.apache.maven.surefire.junit.JUnit3Provider
[INFO]
[INFO] -------------------------------------------------------
[INFO] T E S T S
[INFO] -------------------------------------------------------
[INFO] Running com.ade.AppTest
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.148 s -- in com.ade.AppTest
[INFO]
[INFO] Results:
[INFO]
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO]
[INFO] --- jar:3.4.1:jar (default-jar) @ service ---
[INFO] Building jar: /home/ade/proyectos/proyectos_trabajando/chat_app/service/target/service-1.0-SNAPSHOT.jar
[INFO]
[INFO] --- exec:3.6.3:java (default) @ service ---
Ich denke, das liegt an der Bindung von exec-verify.
Eigentlich geht es gut, wenn ich die Bindung von exec-verify aufhebe (alles, was kompiliert wird).
Code: Select all
[INFO] Scanning for projects...
[WARNING]
[WARNING] Some problems were encountered while building the effective model for com.ade:service:jar:1.0-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.codehaus.mojo:exec-maven-plugin is missing. @ line 30, column 17
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING]
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] chat_app [pom]
[INFO] common [jar]
[INFO] service [jar]
[INFO] clientapp [jar]
[INFO]
[INFO] --------------------------< com.ade:chat_app >--------------------------
[INFO] Building chat_app 1.0-SNAPSHOT [1/4]
[INFO] from pom.xml
[INFO] --------------------------------[ pom ]---------------------------------
[INFO]
[INFO] --- clean:3.2.0:clean (default-clean) @ chat_app ---
[INFO]
[INFO] --- install:3.1.2:install (default-install) @ chat_app ---
[INFO] Installing /home/ade/proyectos/proyectos_trabajando/chat_app/pom.xml to /home/ade/.m2/repository/com/ade/chat_app/1.0-SNAPSHOT/chat_app-1.0-SNAPSHOT.pom
[INFO]
[INFO] ---------------------------< com.ade:common >---------------------------
[INFO] Building common 1.0-SNAPSHOT [2/4]
[INFO] from common/pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- clean:3.2.0:clean (default-clean) @ common ---
[INFO] Deleting /home/ade/proyectos/proyectos_trabajando/chat_app/common/target
[INFO]
[INFO] --- resources:3.3.1:resources (default-resources) @ common ---
[INFO] skip non existing resourceDirectory /home/ade/proyectos/proyectos_trabajando/chat_app/common/src/main/resources
[INFO]
[INFO] --- compiler:3.13.0:compile (default-compile) @ common ---
[INFO] Recompiling the module because of changed source code.
[INFO] Compiling 3 source files with javac [debug release 23] to target/classes
[INFO]
[INFO] --- resources:3.3.1:testResources (default-testResources) @ common ---
[INFO] skip non existing resourceDirectory /home/ade/proyectos/proyectos_trabajando/chat_app/common/src/test/resources
[INFO]
[INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ common ---
[INFO] Recompiling the module because of changed dependency.
[INFO] Compiling 1 source file with javac [debug release 23] to target/test-classes
[INFO]
[INFO] --- surefire:3.2.5:test (default-test) @ common ---
[INFO] Using auto detected provider org.apache.maven.surefire.junit.JUnit3Provider
[INFO]
[INFO] -------------------------------------------------------
[INFO] T E S T S
[INFO] -------------------------------------------------------
[INFO] Running com.ade.AppTest
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.090 s -- in com.ade.AppTest
[INFO]
[INFO] Results:
[INFO]
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO]
[INFO] --- jar:3.4.1:jar (default-jar) @ common ---
[INFO] Building jar: /home/ade/proyectos/proyectos_trabajando/chat_app/common/target/common-1.0-SNAPSHOT.jar
[INFO]
[INFO] --- install:3.1.2:install (default-install) @ common ---
[INFO] Installing /home/ade/proyectos/proyectos_trabajando/chat_app/common/pom.xml to /home/ade/.m2/repository/com/ade/common/1.0-SNAPSHOT/common-1.0-SNAPSHOT.pom
[INFO] Installing /home/ade/proyectos/proyectos_trabajando/chat_app/common/target/common-1.0-SNAPSHOT.jar to /home/ade/.m2/repository/com/ade/common/1.0-SNAPSHOT/common-1.0-SNAPSHOT.jar
[INFO]
[INFO] --------------------------< com.ade:service >---------------------------
[INFO] Building service 1.0-SNAPSHOT [3/4]
[INFO] from service/pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/exec-maven-plugin/maven-metadata.xml
Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/exec-maven-plugin/maven-metadata.xml (1.1 kB at 1.0 kB/s)
[INFO]
[INFO] --- clean:3.2.0:clean (default-clean) @ service ---
[INFO] Deleting /home/ade/proyectos/proyectos_trabajando/chat_app/service/target
[INFO]
[INFO] --- resources:3.3.1:resources (default-resources) @ service ---
[INFO] skip non existing resourceDirectory /home/ade/proyectos/proyectos_trabajando/chat_app/service/src/main/resources
[INFO]
[INFO] --- compiler:3.13.0:compile (default-compile) @ service ---
[INFO] Recompiling the module because of changed dependency.
[INFO] Compiling 4 source files with javac [debug release 23] to target/classes
[INFO]
[INFO] --- resources:3.3.1:testResources (default-testResources) @ service ---
[INFO] skip non existing resourceDirectory /home/ade/proyectos/proyectos_trabajando/chat_app/service/src/test/resources
[INFO]
[INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ service ---
[INFO] Recompiling the module because of changed dependency.
[INFO] Compiling 1 source file with javac [debug release 23] to target/test-classes
[INFO]
[INFO] --- surefire:3.2.5:test (default-test) @ service ---
[INFO] Using auto detected provider org.apache.maven.surefire.junit.JUnit3Provider
[INFO]
[INFO] -------------------------------------------------------
[INFO] T E S T S
[INFO] -------------------------------------------------------
[INFO] Running com.ade.AppTest
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.138 s -- in com.ade.AppTest
[INFO]
[INFO] Results:
[INFO]
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO]
[INFO] --- jar:3.4.1:jar (default-jar) @ service ---
[INFO] Building jar: /home/ade/proyectos/proyectos_trabajando/chat_app/service/target/service-1.0-SNAPSHOT.jar
[INFO]
[INFO] --- install:3.1.2:install (default-install) @ service ---
[INFO] Installing /home/ade/proyectos/proyectos_trabajando/chat_app/service/pom.xml to /home/ade/.m2/repository/com/ade/service/1.0-SNAPSHOT/service-1.0-SNAPSHOT.pom
[INFO] Installing /home/ade/proyectos/proyectos_trabajando/chat_app/service/target/service-1.0-SNAPSHOT.jar to /home/ade/.m2/repository/com/ade/service/1.0-SNAPSHOT/service-1.0-SNAPSHOT.jar
[INFO]
[INFO] -------------------------< com.ade:clientapp >--------------------------
[INFO] Building clientapp 1.0-SNAPSHOT [4/4]
[INFO] from clientapp/pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- clean:3.2.0:clean (default-clean) @ clientapp ---
[INFO]
[INFO] --- resources:3.3.1:resources (default-resources) @ clientapp ---
[INFO] skip non existing resourceDirectory /home/ade/proyectos/proyectos_trabajando/chat_app/clientapp/src/main/resources
[INFO]
[INFO] --- compiler:3.13.0:compile (default-compile) @ clientapp ---
[INFO] Recompiling the module because of changed dependency.
[INFO] Compiling 2 source files with javac [debug release 23] to target/classes
[INFO]
[INFO] --- resources:3.3.1:testResources (default-testResources) @ clientapp ---
[INFO] skip non existing resourceDirectory /home/ade/proyectos/proyectos_trabajando/chat_app/clientapp/src/test/resources
[INFO]
[INFO] --- compiler:3.13.0:testCompile (default-testCompile) @ clientapp ---
[INFO] Recompiling the module because of changed dependency.
[INFO] Compiling 1 source file with javac [debug release 23] to target/test-classes
[INFO]
[INFO] --- surefire:3.2.5:test (default-test) @ clientapp ---
[INFO] Using auto detected provider org.apache.maven.surefire.junit.JUnit3Provider
[INFO]
[INFO] -------------------------------------------------------
[INFO] T E S T S
[INFO] -------------------------------------------------------
[INFO] Running com.ade.AppTest
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.082 s -- in com.ade.AppTest
[INFO]
[INFO] Results:
[INFO]
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO]
[INFO] --- jar:3.4.1:jar (default-jar) @ clientapp ---
[INFO] Building jar: /home/ade/proyectos/proyectos_trabajando/chat_app/clientapp/target/clientapp-1.0-SNAPSHOT.jar
[INFO]
[INFO] --- install:3.1.2:install (default-install) @ clientapp ---
[INFO] Installing /home/ade/proyectos/proyectos_trabajando/chat_app/clientapp/pom.xml to /home/ade/.m2/repository/com/ade/clientapp/1.0-SNAPSHOT/clientapp-1.0-SNAPSHOT.pom
[INFO] Installing /home/ade/proyectos/proyectos_trabajando/chat_app/clientapp/target/clientapp-1.0-SNAPSHOT.jar to /home/ade/.m2/repository/com/ade/clientapp/1.0-SNAPSHOT/clientapp-1.0-SNAPSHOT.jar
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary for chat_app 1.0-SNAPSHOT:
[INFO]
[INFO] chat_app ........................................... SUCCESS [ 0.638 s]
[INFO] common ............................................. SUCCESS [ 4.573 s]
[INFO] service ............................................ SUCCESS [ 3.569 s]
[INFO] clientapp .......................................... SUCCESS [ 1.601 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 10.658 s
[INFO] Finished at: 2025-12-29T19:06:50-06:00
[INFO] ------------------------------------------------------------------------
Proyect pom vor ungebunden:
Code: Select all
4.0.0
com.ade
chat_app
pom
1.0-SNAPSHOT
chat_app
http://maven.apache.org
com.ade
common
1.0-SNAPSHOT
junit
junit
3.8.1
test
common
service
clientapp
23
UTF-8
org.codehaus.mojo
exec-maven-plugin
3.6.3
verify
java
Code: Select all
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4.0.0
com.ade
chat_app
1.0-SNAPSHOT
com.ade
service
1.0-SNAPSHOT
service
http://maven.apache.org
com.ade
common
junit
junit
org.codehaus.mojo
exec-maven-plugin
Code: Select all
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4.0.0
com.ade
chat_app
1.0-SNAPSHOT
com.ade
common
1.0-SNAPSHOT
common
http://maven.apache.org
junit
junit
3.8.1
test
Code: Select all
x m l n s : x s i = & q u o t ; h t t p : / / w w w . w 3 . o r g / 2 0 0 1 / X M L S c h e m a - i n s t a n c e & q u o t ; & g t ; < b r / > & l t ; m o d e l V e r s i o n & g t ; 4 . 0 . 0 & l t ; / m o d e l V e r s i o n & g t ; < b r / > & l t ; p a r e n t & g t ; < b r / > & l t ; g r o u p I d & g t ; c o m . a d e & l t ; / g r o u p I d & g t ; < b r / > & l t ; a r t i f a c t I d & g t ; c h a t _ a p p & l t ; / a r t i f a c t I d & g t ; < b r / > & l t ; v e r s i o n & g t ; 1 . 0 - S N A P S H O T & l t ; / v e r s i o n & g t ; < b r / > & l t ; / p a r e n t & g t ; < b r / > & l t ; g r o u p I d & g t ; c o m . a d e & l t ; / g r o u p I d & g t ; < b r / > & l t ; a r t i f a c t I d & g t ; c l i e n t a p p & l t ; / a r t i f a c t I d & g t ; < b r / > & l t ; v e r s i o n & g t ; 1 . 0 - S N A P S H O T & l t ; / v e r s i o n & g t ; < b r / > & l t ; n a m e & g t ; c l i e n t a p p & l t ; / n a m e & g t ; < b r / > & l t ; u r l & g t ; h t t p : / / m a v e n . a p a c h e . o r g & l t ; / u r l & g t ; < b r / > & l t ; d e p e n d e n c i e s & g t ; < b r / > & l t ; d e p e n d e n c y & g t ; < b r / > & l t ; g r o u p I d & g t ; c o m . a d e & l t ; / g r o u p I d & g t ; < b r / > & l t ; a r t i f a c t I d & g t ; c o m m o n & l t ; / a r t i f a c t I d & g t ; < b r / > & l t ; / d e p e n d e n c y & g t ; < b r / > < b r / > & l t ; d e p e n d e n c y & g t ; < b r / > & l t ; g r o u p I d & g t ; j u n i t & l t ; / g r o u p I d & g t ; < b r / > & l t ; a r t i f a c t I d & g t ; j u n i t & l t ; / a r t i f a c t I d & g t ; < b r / > & l t ; / d e p e n d e n c y & g t ; < b r / > & l t ; / d e p e n d e n c i e s & g t ; < b r / > & l t ; / p r o j e c t & g t ; < b r / > < / c o d e > < b r / > V e r z e i c h n i s s e ( a l l e a u s g e f ü l l t ) : < / p > < b r / > < c o d e > . < b r / > ├ ─ ─ c l i e n t a p p < b r / > │ ├ ─ ─ p o m . x m l < b r / > │ ├ ─ ─ s r c < b r / > │ │ ├ ─ ─ m a i n < b r / > │ │ │ └ ─ ─ j a v a < b r / > │ │ │ └ ─ ─ c o m < b r / > │ │ │ └ ─ ─ a d e < b r / > │ │ │ ├ ─ ─ g u i < b r / > │ │ │ │ └ ─ ─ M e n u . j a v a < b r / > │ │ │ └ ─ ─ l o g i c < b r / > │ │ │ └ ─ ─ D r i v e r S e r v e r . j a v a < b r / > │ │ └ ─ ─ t e s t < b r / > │ │ └ ─ ─ j a v a < b r / > │ │ └── com
│ │ └── ade
│ │ └── AppTest.java
│ └── target
│ ├── classes
│ │ └── com
│ │ └── ade
│ │ ├── gui
│ │ │ └── Menu.class
│ │ └── logic
│ │ └── DriverServer.class
│ ├── clientapp-1.0-SNAPSHOT.jar
│ ├── generated-sources
│ │ └── annotations
│ ├── generated-test-sources
│ │ └── test-annotations
│ ├── maven-archiver
│ │ └── pom.properties
│ ├── maven-status
│ │ └── maven-compiler-plugin
│ │ ├── compile
│ │ │ └── default-compile
│ │ │ ├── createdFiles.lst
│ │ │ └── inputFiles.lst
│ │ └── testCompile
│ │ └── default-testCompile
│ │ ├── createdFiles.lst
│ │ └── inputFiles.lst
│ ├── surefire-reports
│ │ ├── com.ade.AppTest.txt
│ │ └── TEST-com.ade.AppTest.xml
│ └── test-classes
│ └── com
│ └── ade
│ └── AppTest.class
├── common
│ ├── pom.xml
│ ├── src
│ │ ├── main
│ │ │ └── java
│ │ │ └── com
│ │ │ └── ade
│ │ │ └── utils
│ │ │ ├── Message.java
│ │ │ ├── Request.java
│ │ │ └── RequestType.java
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── ade
│ │ └── AppTest.java
│ └── target
│ ├── classes
│ │ └── com
│ │ └── ade
│ │ └── utils
│ │ ├── Message.class
│ │ ├── Request.class
│ │ └── RequestType.class
│ ├── common-1.0-SNAPSHOT.jar
│ ├── generated-sources
│ │ └── annotations
│ ├── generated-test-sources
│ │ └── test-annotations
│ ├── maven-archiver
│ │ └── pom.properties
│ ├── maven-status
│ │ └── maven-compiler-plugin
│ │ ├── compile
│ │ │ └── default-compile
│ │ │ ├── createdFiles.lst
│ │ │ └── inputFiles.lst
│ │ └── testCompile
│ │ └── default-testCompile
│ │ ├── createdFiles.lst
│ │ └── inputFiles.lst
│ ├── surefire-reports
│ │ ├── com.ade.AppTest.txt
│ │ └── TEST-com.ade.AppTest.xml
│ └── test-classes
│ └── com
│ └── ade
│ └── AppTest.class
├── pom.xml
└── service
├── pom.xml
├── src
│ ├── main
│ │ └── java
│ │ └── com
│ │ └── ade
│ │ └── logic
│ │ ├── RequestHandler.java
│ │ ├── RequestMessagePerformer.java
│ │ ├── ServerInitializer.java
│ │ └── Server.java
│ └── test
│ └── java
│ └── com
│ └── ade
│ └── AppTest.java
└── target
├── classes
│ └── com
│ └── ade
│ └── logic
│ ├── RequestHandler$1.class
│ ├── RequestHandler.class
│ ├── RequestMessagePerformer.class
│ ├── Server.class
│ └── ServerInitializer.class
├── generated-sources
│ └── annotations
├── generated-test-sources
│ └── test-annotations
├── maven-archiver
│ └── pom.properties
├── maven-status
│ └── maven-compiler-plugin
│ ├── compile
│ │ └── default-compile
│ │ ├── createdFiles.lst
│ │ └── inputFiles.lst
│ └── testCompile
│ └── default-testCompile
│ ├── createdFiles.lst
│ └── inputFiles.lst
├── service-1.0-SNAPSHOT.jar
├── surefire-reports
│ ├── com.ade.AppTest.txt
│ └── TEST-com.ade.AppTest.xml
└── test-classes
└── com
└── ade
└── AppTest.class
96 directories, 53 files
Mobile version