create version.txt file in project dir via build.gradle task(gradle 5.0)
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
add a comment |
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
add a comment |
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
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
gradle
asked Nov 12 '18 at 18:21
curioushikhov
1,0101630
1,0101630
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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()
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%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
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()
add a comment |
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()
add a comment |
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()
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()
answered Nov 15 '18 at 11:51
M.Ricciuti
2,8012418
2,8012418
add a comment |
add a comment |
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.
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%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
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