bertrandmartel / speed-test-lib

:cloud: JSpeedTest : speed test client library for Java/Android
MIT License
381 stars 119 forks source link

Eclipse doest not found the classes #24

Closed ThallyssonKlein closed 7 years ago

ThallyssonKlein commented 7 years ago

Hi there. I found today this library and I decided to test it, It's already implemented the library in my project with Maven, but the Eclipse does not found the classes: captura de tela 15 Somebody know to tell me what's happening here?

bertrandmartel commented 7 years ago

You have to add the following to your pom.xml dependency attribute

<dependency>
  <groupId>fr.bmartel</groupId>
  <artifactId>jspeedtest</artifactId>
  <version>1.25</version>
</dependency>

An example of pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>fr.bmartel</groupId>
  <artifactId>test</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>test</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>fr.bmartel</groupId>
      <artifactId>jspeedtest</artifactId>
      <version>1.25</version>
    </dependency>
  </dependencies>
</project>

Then project / clean

If you still don't have the dependency after that : right-click on your project then Maven > Update Project

ThallyssonKlein commented 7 years ago

The Maven does not found the version 1.25. So I'm using the version 1.03 and don't there nothing wrong with my pom.xml:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.tkfentretenimento</groupId>
  <artifactId>Meus-Dados</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>Meus Dados</name>
  <description>An application to you manage all your data.</description>
  <dependencies>
    <dependency>
      <groupId>com.google.apis</groupId>
      <artifactId>google-api-services-drive</artifactId>
      <version>v3-rev55-1.22.0</version>
    </dependency>
    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>6.0.5</version>
    </dependency> 
    <dependency>
        <groupId>com.google.code.gson</groupId>
        <artifactId>gson</artifactId>
        <version>2.8.0</version>
    </dependency>
    <dependency>
        <groupId>org.jsoup</groupId>
        <artifactId>jsoup</artifactId>
        <version>1.8.3</version>
    </dependency>
    <dependency>
        <groupId>fr.bmartel</groupId>
        <artifactId>http-endec</artifactId>
        <version>1.03</version>
    </dependency>
  </dependencies>
</project>
bertrandmartel commented 7 years ago

Use :

<dependencies>
    <dependency>
        <groupId>com.google.apis</groupId>
        <artifactId>google-api-services-drive</artifactId>
        <version>v3-rev55-1.22.0</version>
    </dependency>
    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>6.0.5</version>
    </dependency>
    <dependency>
        <groupId>com.google.code.gson</groupId>
        <artifactId>gson</artifactId>
        <version>2.8.0</version>
    </dependency>
    <dependency>
        <groupId>org.jsoup</groupId>
        <artifactId>jsoup</artifactId>
        <version>1.8.3</version>
    </dependency>
    <dependency>
        <groupId>fr.bmartel</groupId>
        <artifactId>jspeedtest</artifactId>
        <version>1.25</version>
    </dependency>
</dependencies>
ThallyssonKlein commented 7 years ago

bertrandmartel commented 7 years ago

Sorry, yes there is also http-endec, here is a working config :

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.tkfentretenimento</groupId>
    <artifactId>Meus-Dados</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>Meus Dados</name>
    <description>An application to you manage all your data.</description>
    <dependencies>
        <dependency>
            <groupId>com.google.apis</groupId>
            <artifactId>google-api-services-drive</artifactId>
            <version>v3-rev55-1.22.0</version>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>6.0.5</version>
        </dependency>
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <version>2.8.0</version>
        </dependency>
        <dependency>
            <groupId>org.jsoup</groupId>
            <artifactId>jsoup</artifactId>
            <version>1.8.3</version>
        </dependency>
        <dependency>
            <groupId>fr.bmartel</groupId>
            <artifactId>jspeedtest</artifactId>
            <version>1.25</version>
        </dependency>
        <dependency>
            <groupId>fr.bmartel</groupId>
            <artifactId>http-endec</artifactId>
            <version>1.03</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>
</project>

Thank you for letting me know http-endec 1.04 wasn't sync with Maven Central so you can't see it right now. I've just synced it now so it will be available in less than 1 day in theory.

bertrandmartel commented 7 years ago

http-endec has been synced with Maven Central so you can use this config

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.tkfentretenimento</groupId>
    <artifactId>Meus-Dados</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>Meus Dados</name>
    <description>An application to you manage all your data.</description>
    <dependencies>
        <dependency>
            <groupId>com.google.apis</groupId>
            <artifactId>google-api-services-drive</artifactId>
            <version>v3-rev55-1.22.0</version>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>6.0.5</version>
        </dependency>
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <version>2.8.0</version>
        </dependency>
        <dependency>
            <groupId>org.jsoup</groupId>
            <artifactId>jsoup</artifactId>
            <version>1.8.3</version>
        </dependency>
        <dependency>
            <groupId>fr.bmartel</groupId>
            <artifactId>jspeedtest</artifactId>
            <version>1.25</version>
        </dependency>
    </dependencies>
</project>

Thanks again

ThallyssonKlein commented 7 years ago

captura de tela 17

bertrandmartel commented 7 years ago

Adding http-endec depdency solves the problem ?

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.tkfentretenimento</groupId>
    <artifactId>Meus-Dados</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>Meus Dados</name>
    <description>An application to you manage all your data.</description>
    <dependencies>
        <dependency>
            <groupId>com.google.apis</groupId>
            <artifactId>google-api-services-drive</artifactId>
            <version>v3-rev55-1.22.0</version>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>6.0.5</version>
        </dependency>
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <version>2.8.0</version>
        </dependency>
        <dependency>
            <groupId>org.jsoup</groupId>
            <artifactId>jsoup</artifactId>
            <version>1.8.3</version>
        </dependency>
        <dependency>
            <groupId>fr.bmartel</groupId>
            <artifactId>jspeedtest</artifactId>
            <version>1.25</version>
        </dependency>
        <dependency>
            <groupId>fr.bmartel</groupId>
            <artifactId>http-endec</artifactId>
            <version>1.04</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>
</project>

There shouldn't be any problem with only jspeedtest dependency. Maybe clean your project, delete your ~/.m2 and a fresh mvn clean install

ThallyssonKlein commented 7 years ago

I execute the Maven clean and Mave install and the return was it:

[INFO] Scanning for projects...
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building Meus Dados 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ Meus-Dados ---
[WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] Copying 34 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ Meus-Dados ---
[INFO] Changes detected - recompiling the module!
[WARNING] File encoding has not been set, using platform encoding Cp1252, i.e. build is platform dependent!
[INFO] Compiling 29 source files to C:\Users\thall\workspace\Meus-Dados\target\classes
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR : 
[INFO] -------------------------------------------------------------
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
[INFO] 1 error
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 9.949 s
[INFO] Finished at: 2017-03-01T16:37:50-03:00
[INFO] Final Memory: 8M/80M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project Meus-Dados: Compilation failure
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
[ERROR] -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

And after clean my .m2 the problem continues.

bertrandmartel commented 7 years ago

Did you check this : http://stackoverflow.com/q/19655184/2614364

ThallyssonKlein commented 7 years ago

Should I have a problem here? image

ThallyssonKlein commented 7 years ago

The problema was resolved. I don't did nothing, but I'm tried import the SpeedTestSocket again and it worked, but the Eclipse continue to show the line underline red.