Specify version when deploying to nexus from maven











up vote
1
down vote

favorite












I've forked Confluent's Kafka Connect HDFS writer and now I'd like to deploy a version of this jar to my local Nexus.



mvn clean deploy Works like a charm and deploys the jar.



https://[nexus]/repository/releases/io/confluent/kafka-connect-hdfs/5.0.0/kafka-connect-hdfs-5.0.0.jar



So far so good, but to make a distinction between the confluent versions and my own deployment I'd like to change the version of the build to something like 5.0.0-1 or so (preferably the tag name when pushed, but that's step 2)



The pom.xml is basically the same as the 5.0.0-post release, but here the most important parts:



    <parent>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-common-parent</artifactId>
<version>5.0.0</version>
</parent>

<artifactId>kafka-connect-hdfs</artifactId>
<packaging>jar</packaging>
<name>kafka-connect-hdfs</name>
<organization>
<name>Confluent, Inc.</name>
<url>http://confluent.io</url>
</organization>
<url>http://confluent.io</url>
<description>
A Kafka Connect HDFS connector for copying data between Kafka and Hadoop HDFS.
</description>
...
<dependencies>
...
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-common</artifactId>
<version>${confluent.version}</version>
</dependency>
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-core</artifactId>
<version>${confluent.version}</version>
</dependency>
...
</dependencies>

<build>
<plugins>
<plugin>
<groupId>io.confluent</groupId>
<version>0.10.0</version>
<artifactId>kafka-connect-maven-plugin</artifactId>
...


So first I added <version> tags to the pom.xml, but it started using that as the default for all confluent.version and complained that it couldn't find for example: https://[nexus]/repository/releases/io/confluent/kafka-connect-storage-hive/5.0.0-1/kafka-connect-storage-hive-5.0.0-1.pom



Next I tried the versions plugin from maven
mvn versions:set -DnewVersion=5.0.0-1 clean deploy



But that complained about the parent:




[ERROR] Failed to execute goal org.codehaus.mojo:versions-maven-plugin:2.7:set (default-cli) on project kafka-connect-hdfs: Project version is inherited from parent. -> [Help 1]




I don't even care if the version is 5.0.0 in the code, I just wat to deploy to a different version in our artifactory.



I'm not a maven expert, so maybe I'm missing some very basic clue, but all help is welcome.










share|improve this question
























  • Where is confluent.version defined? What is its definition?
    – JF Meier
    Nov 19 at 13:13










  • I actually don't know. I'm assuming that the kafka-connect-maven-plugin is doing some magic in this area, because I cannot find a reference in this project.
    – Tom Lous
    Nov 19 at 13:15










  • When I used extensive debugging it all of a sudden has this line [DEBUG] properties used {docker.upstream-registry=placeholder/, ... confluent.version=5.0.0, avro.version=1.8.1, java.vm.info=mixed mode, ...
    – Tom Lous
    Nov 19 at 13:17










  • Personally, I just use our existing Nexus repos, but have <artifactId>kafka-connect-hdfs</artifactId><scope>provided</scope><version>5.0.0</version>, then just extend whatever code I need... Then, if you put that built JAR into the kafka-connect-storage-hdfs folder, it should work
    – cricket_007
    Nov 19 at 16:52















up vote
1
down vote

favorite












I've forked Confluent's Kafka Connect HDFS writer and now I'd like to deploy a version of this jar to my local Nexus.



mvn clean deploy Works like a charm and deploys the jar.



https://[nexus]/repository/releases/io/confluent/kafka-connect-hdfs/5.0.0/kafka-connect-hdfs-5.0.0.jar



So far so good, but to make a distinction between the confluent versions and my own deployment I'd like to change the version of the build to something like 5.0.0-1 or so (preferably the tag name when pushed, but that's step 2)



The pom.xml is basically the same as the 5.0.0-post release, but here the most important parts:



    <parent>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-common-parent</artifactId>
<version>5.0.0</version>
</parent>

<artifactId>kafka-connect-hdfs</artifactId>
<packaging>jar</packaging>
<name>kafka-connect-hdfs</name>
<organization>
<name>Confluent, Inc.</name>
<url>http://confluent.io</url>
</organization>
<url>http://confluent.io</url>
<description>
A Kafka Connect HDFS connector for copying data between Kafka and Hadoop HDFS.
</description>
...
<dependencies>
...
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-common</artifactId>
<version>${confluent.version}</version>
</dependency>
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-core</artifactId>
<version>${confluent.version}</version>
</dependency>
...
</dependencies>

<build>
<plugins>
<plugin>
<groupId>io.confluent</groupId>
<version>0.10.0</version>
<artifactId>kafka-connect-maven-plugin</artifactId>
...


So first I added <version> tags to the pom.xml, but it started using that as the default for all confluent.version and complained that it couldn't find for example: https://[nexus]/repository/releases/io/confluent/kafka-connect-storage-hive/5.0.0-1/kafka-connect-storage-hive-5.0.0-1.pom



Next I tried the versions plugin from maven
mvn versions:set -DnewVersion=5.0.0-1 clean deploy



But that complained about the parent:




[ERROR] Failed to execute goal org.codehaus.mojo:versions-maven-plugin:2.7:set (default-cli) on project kafka-connect-hdfs: Project version is inherited from parent. -> [Help 1]




I don't even care if the version is 5.0.0 in the code, I just wat to deploy to a different version in our artifactory.



I'm not a maven expert, so maybe I'm missing some very basic clue, but all help is welcome.










share|improve this question
























  • Where is confluent.version defined? What is its definition?
    – JF Meier
    Nov 19 at 13:13










  • I actually don't know. I'm assuming that the kafka-connect-maven-plugin is doing some magic in this area, because I cannot find a reference in this project.
    – Tom Lous
    Nov 19 at 13:15










  • When I used extensive debugging it all of a sudden has this line [DEBUG] properties used {docker.upstream-registry=placeholder/, ... confluent.version=5.0.0, avro.version=1.8.1, java.vm.info=mixed mode, ...
    – Tom Lous
    Nov 19 at 13:17










  • Personally, I just use our existing Nexus repos, but have <artifactId>kafka-connect-hdfs</artifactId><scope>provided</scope><version>5.0.0</version>, then just extend whatever code I need... Then, if you put that built JAR into the kafka-connect-storage-hdfs folder, it should work
    – cricket_007
    Nov 19 at 16:52













up vote
1
down vote

favorite









up vote
1
down vote

favorite











I've forked Confluent's Kafka Connect HDFS writer and now I'd like to deploy a version of this jar to my local Nexus.



mvn clean deploy Works like a charm and deploys the jar.



https://[nexus]/repository/releases/io/confluent/kafka-connect-hdfs/5.0.0/kafka-connect-hdfs-5.0.0.jar



So far so good, but to make a distinction between the confluent versions and my own deployment I'd like to change the version of the build to something like 5.0.0-1 or so (preferably the tag name when pushed, but that's step 2)



The pom.xml is basically the same as the 5.0.0-post release, but here the most important parts:



    <parent>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-common-parent</artifactId>
<version>5.0.0</version>
</parent>

<artifactId>kafka-connect-hdfs</artifactId>
<packaging>jar</packaging>
<name>kafka-connect-hdfs</name>
<organization>
<name>Confluent, Inc.</name>
<url>http://confluent.io</url>
</organization>
<url>http://confluent.io</url>
<description>
A Kafka Connect HDFS connector for copying data between Kafka and Hadoop HDFS.
</description>
...
<dependencies>
...
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-common</artifactId>
<version>${confluent.version}</version>
</dependency>
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-core</artifactId>
<version>${confluent.version}</version>
</dependency>
...
</dependencies>

<build>
<plugins>
<plugin>
<groupId>io.confluent</groupId>
<version>0.10.0</version>
<artifactId>kafka-connect-maven-plugin</artifactId>
...


So first I added <version> tags to the pom.xml, but it started using that as the default for all confluent.version and complained that it couldn't find for example: https://[nexus]/repository/releases/io/confluent/kafka-connect-storage-hive/5.0.0-1/kafka-connect-storage-hive-5.0.0-1.pom



Next I tried the versions plugin from maven
mvn versions:set -DnewVersion=5.0.0-1 clean deploy



But that complained about the parent:




[ERROR] Failed to execute goal org.codehaus.mojo:versions-maven-plugin:2.7:set (default-cli) on project kafka-connect-hdfs: Project version is inherited from parent. -> [Help 1]




I don't even care if the version is 5.0.0 in the code, I just wat to deploy to a different version in our artifactory.



I'm not a maven expert, so maybe I'm missing some very basic clue, but all help is welcome.










share|improve this question















I've forked Confluent's Kafka Connect HDFS writer and now I'd like to deploy a version of this jar to my local Nexus.



mvn clean deploy Works like a charm and deploys the jar.



https://[nexus]/repository/releases/io/confluent/kafka-connect-hdfs/5.0.0/kafka-connect-hdfs-5.0.0.jar



So far so good, but to make a distinction between the confluent versions and my own deployment I'd like to change the version of the build to something like 5.0.0-1 or so (preferably the tag name when pushed, but that's step 2)



The pom.xml is basically the same as the 5.0.0-post release, but here the most important parts:



    <parent>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-common-parent</artifactId>
<version>5.0.0</version>
</parent>

<artifactId>kafka-connect-hdfs</artifactId>
<packaging>jar</packaging>
<name>kafka-connect-hdfs</name>
<organization>
<name>Confluent, Inc.</name>
<url>http://confluent.io</url>
</organization>
<url>http://confluent.io</url>
<description>
A Kafka Connect HDFS connector for copying data between Kafka and Hadoop HDFS.
</description>
...
<dependencies>
...
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-common</artifactId>
<version>${confluent.version}</version>
</dependency>
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-storage-core</artifactId>
<version>${confluent.version}</version>
</dependency>
...
</dependencies>

<build>
<plugins>
<plugin>
<groupId>io.confluent</groupId>
<version>0.10.0</version>
<artifactId>kafka-connect-maven-plugin</artifactId>
...


So first I added <version> tags to the pom.xml, but it started using that as the default for all confluent.version and complained that it couldn't find for example: https://[nexus]/repository/releases/io/confluent/kafka-connect-storage-hive/5.0.0-1/kafka-connect-storage-hive-5.0.0-1.pom



Next I tried the versions plugin from maven
mvn versions:set -DnewVersion=5.0.0-1 clean deploy



But that complained about the parent:




[ERROR] Failed to execute goal org.codehaus.mojo:versions-maven-plugin:2.7:set (default-cli) on project kafka-connect-hdfs: Project version is inherited from parent. -> [Help 1]




I don't even care if the version is 5.0.0 in the code, I just wat to deploy to a different version in our artifactory.



I'm not a maven expert, so maybe I'm missing some very basic clue, but all help is welcome.







maven apache-kafka nexus apache-kafka-connect confluent






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 19 at 16:49









cricket_007

77.8k1142108




77.8k1142108










asked Nov 19 at 12:43









Tom Lous

1,27611222




1,27611222












  • Where is confluent.version defined? What is its definition?
    – JF Meier
    Nov 19 at 13:13










  • I actually don't know. I'm assuming that the kafka-connect-maven-plugin is doing some magic in this area, because I cannot find a reference in this project.
    – Tom Lous
    Nov 19 at 13:15










  • When I used extensive debugging it all of a sudden has this line [DEBUG] properties used {docker.upstream-registry=placeholder/, ... confluent.version=5.0.0, avro.version=1.8.1, java.vm.info=mixed mode, ...
    – Tom Lous
    Nov 19 at 13:17










  • Personally, I just use our existing Nexus repos, but have <artifactId>kafka-connect-hdfs</artifactId><scope>provided</scope><version>5.0.0</version>, then just extend whatever code I need... Then, if you put that built JAR into the kafka-connect-storage-hdfs folder, it should work
    – cricket_007
    Nov 19 at 16:52


















  • Where is confluent.version defined? What is its definition?
    – JF Meier
    Nov 19 at 13:13










  • I actually don't know. I'm assuming that the kafka-connect-maven-plugin is doing some magic in this area, because I cannot find a reference in this project.
    – Tom Lous
    Nov 19 at 13:15










  • When I used extensive debugging it all of a sudden has this line [DEBUG] properties used {docker.upstream-registry=placeholder/, ... confluent.version=5.0.0, avro.version=1.8.1, java.vm.info=mixed mode, ...
    – Tom Lous
    Nov 19 at 13:17










  • Personally, I just use our existing Nexus repos, but have <artifactId>kafka-connect-hdfs</artifactId><scope>provided</scope><version>5.0.0</version>, then just extend whatever code I need... Then, if you put that built JAR into the kafka-connect-storage-hdfs folder, it should work
    – cricket_007
    Nov 19 at 16:52
















Where is confluent.version defined? What is its definition?
– JF Meier
Nov 19 at 13:13




Where is confluent.version defined? What is its definition?
– JF Meier
Nov 19 at 13:13












I actually don't know. I'm assuming that the kafka-connect-maven-plugin is doing some magic in this area, because I cannot find a reference in this project.
– Tom Lous
Nov 19 at 13:15




I actually don't know. I'm assuming that the kafka-connect-maven-plugin is doing some magic in this area, because I cannot find a reference in this project.
– Tom Lous
Nov 19 at 13:15












When I used extensive debugging it all of a sudden has this line [DEBUG] properties used {docker.upstream-registry=placeholder/, ... confluent.version=5.0.0, avro.version=1.8.1, java.vm.info=mixed mode, ...
– Tom Lous
Nov 19 at 13:17




When I used extensive debugging it all of a sudden has this line [DEBUG] properties used {docker.upstream-registry=placeholder/, ... confluent.version=5.0.0, avro.version=1.8.1, java.vm.info=mixed mode, ...
– Tom Lous
Nov 19 at 13:17












Personally, I just use our existing Nexus repos, but have <artifactId>kafka-connect-hdfs</artifactId><scope>provided</scope><version>5.0.0</version>, then just extend whatever code I need... Then, if you put that built JAR into the kafka-connect-storage-hdfs folder, it should work
– cricket_007
Nov 19 at 16:52




Personally, I just use our existing Nexus repos, but have <artifactId>kafka-connect-hdfs</artifactId><scope>provided</scope><version>5.0.0</version>, then just extend whatever code I need... Then, if you put that built JAR into the kafka-connect-storage-hdfs folder, it should work
– cricket_007
Nov 19 at 16:52












1 Answer
1






active

oldest

votes

















up vote
0
down vote













You can specify the version with ${revision} parameter.



To do this, you need to add <version> tag with this variable in pom.xml:



<artifactId>kafka-connect-hdfs</artifactId>
<version>5.0.0-${revision}</version>
<packaging>jar</packaging>


And then provide it to the maven command. E.g.,
mvn clean package -Drevision=01 will generate kafka-connect-hdfs-5.0.0-01.jar file.






share|improve this answer










New contributor




biruk1230 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.


















    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%2f53374924%2fspecify-version-when-deploying-to-nexus-from-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








    up vote
    0
    down vote













    You can specify the version with ${revision} parameter.



    To do this, you need to add <version> tag with this variable in pom.xml:



    <artifactId>kafka-connect-hdfs</artifactId>
    <version>5.0.0-${revision}</version>
    <packaging>jar</packaging>


    And then provide it to the maven command. E.g.,
    mvn clean package -Drevision=01 will generate kafka-connect-hdfs-5.0.0-01.jar file.






    share|improve this answer










    New contributor




    biruk1230 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      up vote
      0
      down vote













      You can specify the version with ${revision} parameter.



      To do this, you need to add <version> tag with this variable in pom.xml:



      <artifactId>kafka-connect-hdfs</artifactId>
      <version>5.0.0-${revision}</version>
      <packaging>jar</packaging>


      And then provide it to the maven command. E.g.,
      mvn clean package -Drevision=01 will generate kafka-connect-hdfs-5.0.0-01.jar file.






      share|improve this answer










      New contributor




      biruk1230 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















        up vote
        0
        down vote










        up vote
        0
        down vote









        You can specify the version with ${revision} parameter.



        To do this, you need to add <version> tag with this variable in pom.xml:



        <artifactId>kafka-connect-hdfs</artifactId>
        <version>5.0.0-${revision}</version>
        <packaging>jar</packaging>


        And then provide it to the maven command. E.g.,
        mvn clean package -Drevision=01 will generate kafka-connect-hdfs-5.0.0-01.jar file.






        share|improve this answer










        New contributor




        biruk1230 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        You can specify the version with ${revision} parameter.



        To do this, you need to add <version> tag with this variable in pom.xml:



        <artifactId>kafka-connect-hdfs</artifactId>
        <version>5.0.0-${revision}</version>
        <packaging>jar</packaging>


        And then provide it to the maven command. E.g.,
        mvn clean package -Drevision=01 will generate kafka-connect-hdfs-5.0.0-01.jar file.







        share|improve this answer










        New contributor




        biruk1230 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        share|improve this answer



        share|improve this answer








        edited Nov 29 at 12:11





















        New contributor




        biruk1230 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        answered Nov 29 at 12:02









        biruk1230

        264




        264




        New contributor




        biruk1230 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.





        New contributor





        biruk1230 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






        biruk1230 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






























            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.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • 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%2f53374924%2fspecify-version-when-deploying-to-nexus-from-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

            Costa Masnaga

            Fotorealismo

            Sidney Franklin