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;
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
add a comment |
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
add a comment |
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
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
maven lightstreamer
edited Mar 28 at 14:02
Tiberiu
asked Mar 27 at 21:18
TiberiuTiberiu
3764 silver badges20 bronze badges
3764 silver badges20 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
add a comment |
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
add a comment |
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
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
answered Mar 28 at 11:46
Giuseppe CortiGiuseppe Corti
664 bronze badges
664 bronze badges
add a comment |
add a comment |
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.
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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