Skip to content

Instantly share code, notes, and snippets.

@jottinger
Created August 13, 2019 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jottinger/850608bd9cf9e4b5cf9cd7dd7b6952b6 to your computer and use it in GitHub Desktop.
Save jottinger/850608bd9cf9e4b5cf9cd7dd7b6952b6 to your computer and use it in GitHub Desktop.
MavenKotlinTest run
bash-5.0$ git clone https://github.com/WWMB/MavenKotlinTest.git
Cloning into 'MavenKotlinTest'...
remote: Enumerating objects: 25, done.
remote: Counting objects: 100% (25/25), done.
remote: Compressing objects: 100% (15/15), done.
remote: Total 25 (delta 0), reused 25 (delta 0), pack-reused 0
Unpacking objects: 100% (25/25), done.
bash-5.0$ cd MavenKotlinTest/
bash-5.0$ mvn test
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building test-kotlin-project 1.0
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ test-kotlin ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/josephottinger/work/kotlin/MavenKotlinTest/src/main/resources
[INFO]
[INFO] --- kotlin-maven-plugin:1.3.21:compile (id.compile) @ test-kotlin ---
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:compile (java-compile) @ test-kotlin ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to /Users/josephottinger/work/kotlin/MavenKotlinTest/target/classes
[INFO]
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ test-kotlin ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /Users/josephottinger/work/kotlin/MavenKotlinTest/src/test/resources
[INFO]
[INFO] --- kotlin-maven-plugin:1.3.21:test-compile (id.test-compile) @ test-kotlin ---
[WARNING] No sources found skipping Kotlin compile
[INFO]
[INFO] --- maven-compiler-plugin:3.5.1:testCompile (java-test-compile) @ test-kotlin ---
[INFO] Changes detected - recompiling the module!
[INFO] Compiling 1 source file to /Users/josephottinger/work/kotlin/MavenKotlinTest/target/test-classes
[INFO]
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ test-kotlin ---
[INFO] Surefire report directory: /Users/josephottinger/work/kotlin/MavenKotlinTest/target/surefire-reports
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running com.project.AppTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.078 sec
Results :
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 6.658 s
[INFO] Finished at: 2019-08-13T15:49:17-04:00
[INFO] Final Memory: 30M/110M
[INFO] ------------------------------------------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment