Official javax maven repository











up vote
-2
down vote

favorite












I need javax.xml package. For this reason I go to mvnrepository.com and do search. As result I have big list of repositories . How to know which one is right?










share|improve this question






















  • what class do you need exactly from the package or what are you trying to implement ? javax.xml is a groupid and there may be n number of artifacts under the group id. so be more specific on what you need
    – Deepak Gunasekaran
    Nov 7 at 13:22












  • Those are not repositories in maven way, just a browsable list of artefacts.
    – user10527814
    Nov 7 at 13:26










  • I need javax.xml.xpath
    – vico
    Nov 7 at 13:26










  • That's not helpful...and it's a bit unfortunate that you "forgot" to mention what you really want, namely jaxrpc-api artifact, according to his previous question - I don't think that this in in Java SE. The package can be contained in multiple artifacts, more important are the classes. And in the end, it doesn't matter which repo you use as long as it works. you should do the comparison and decide on the repo
    – AKSW
    Nov 7 at 13:49















up vote
-2
down vote

favorite












I need javax.xml package. For this reason I go to mvnrepository.com and do search. As result I have big list of repositories . How to know which one is right?










share|improve this question






















  • what class do you need exactly from the package or what are you trying to implement ? javax.xml is a groupid and there may be n number of artifacts under the group id. so be more specific on what you need
    – Deepak Gunasekaran
    Nov 7 at 13:22












  • Those are not repositories in maven way, just a browsable list of artefacts.
    – user10527814
    Nov 7 at 13:26










  • I need javax.xml.xpath
    – vico
    Nov 7 at 13:26










  • That's not helpful...and it's a bit unfortunate that you "forgot" to mention what you really want, namely jaxrpc-api artifact, according to his previous question - I don't think that this in in Java SE. The package can be contained in multiple artifacts, more important are the classes. And in the end, it doesn't matter which repo you use as long as it works. you should do the comparison and decide on the repo
    – AKSW
    Nov 7 at 13:49













up vote
-2
down vote

favorite









up vote
-2
down vote

favorite











I need javax.xml package. For this reason I go to mvnrepository.com and do search. As result I have big list of repositories . How to know which one is right?










share|improve this question













I need javax.xml package. For this reason I go to mvnrepository.com and do search. As result I have big list of repositories . How to know which one is right?







java maven






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 7 at 13:21









vico

4,5072066133




4,5072066133












  • what class do you need exactly from the package or what are you trying to implement ? javax.xml is a groupid and there may be n number of artifacts under the group id. so be more specific on what you need
    – Deepak Gunasekaran
    Nov 7 at 13:22












  • Those are not repositories in maven way, just a browsable list of artefacts.
    – user10527814
    Nov 7 at 13:26










  • I need javax.xml.xpath
    – vico
    Nov 7 at 13:26










  • That's not helpful...and it's a bit unfortunate that you "forgot" to mention what you really want, namely jaxrpc-api artifact, according to his previous question - I don't think that this in in Java SE. The package can be contained in multiple artifacts, more important are the classes. And in the end, it doesn't matter which repo you use as long as it works. you should do the comparison and decide on the repo
    – AKSW
    Nov 7 at 13:49


















  • what class do you need exactly from the package or what are you trying to implement ? javax.xml is a groupid and there may be n number of artifacts under the group id. so be more specific on what you need
    – Deepak Gunasekaran
    Nov 7 at 13:22












  • Those are not repositories in maven way, just a browsable list of artefacts.
    – user10527814
    Nov 7 at 13:26










  • I need javax.xml.xpath
    – vico
    Nov 7 at 13:26










  • That's not helpful...and it's a bit unfortunate that you "forgot" to mention what you really want, namely jaxrpc-api artifact, according to his previous question - I don't think that this in in Java SE. The package can be contained in multiple artifacts, more important are the classes. And in the end, it doesn't matter which repo you use as long as it works. you should do the comparison and decide on the repo
    – AKSW
    Nov 7 at 13:49
















what class do you need exactly from the package or what are you trying to implement ? javax.xml is a groupid and there may be n number of artifacts under the group id. so be more specific on what you need
– Deepak Gunasekaran
Nov 7 at 13:22






what class do you need exactly from the package or what are you trying to implement ? javax.xml is a groupid and there may be n number of artifacts under the group id. so be more specific on what you need
– Deepak Gunasekaran
Nov 7 at 13:22














Those are not repositories in maven way, just a browsable list of artefacts.
– user10527814
Nov 7 at 13:26




Those are not repositories in maven way, just a browsable list of artefacts.
– user10527814
Nov 7 at 13:26












I need javax.xml.xpath
– vico
Nov 7 at 13:26




I need javax.xml.xpath
– vico
Nov 7 at 13:26












That's not helpful...and it's a bit unfortunate that you "forgot" to mention what you really want, namely jaxrpc-api artifact, according to his previous question - I don't think that this in in Java SE. The package can be contained in multiple artifacts, more important are the classes. And in the end, it doesn't matter which repo you use as long as it works. you should do the comparison and decide on the repo
– AKSW
Nov 7 at 13:49




That's not helpful...and it's a bit unfortunate that you "forgot" to mention what you really want, namely jaxrpc-api artifact, according to his previous question - I don't think that this in in Java SE. The package can be contained in multiple artifacts, more important are the classes. And in the end, it doesn't matter which repo you use as long as it works. you should do the comparison and decide on the repo
– AKSW
Nov 7 at 13:49












1 Answer
1






active

oldest

votes

















up vote
1
down vote



accepted










The javax.xml.xpath package is part of Java SE. You should not need a Maven dependency for it.



But if you do, you have a problem because (AFAIK) Oracle doesn't have an official public maven repository, and (AFAIK) they don't officially condone the uploading of their APIs to Maven Central.





If you are actually looking for a jaxrpc-api maven artifact:




  • It is deprecated. You should be migrating to JAX-WS 2.0; see Wikipedia.

  • The (legacy) JAXRPC 1.1 API source code can be found here. You should be able to build your own JAR from it, then add it to your local repo.

  • It looks like Apache Axis has solved the problem that jaxrpc-api 1.1 has been "disappeared" by taking their own copy; see JAXRPC API project page.






share|improve this answer























  • a bit unfortunate that he "forgot" to mention what he wants, namely jaxrpc-api artifact, according to his previous question - I don't think that this in in Java SE
    – AKSW
    Nov 7 at 13:47










  • Actually, he said (here) that he is looking for javax.xml.xpath; see above.
    – Stephen C
    Nov 7 at 14:16










  • yeah, I know - I just wanted to say that he might forgot to say what he really wants which I know from his previous thread. anyways, you gave the correct answer
    – AKSW
    Nov 7 at 16:44













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',
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%2f53190323%2fofficial-javax-maven-repository%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








up vote
1
down vote



accepted










The javax.xml.xpath package is part of Java SE. You should not need a Maven dependency for it.



But if you do, you have a problem because (AFAIK) Oracle doesn't have an official public maven repository, and (AFAIK) they don't officially condone the uploading of their APIs to Maven Central.





If you are actually looking for a jaxrpc-api maven artifact:




  • It is deprecated. You should be migrating to JAX-WS 2.0; see Wikipedia.

  • The (legacy) JAXRPC 1.1 API source code can be found here. You should be able to build your own JAR from it, then add it to your local repo.

  • It looks like Apache Axis has solved the problem that jaxrpc-api 1.1 has been "disappeared" by taking their own copy; see JAXRPC API project page.






share|improve this answer























  • a bit unfortunate that he "forgot" to mention what he wants, namely jaxrpc-api artifact, according to his previous question - I don't think that this in in Java SE
    – AKSW
    Nov 7 at 13:47










  • Actually, he said (here) that he is looking for javax.xml.xpath; see above.
    – Stephen C
    Nov 7 at 14:16










  • yeah, I know - I just wanted to say that he might forgot to say what he really wants which I know from his previous thread. anyways, you gave the correct answer
    – AKSW
    Nov 7 at 16:44

















up vote
1
down vote



accepted










The javax.xml.xpath package is part of Java SE. You should not need a Maven dependency for it.



But if you do, you have a problem because (AFAIK) Oracle doesn't have an official public maven repository, and (AFAIK) they don't officially condone the uploading of their APIs to Maven Central.





If you are actually looking for a jaxrpc-api maven artifact:




  • It is deprecated. You should be migrating to JAX-WS 2.0; see Wikipedia.

  • The (legacy) JAXRPC 1.1 API source code can be found here. You should be able to build your own JAR from it, then add it to your local repo.

  • It looks like Apache Axis has solved the problem that jaxrpc-api 1.1 has been "disappeared" by taking their own copy; see JAXRPC API project page.






share|improve this answer























  • a bit unfortunate that he "forgot" to mention what he wants, namely jaxrpc-api artifact, according to his previous question - I don't think that this in in Java SE
    – AKSW
    Nov 7 at 13:47










  • Actually, he said (here) that he is looking for javax.xml.xpath; see above.
    – Stephen C
    Nov 7 at 14:16










  • yeah, I know - I just wanted to say that he might forgot to say what he really wants which I know from his previous thread. anyways, you gave the correct answer
    – AKSW
    Nov 7 at 16:44















up vote
1
down vote



accepted







up vote
1
down vote



accepted






The javax.xml.xpath package is part of Java SE. You should not need a Maven dependency for it.



But if you do, you have a problem because (AFAIK) Oracle doesn't have an official public maven repository, and (AFAIK) they don't officially condone the uploading of their APIs to Maven Central.





If you are actually looking for a jaxrpc-api maven artifact:




  • It is deprecated. You should be migrating to JAX-WS 2.0; see Wikipedia.

  • The (legacy) JAXRPC 1.1 API source code can be found here. You should be able to build your own JAR from it, then add it to your local repo.

  • It looks like Apache Axis has solved the problem that jaxrpc-api 1.1 has been "disappeared" by taking their own copy; see JAXRPC API project page.






share|improve this answer














The javax.xml.xpath package is part of Java SE. You should not need a Maven dependency for it.



But if you do, you have a problem because (AFAIK) Oracle doesn't have an official public maven repository, and (AFAIK) they don't officially condone the uploading of their APIs to Maven Central.





If you are actually looking for a jaxrpc-api maven artifact:




  • It is deprecated. You should be migrating to JAX-WS 2.0; see Wikipedia.

  • The (legacy) JAXRPC 1.1 API source code can be found here. You should be able to build your own JAR from it, then add it to your local repo.

  • It looks like Apache Axis has solved the problem that jaxrpc-api 1.1 has been "disappeared" by taking their own copy; see JAXRPC API project page.







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 7 at 14:14

























answered Nov 7 at 13:42









Stephen C

508k69554905




508k69554905












  • a bit unfortunate that he "forgot" to mention what he wants, namely jaxrpc-api artifact, according to his previous question - I don't think that this in in Java SE
    – AKSW
    Nov 7 at 13:47










  • Actually, he said (here) that he is looking for javax.xml.xpath; see above.
    – Stephen C
    Nov 7 at 14:16










  • yeah, I know - I just wanted to say that he might forgot to say what he really wants which I know from his previous thread. anyways, you gave the correct answer
    – AKSW
    Nov 7 at 16:44




















  • a bit unfortunate that he "forgot" to mention what he wants, namely jaxrpc-api artifact, according to his previous question - I don't think that this in in Java SE
    – AKSW
    Nov 7 at 13:47










  • Actually, he said (here) that he is looking for javax.xml.xpath; see above.
    – Stephen C
    Nov 7 at 14:16










  • yeah, I know - I just wanted to say that he might forgot to say what he really wants which I know from his previous thread. anyways, you gave the correct answer
    – AKSW
    Nov 7 at 16:44


















a bit unfortunate that he "forgot" to mention what he wants, namely jaxrpc-api artifact, according to his previous question - I don't think that this in in Java SE
– AKSW
Nov 7 at 13:47




a bit unfortunate that he "forgot" to mention what he wants, namely jaxrpc-api artifact, according to his previous question - I don't think that this in in Java SE
– AKSW
Nov 7 at 13:47












Actually, he said (here) that he is looking for javax.xml.xpath; see above.
– Stephen C
Nov 7 at 14:16




Actually, he said (here) that he is looking for javax.xml.xpath; see above.
– Stephen C
Nov 7 at 14:16












yeah, I know - I just wanted to say that he might forgot to say what he really wants which I know from his previous thread. anyways, you gave the correct answer
– AKSW
Nov 7 at 16:44






yeah, I know - I just wanted to say that he might forgot to say what he really wants which I know from his previous thread. anyways, you gave the correct answer
– AKSW
Nov 7 at 16:44




















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53190323%2fofficial-javax-maven-repository%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







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini