Displaying differences for changeset
 
display as  

.gradle/7.3/checksums/checksums.lock

 

.gradle/7.3/checksums/md5-checksums.bin

 

.gradle/7.3/checksums/sha1-checksums.bin

 

.gradle/7.3/checksums/sha256-checksums.bin

 

.gradle/7.3/checksums/sha512-checksums.bin

 

.gradle/7.3/executionHistory/executionHistory.bin

 

.gradle/7.3/executionHistory/executionHistory.lock

 

.gradle/7.3/fileHashes/fileHashes.bin

 

.gradle/7.3/fileHashes/fileHashes.lock

 

.gradle/buildOutputCleanup/buildOutputCleanup.lock

 

.gradle/buildOutputCleanup/cache.properties

@@ -1,2 +1,2 @@
-#Tue Jan 25 21:27:25 PST 2022
+#Thu Feb 03 13:20:43 AKST 2022
 gradle.version=7.3

.gradle/buildOutputCleanup/outputFiles.bin

 

.gradle/file-system.probe

 

.gradle/nb-cache/csip-core-gradle-2050256390/gradle.properties

@@ -1,3 +1,3 @@
-netbeans.org-netbeans-modules-gradle.jdkPlatform=JDK_11
+netbeans.org-netbeans-modules-gradle.jdkPlatform=JDK_8
 netbeans.org-netbeans-modules-gradle.augmented_2e_build=true
 netbeans.org-netbeans-modules-gradle.include_2e_open_2e_projects=false

.gradle/nb-cache/csip-core-gradle-2050256390/project-info.ser

 

.gradle/nb-cache/subprojects.ser

 

build.gradle

@@ -112,24 +112,52 @@
     api 'com.zaxxer:HikariCP:3.4.5'
 }
 
-artifactory  {
-    contextUrl = "${artifactory_contextUrl}"   //The base Artifactory URL if not overridden by the publisher/resolver
-    publish {
-        repository {
-            repoKey = "${artifactory_repoKey}"
-            username = "${artifactory_user}"
-            password = "${artifactory_password}"
-            maven = true   
-        }
-        defaults {
-            publications("mavenJava")
-            publishConfigs('published') 
-            publishBuildInfo = true   
-            publishArtifacts = true   
-            publishPom = true  
-        }
-    }
-    
+
+task artifactoryLocalPublish  finalizedBy artifactoryPublish {  
+        artifactory  {
+          publish {
+                repository {
+                    contextUrl = "${artifactory_contextUrl}"
+                    repoKey = "${artifactory_repoKey}"
+                    username = "${artifactory_user}"
+                    password = "${artifactory_password}"
+                    maven = true
+
+              defaults {
+                  publications("mavenJava")
+                  publishConfigs('published') 
+                  publishBuildInfo = true   
+                  publishArtifacts = true   
+                  publishPom = true  
+              }
+            }
+          }
+      }
+
 }
+ 
+task artifactoryRemotePublish  {   
+        doLast {
+            artifactory  {
+            println("order of ops bleh")
+              publish {
+                    repository {
+                        contextUrl = "${artifactory_remote_contextUrl}"
+                        repoKey = "${artifactory_remote_repoKey}"
+                        username = "${artifactory_remote_user}"
+                        password = "${artifactory_remote_password}"
+                        maven = true
 
+                  defaults {
+                      publications("mavenJava")
+                      publishConfigs('published') 
+                      publishBuildInfo = true   
+                      publishArtifacts = true   
+                      publishPom = true  
+                  }
+                }
+              }
+          }
+      }
+
 

gradle.properties

@@ -1,17 +1,20 @@
 artifactory_local_user=admin
-artifactory_local_password=123456aA
+artifactory_local_password=Localpass1
 artifactory_local_contextUrl=http://localhost:8081/artifactory
 artifactory_local_repoKey=csip-gradle-dev-local
 
-artifactory_remote_contextUrl=http://10.2.228.63:8081/artifactory
+artifactory_remote_contextUrl=http://129.82.20.231:8081/artifactory
 artifactory_remote_user=admin
 artifactory_remote_password=Colostate1
-artifactory_remote_repoKey=csip-remote-release
-
+artifactory_remote_repoKey=csip-dberams1
+publishLocal=False
 
 theGroup=edu.colostate.omslab
 theName=csip-core
 theSourceCompatibility=1.8
-action.custom-1=artifactoryPublish
-action.custom-1.args=clean\nbuild\nartifactoryPublish
-action.custom-2=
+
+
+action.custom-1=artifactoryRemotePublish
+action.custom-1.args=artifactoryRemotePublish\nartifactoryPublish
+action.custom-2=artifactoryLocalPublish
+action.custom-2.args=clean\nbuild\nartifactoryLocalPublish\nartifactoryPublish