You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'Tensorics is a java framework which uses a tensor as a central object. A tensor represents a set of values placed in an N-dimensional space. Wherever you are tempted to use maps of maps, a tensor might be a good choice ;-) Tensorics provides methods to create, transform and performing calculations with those tensors.',
if (!tmpDeploymentVersion.matches("\\d+\\.\\d+\\.\\d+")) {
4
+
thrownewRuntimeException("Version is not valid. Correct format is like 1.0.2 but was "+ tmpDeploymentVersion)
5
+
}
6
+
return tmpDeploymentVersion;
7
+
}
8
+
9
+
bintrayUpload.doFirst {
10
+
println"Deploying version ${getDeploymentVersion()} from vscTag ${VCS_TAG}"
11
+
}
12
+
13
+
bintray {
14
+
user ="${BINTRAY.userName}"
15
+
key ="${BINTRAY.apiToken}"
16
+
17
+
publications = ['nebula']
18
+
// When uploading Maven-based publication files. Nebula is because we're using the netflix plugins and they use nebula as default name for a publication
19
+
dryRun =!DEPLOYMENT// Whether to run this as dry-run, without deploying
20
+
publish =DEPLOYMENT// Whether version should be auto published after an upload
21
+
override =false// Whether to override version artifacts already published
0 commit comments