forked from mekomsolutions/openmrs-cd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathodooaddon.js
61 lines (51 loc) · 1.56 KB
/
odooaddon.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
"use strict";
const fs = require("fs");
const path = require("path");
const log = require("npmlog");
const _ = require("lodash");
const model = require("../../utils/model");
const utils = require("../../utils/utils");
const config = require("../../utils/config");
const cmns = require("../commons");
const thisType = "odooaddon";
module.exports = {
getInstance: function() {
var projectBuild = new model.ProjectBuild();
projectBuild.getBuildScript = function() {
return cmns.getGradleProjectBuildScript(thisType);
};
projectBuild.getDeployScript = function(artifact) {
return cmns.getGradleProjectDeployScript(
thisType,
"ARTIFACT_UPLOAD_URL_" + thisType
);
};
projectBuild.getArtifact = function(args) {
if (_.isEmpty(args.pom)) {
log.info(
"",
"Using Gradle-generated POM file located at: " +
config.getGradleBuildPomPath()
);
args.pom = utils.getPom(path.resolve(config.getGradleBuildPomPath()));
}
return cmns.getMavenProjectArtifact(args.pom, "build", "zip");
};
projectBuild.postBuildActions = function(args) {
if (_.isEmpty(args.pom)) {
log.info(
"",
"Using Gradle-generated POM file located at: " +
config.getGradleBuildPomPath()
);
args.pom = utils.getPom(path.resolve(config.getGradleBuildPomPath()));
}
cmns.mavenPostBuildActions(
args.pom.groupId,
[args.pom.artifactId],
args.pom.version
);
};
return projectBuild;
}
};