File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -62,11 +62,11 @@ build.doLast {
62
62
Files . copy(file(" ${ buildDir} /libs/core.jar" ). toPath(),
63
63
file(" ${ coreZipPath} " ). toPath(), REPLACE_EXISTING )
64
64
// Renaming artifacts for maven publishing
65
- Files . copy (file(" ${ buildDir} /libs/core.jar" ). toPath(),
65
+ Files . move (file(" ${ buildDir} /libs/core.jar" ). toPath(),
66
66
file(" $buildDir /libs/processing-core-${ modeVersion} .jar" ). toPath(), REPLACE_EXISTING );
67
- Files . copy (file(" ${ buildDir} /libs/core-sources.jar" ). toPath(),
67
+ Files . move (file(" ${ buildDir} /libs/core-sources.jar" ). toPath(),
68
68
file(" $buildDir /libs/processing-core-${ modeVersion} -sources.jar" ). toPath(), REPLACE_EXISTING );
69
- Files . copy (file(" ${ buildDir} /libs/core.jar.MD5" ). toPath(),
69
+ Files . move (file(" ${ buildDir} /libs/core.jar.MD5" ). toPath(),
70
70
file(" $buildDir /libs/processing-core-${ modeVersion} .jar.md5" ). toPath(), REPLACE_EXISTING );
71
71
}
72
72
Original file line number Diff line number Diff line change @@ -64,11 +64,11 @@ build.doLast {
64
64
Files . copy(file(" $buildDir /libs/ar.jar" ). toPath(),
65
65
arJar. toPath(), REPLACE_EXISTING );
66
66
// Renaming artifacts for maven publishing
67
- Files . copy (file(" $buildDir /libs/ar.jar" ). toPath(),
67
+ Files . move (file(" $buildDir /libs/ar.jar" ). toPath(),
68
68
file(" $buildDir /libs/processing-ar-${ arLibVersion} .jar" ). toPath(), REPLACE_EXISTING );
69
- Files . copy (file(" $buildDir /libs/ar-sources.jar" ). toPath(),
69
+ Files . move (file(" $buildDir /libs/ar-sources.jar" ). toPath(),
70
70
file(" $buildDir /libs/processing-ar-${ arLibVersion} -sources.jar" ). toPath(), REPLACE_EXISTING );
71
- Files . copy (file(" $buildDir /libs/ar.jar.MD5" ). toPath(),
71
+ Files . move (file(" $buildDir /libs/ar.jar.MD5" ). toPath(),
72
72
file(" $buildDir /libs/processing-ar-${ arLibVersion} .jar.md5" ). toPath(), REPLACE_EXISTING );
73
73
}
74
74
Original file line number Diff line number Diff line change @@ -64,11 +64,11 @@ build.doLast {
64
64
Files . copy(file(" $buildDir /libs/vr.jar" ). toPath(),
65
65
vrJar. toPath(), REPLACE_EXISTING );
66
66
// Renaming artifacts for maven publishing
67
- Files . copy (file(" $buildDir /libs/vr.jar" ). toPath(),
67
+ Files . move (file(" $buildDir /libs/vr.jar" ). toPath(),
68
68
file(" $buildDir /libs/processing-vr-${ vrLibVersion} .jar" ). toPath(), REPLACE_EXISTING );
69
- Files . copy (file(" $buildDir /libs/vr-sources.jar" ). toPath(),
69
+ Files . move (file(" $buildDir /libs/vr-sources.jar" ). toPath(),
70
70
file(" $buildDir /libs/processing-vr-${ vrLibVersion} -sources.jar" ). toPath(), REPLACE_EXISTING );
71
- Files . copy (file(" $buildDir /libs/vr.jar.MD5" ). toPath(),
71
+ Files . move (file(" $buildDir /libs/vr.jar.MD5" ). toPath(),
72
72
file(" $buildDir /libs/processing-vr-${ vrLibVersion} .jar.md5" ). toPath(), REPLACE_EXISTING );
73
73
}
74
74
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ apply plugin: 'signing'
4
4
afterEvaluate {
5
5
publishing {
6
6
publications {
7
- arPublication (MavenPublication ) {
7
+ release (MavenPublication ) {
8
8
artifact(libJar)
9
9
artifact(libSrc)
10
10
artifact(libMd5)
You can’t perform that action at this time.
0 commit comments