Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8781637
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T20:21:23+00:00 2026-06-13T20:21:23+00:00

i am using maven,java,sts eclipse and selenium ide, svn and web driver in ubuntu.i

  • 0

i am using maven,java,sts eclipse and selenium ide, svn and web driver in ubuntu.i am new to these technologies. i need to know how to test my project(web site) via terminal using maven.
when i use this command mvn clean test . test and build will be succeed.. but test not run..
i use selenium ide to record it. and i covert that sample.java and save it in my project ..

sampath@sampathkumar-Breeze:~/svn/colorspace_swift/trunk/colorspace-swift$ mvn clean test
[INFO] Scanning for projects...
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building Colorspace Swift 1.0
[INFO] ------------------------------------------------------------------------
[WARNING] The artifact easymock:easymock:jar:2.0 has been relocated to org.easymock:easymock:jar:2.0
[WARNING] The artifact jdbc:jdbc-stdext:jar:2.0 has been relocated to javax.sql:jdbc-stdext:jar:2.0
[INFO] 
[INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ colorspace-swift ---
[INFO] Deleting /home/sampath/svn/colorspace_swift/trunk/colorspace-swift/target
[INFO] 
[INFO] --- maven-antrun-plugin:1.1:run (default) @ colorspace-swift ---
[INFO] Executing tasks
    [mxmlc] Loading configuration file /usr/local/flex_sdk_4.0/frameworks/flex-config.xml
    [mxmlc] /home/sampath/svn/colorspace_swift/trunk/colorspace-swift/src/main/webapp/flex/color_card/BreezeCC.swf is up-to-date and does not have to be rebuilt.
     [copy] Copying 29 files to /home/sampath/svn/colorspace_swift/trunk/colorspace-swift/target/classes/html_messages
     [copy] Copying 12 files to /home/sampath/svn/colorspace_swift/trunk/colorspace-swift/target/classes/help_files
[INFO] Executed tasks
[INFO] 
[INFO] --- maven-resources-plugin:2.3:resources (default-resources) @ colorspace-swift ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] Copying 116 resources
[INFO] 
[INFO] --- maven-resources-plugin:2.3:copy-resources (copy-prod-resources) @ colorspace-swift ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] Copying 32 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ colorspace-swift ---
[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent!
[INFO] Compiling 566 source files to /home/sampath/svn/colorspace_swift/trunk/colorspace-swift/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.3:testResources (default-testResources) @ colorspace-swift ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/sampath/svn/colorspace_swift/trunk/colorspace-swift/src/test/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ colorspace-swift ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:2.10:test (default-test) @ colorspace-swift ---
[INFO] No tests to run.
[INFO] Surefire report directory: /home/sampath/svn/colorspace_swift/trunk/colorspace-swift/target/surefire-reports

-------------------------------------------------------
 T E S T S
-------------------------------------------------------

Results :

Tests run: 0, Failures: 0, Errors: 0, Skipped: 0

[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 21.154s
[INFO] Finished at: Tue Nov 06 18:15:53 IST 2012
[INFO] Final Memory: 18M/165M
[INFO] ------------------------------------------------------------------------



no test run in project.. please help how to test in maven
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T20:21:25+00:00Added an answer on June 13, 2026 at 8:21 pm

    The following lines from your log file suggests that you don’t have your test sources in the right directory:

    [INFO] --- maven-compiler-plugin:2.3.2:testCompile (default-testCompile) @ colorspace-swift ---
    [INFO] No sources to compile
    [INFO] 
    

    Put all test sources in src/test/java. Then they will be built and maven-surefire-plugin will find them.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a large Java Web Application project using Maven and I need to
I am using Maven in my Java project and the IDE is Eclipse. I
Has anyone built Java web services using Maven-2. I've read about the jax-ws plugin,
If I'm using Maven to manage my Java EE web services projects, are there
i have a java web app with maven. i'm using jetty to run it
I am looking at using Maven projects in Eclipse 4.2 to allow non-Maven Java
I am new to using Maven. I have Java files that have dependencies. Like
I have a Maven Java EE project built using javaee5-maven-archetype and imported into Eclipse(Helios).
I'm using Maven 2 and Hibernate for a Java web app. I have a
I am programming in Java using Maven/Eclipse. I am able to run HtmlUnit fine

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.