Lightstreamer java se client mavenHow do I tell Maven to use the latest version of a dependency?Differences between dependencyManagement and dependencies in MavenForce maven updateHow to add local jar files to a Maven project?What exactly is a Maven Snapshot and why do we need it?IntelliJ inspection gives “Cannot resolve symbol” but still compiles codeHow to solve “Plugin execution not covered by lifecycle configuration” for Spring Data Maven BuildsMaven Install on Mac OS XDealing with “Xerces hell” in Java/Maven?Android maven missing artifact errors

What is the name of this plot that has rows with two connected dots?

Which polygons can be turned inside out by a smooth deformation?

What will be the immediate action by the pilot and ATC if any plane blocks the runway while landing?

Is the internet in Madagascar faster than in UK?

Is it true that different variants of the same model aircraft don't require pilot retraining?

Why does this London Underground poster from 1924 have a Star of David atop a Christmas tree?

Why can't you say don't instead of won't?

Number of Fingers for a Math Oriented Race

Was the six engine Boeing-747 ever thought about?

What does GDPR mean to myself regarding my own data?

Can I get a PhD for developing educational software?

Is it unusual for a math department not to have a mail/web server?

Can an object tethered to a spaceship be pulled out of event horizon?

Why does glibc's strlen need to be so complicated to run quickly?

Why is there not a willingness from the world to step in between Pakistan and India?

In Endgame, wouldn't Stark have remembered Hulk busting out of the stairwell?

Does the Tribal card type have inherent mechanical implications?

How could a self contained organic body propel itself in space

Get contents before a colon

Output only some part of a log line using grep

Printing a list as "a, b, c." using Python

Employing a contractor proving difficult

How to deal with anxiety caused by dangerous riding conditions stemming from poor lane design and inconsiderate fellow road users?

Count the number of triangles



Lightstreamer java se client maven


How do I tell Maven to use the latest version of a dependency?Differences between dependencyManagement and dependencies in MavenForce maven updateHow to add local jar files to a Maven project?What exactly is a Maven Snapshot and why do we need it?IntelliJ inspection gives “Cannot resolve symbol” but still compiles codeHow to solve “Plugin execution not covered by lifecycle configuration” for Spring Data Maven BuildsMaven Install on Mac OS XDealing with “Xerces hell” in Java/Maven?Android maven missing artifact errors






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I'm trying to use the java client sdk of lightstreamer and I feel like I have an extremely basic question.



When adding the dependencies to my pom.xml like this:



<repositories>
<repository>
<id>lightstreamer</id>
<url>https://www.lightstreamer.com/repo/maven/</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>com.lightstreamer</groupId>
<artifactId>ls-javase-client</artifactId>
<version>4.3.0</version>
</dependency>
</dependencies>


I then only get the following packages in the com.lightstreamer:ls-javase-client:4.3.0



io.netty:netty-codec-http:4.1.31.Final
io.netty:netty-handler:4.1.31.Final
io.netty:netty-handler-proxy:4.1.31.Final
com.cedarsoftware:json-io:4.10.0
com.google.code.findbugs:jsr305:3.0.2


I don't have any of the classes described here:
https://lightstreamer.com/api/ls-javase-client/4.3.0/



Perhaps it has been a long day.










share|improve this question
































    1















    I'm trying to use the java client sdk of lightstreamer and I feel like I have an extremely basic question.



    When adding the dependencies to my pom.xml like this:



    <repositories>
    <repository>
    <id>lightstreamer</id>
    <url>https://www.lightstreamer.com/repo/maven/</url>
    </repository>
    </repositories>

    <dependencies>
    <dependency>
    <groupId>com.lightstreamer</groupId>
    <artifactId>ls-javase-client</artifactId>
    <version>4.3.0</version>
    </dependency>
    </dependencies>


    I then only get the following packages in the com.lightstreamer:ls-javase-client:4.3.0



    io.netty:netty-codec-http:4.1.31.Final
    io.netty:netty-handler:4.1.31.Final
    io.netty:netty-handler-proxy:4.1.31.Final
    com.cedarsoftware:json-io:4.10.0
    com.google.code.findbugs:jsr305:3.0.2


    I don't have any of the classes described here:
    https://lightstreamer.com/api/ls-javase-client/4.3.0/



    Perhaps it has been a long day.










    share|improve this question




























      1












      1








      1








      I'm trying to use the java client sdk of lightstreamer and I feel like I have an extremely basic question.



      When adding the dependencies to my pom.xml like this:



      <repositories>
      <repository>
      <id>lightstreamer</id>
      <url>https://www.lightstreamer.com/repo/maven/</url>
      </repository>
      </repositories>

      <dependencies>
      <dependency>
      <groupId>com.lightstreamer</groupId>
      <artifactId>ls-javase-client</artifactId>
      <version>4.3.0</version>
      </dependency>
      </dependencies>


      I then only get the following packages in the com.lightstreamer:ls-javase-client:4.3.0



      io.netty:netty-codec-http:4.1.31.Final
      io.netty:netty-handler:4.1.31.Final
      io.netty:netty-handler-proxy:4.1.31.Final
      com.cedarsoftware:json-io:4.10.0
      com.google.code.findbugs:jsr305:3.0.2


      I don't have any of the classes described here:
      https://lightstreamer.com/api/ls-javase-client/4.3.0/



      Perhaps it has been a long day.










      share|improve this question
















      I'm trying to use the java client sdk of lightstreamer and I feel like I have an extremely basic question.



      When adding the dependencies to my pom.xml like this:



      <repositories>
      <repository>
      <id>lightstreamer</id>
      <url>https://www.lightstreamer.com/repo/maven/</url>
      </repository>
      </repositories>

      <dependencies>
      <dependency>
      <groupId>com.lightstreamer</groupId>
      <artifactId>ls-javase-client</artifactId>
      <version>4.3.0</version>
      </dependency>
      </dependencies>


      I then only get the following packages in the com.lightstreamer:ls-javase-client:4.3.0



      io.netty:netty-codec-http:4.1.31.Final
      io.netty:netty-handler:4.1.31.Final
      io.netty:netty-handler-proxy:4.1.31.Final
      com.cedarsoftware:json-io:4.10.0
      com.google.code.findbugs:jsr305:3.0.2


      I don't have any of the classes described here:
      https://lightstreamer.com/api/ls-javase-client/4.3.0/



      Perhaps it has been a long day.







      maven lightstreamer






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 28 at 14:02







      Tiberiu

















      asked Mar 27 at 21:18









      TiberiuTiberiu

      3764 silver badges20 bronze badges




      3764 silver badges20 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          1















          The list of libraries you mentioned are the second level dependencies of the library itself, and should be listed in the file ls-javase-client-4.3.0.pom.



          But, the jar file named ls-javase-client-4.3.0.jar should contain the actual library. Maybe something went wrong with your dependency solver? Any warning or error in maven execution?
          In any case you could get the jar directly from here: https://www.lightstreamer.com/repo/maven/com/lightstreamer/ls-javase-client/4.3.0/ls-javase-client-4.3.0.jar






          share|improve this answer
























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55386605%2flightstreamer-java-se-client-maven%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1















            The list of libraries you mentioned are the second level dependencies of the library itself, and should be listed in the file ls-javase-client-4.3.0.pom.



            But, the jar file named ls-javase-client-4.3.0.jar should contain the actual library. Maybe something went wrong with your dependency solver? Any warning or error in maven execution?
            In any case you could get the jar directly from here: https://www.lightstreamer.com/repo/maven/com/lightstreamer/ls-javase-client/4.3.0/ls-javase-client-4.3.0.jar






            share|improve this answer





























              1















              The list of libraries you mentioned are the second level dependencies of the library itself, and should be listed in the file ls-javase-client-4.3.0.pom.



              But, the jar file named ls-javase-client-4.3.0.jar should contain the actual library. Maybe something went wrong with your dependency solver? Any warning or error in maven execution?
              In any case you could get the jar directly from here: https://www.lightstreamer.com/repo/maven/com/lightstreamer/ls-javase-client/4.3.0/ls-javase-client-4.3.0.jar






              share|improve this answer



























                1














                1










                1









                The list of libraries you mentioned are the second level dependencies of the library itself, and should be listed in the file ls-javase-client-4.3.0.pom.



                But, the jar file named ls-javase-client-4.3.0.jar should contain the actual library. Maybe something went wrong with your dependency solver? Any warning or error in maven execution?
                In any case you could get the jar directly from here: https://www.lightstreamer.com/repo/maven/com/lightstreamer/ls-javase-client/4.3.0/ls-javase-client-4.3.0.jar






                share|improve this answer













                The list of libraries you mentioned are the second level dependencies of the library itself, and should be listed in the file ls-javase-client-4.3.0.pom.



                But, the jar file named ls-javase-client-4.3.0.jar should contain the actual library. Maybe something went wrong with your dependency solver? Any warning or error in maven execution?
                In any case you could get the jar directly from here: https://www.lightstreamer.com/repo/maven/com/lightstreamer/ls-javase-client/4.3.0/ls-javase-client-4.3.0.jar







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 28 at 11:46









                Giuseppe CortiGiuseppe Corti

                664 bronze badges




                664 bronze badges





















                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55386605%2flightstreamer-java-se-client-maven%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

                    155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해