create version.txt file in project dir via build.gradle task(gradle 5.0)












5














Old question is obsolete(create version.txt file in project dir via build.gradle task)



my current task:



task exportVersion {
def file = project.layout.buildDirectory.file("version.txt")
def f = file.get().asFile
f.text = "$project.android.defaultConfig.versionName"
}


This is slightly rewritten task to remove "incompatible" change of gradle 5.0 but warnings are still shown:




The DefaultSourceDirectorySet constructor has been deprecated. This is scheduled to be removed in Gradle 5.0. Please use the ObjectFactory service to create instances of SourceDirectorySet instead.



The ProjectLayout.directoryProperty() method has been deprecated. This is scheduled to be removed in Gradle 5.0. Please use the ObjectFactory.directoryProperty() method instead.



The ProjectLayout.fileProperty() method has been deprecated. This is scheduled to be removed in Gradle 5.0. Please use the ObjectFactory.fileProperty() method instead.




How to rewrite task using ObjectFactory?
The project is an Android application, but I think this is not changes task much.










share|improve this question



























    5














    Old question is obsolete(create version.txt file in project dir via build.gradle task)



    my current task:



    task exportVersion {
    def file = project.layout.buildDirectory.file("version.txt")
    def f = file.get().asFile
    f.text = "$project.android.defaultConfig.versionName"
    }


    This is slightly rewritten task to remove "incompatible" change of gradle 5.0 but warnings are still shown:




    The DefaultSourceDirectorySet constructor has been deprecated. This is scheduled to be removed in Gradle 5.0. Please use the ObjectFactory service to create instances of SourceDirectorySet instead.



    The ProjectLayout.directoryProperty() method has been deprecated. This is scheduled to be removed in Gradle 5.0. Please use the ObjectFactory.directoryProperty() method instead.



    The ProjectLayout.fileProperty() method has been deprecated. This is scheduled to be removed in Gradle 5.0. Please use the ObjectFactory.fileProperty() method instead.




    How to rewrite task using ObjectFactory?
    The project is an Android application, but I think this is not changes task much.










    share|improve this question

























      5












      5








      5







      Old question is obsolete(create version.txt file in project dir via build.gradle task)



      my current task:



      task exportVersion {
      def file = project.layout.buildDirectory.file("version.txt")
      def f = file.get().asFile
      f.text = "$project.android.defaultConfig.versionName"
      }


      This is slightly rewritten task to remove "incompatible" change of gradle 5.0 but warnings are still shown:




      The DefaultSourceDirectorySet constructor has been deprecated. This is scheduled to be removed in Gradle 5.0. Please use the ObjectFactory service to create instances of SourceDirectorySet instead.



      The ProjectLayout.directoryProperty() method has been deprecated. This is scheduled to be removed in Gradle 5.0. Please use the ObjectFactory.directoryProperty() method instead.



      The ProjectLayout.fileProperty() method has been deprecated. This is scheduled to be removed in Gradle 5.0. Please use the ObjectFactory.fileProperty() method instead.




      How to rewrite task using ObjectFactory?
      The project is an Android application, but I think this is not changes task much.










      share|improve this question













      Old question is obsolete(create version.txt file in project dir via build.gradle task)



      my current task:



      task exportVersion {
      def file = project.layout.buildDirectory.file("version.txt")
      def f = file.get().asFile
      f.text = "$project.android.defaultConfig.versionName"
      }


      This is slightly rewritten task to remove "incompatible" change of gradle 5.0 but warnings are still shown:




      The DefaultSourceDirectorySet constructor has been deprecated. This is scheduled to be removed in Gradle 5.0. Please use the ObjectFactory service to create instances of SourceDirectorySet instead.



      The ProjectLayout.directoryProperty() method has been deprecated. This is scheduled to be removed in Gradle 5.0. Please use the ObjectFactory.directoryProperty() method instead.



      The ProjectLayout.fileProperty() method has been deprecated. This is scheduled to be removed in Gradle 5.0. Please use the ObjectFactory.fileProperty() method instead.




      How to rewrite task using ObjectFactory?
      The project is an Android application, but I think this is not changes task much.







      gradle






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 12 '18 at 18:21









      curioushikhov

      1,0101630




      1,0101630
























          1 Answer
          1






          active

          oldest

          votes


















          0














          In your task exportVersion, you don't use any of the deprecated methods listed in the shown warning: maybe these warning concern another part of your script?



          For deprecated code where you need to use ObjectFactory.xyz method: you can simple get an instance of ObjectFactory using Project.getObjects() method, see https://docs.gradle.org/5.0-rc-3/javadoc/org/gradle/api/Project.html#getObjects--



          For example, deprecated code like



          project.layout.directoryProperty() 


          can be rewritten as:



          project.getObjects().directoryProperty() 





          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%2f53267959%2fcreate-version-txt-file-in-project-dir-via-build-gradle-taskgradle-5-0%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









            0














            In your task exportVersion, you don't use any of the deprecated methods listed in the shown warning: maybe these warning concern another part of your script?



            For deprecated code where you need to use ObjectFactory.xyz method: you can simple get an instance of ObjectFactory using Project.getObjects() method, see https://docs.gradle.org/5.0-rc-3/javadoc/org/gradle/api/Project.html#getObjects--



            For example, deprecated code like



            project.layout.directoryProperty() 


            can be rewritten as:



            project.getObjects().directoryProperty() 





            share|improve this answer


























              0














              In your task exportVersion, you don't use any of the deprecated methods listed in the shown warning: maybe these warning concern another part of your script?



              For deprecated code where you need to use ObjectFactory.xyz method: you can simple get an instance of ObjectFactory using Project.getObjects() method, see https://docs.gradle.org/5.0-rc-3/javadoc/org/gradle/api/Project.html#getObjects--



              For example, deprecated code like



              project.layout.directoryProperty() 


              can be rewritten as:



              project.getObjects().directoryProperty() 





              share|improve this answer
























                0












                0








                0






                In your task exportVersion, you don't use any of the deprecated methods listed in the shown warning: maybe these warning concern another part of your script?



                For deprecated code where you need to use ObjectFactory.xyz method: you can simple get an instance of ObjectFactory using Project.getObjects() method, see https://docs.gradle.org/5.0-rc-3/javadoc/org/gradle/api/Project.html#getObjects--



                For example, deprecated code like



                project.layout.directoryProperty() 


                can be rewritten as:



                project.getObjects().directoryProperty() 





                share|improve this answer












                In your task exportVersion, you don't use any of the deprecated methods listed in the shown warning: maybe these warning concern another part of your script?



                For deprecated code where you need to use ObjectFactory.xyz method: you can simple get an instance of ObjectFactory using Project.getObjects() method, see https://docs.gradle.org/5.0-rc-3/javadoc/org/gradle/api/Project.html#getObjects--



                For example, deprecated code like



                project.layout.directoryProperty() 


                can be rewritten as:



                project.getObjects().directoryProperty() 






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 15 '18 at 11:51









                M.Ricciuti

                2,8012418




                2,8012418






























                    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%2f53267959%2fcreate-version-txt-file-in-project-dir-via-build-gradle-taskgradle-5-0%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

                    Florida Star v. B. J. F.

                    Error while running script in elastic search , gateway timeout

                    Adding quotations to stringified JSON object values