Skip to content

Commit

Permalink
Code: Possible fix for wrong upload order for java8 deploy (again x2)
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldenGnu committed Jun 20, 2024
1 parent 69856f2 commit 7d5fb74
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@
<version>2.0.2</version>
<executions>
<execution>
<id>upload-2-update</id>
<id>upload-update</id>
<phase>deploy</phase>
<goals>
<goal>upload</goal>
Expand All @@ -379,7 +379,7 @@
</configuration>
</execution>
<execution>
<id>upload-3-zip</id>
<id>upload-zip</id>
<phase>deploy</phase>
<goals>
<goal>upload</goal>
Expand Down Expand Up @@ -460,16 +460,16 @@
</plugin>
</plugins>
<extensions>
<!-- Enabling the use of FTP -->
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
<version>3.5.2</version>
<artifactId>wagon-ssh</artifactId>
<version>3.5.3</version>
</extension>
<!-- Enabling the use of FTP -->
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>3.5.2</version>
<artifactId>wagon-ftp</artifactId>
<version>3.5.3</version>
</extension>
</extensions>
<resources>
Expand Down Expand Up @@ -885,7 +885,7 @@
<version>2.0.2</version>
<executions>
<execution>
<id>upload-1-delete</id>
<id>upload-delete</id>
<phase>deploy</phase>
<goals>
<goal>sshexec</goal>
Expand All @@ -901,7 +901,7 @@
</configuration>
</execution>
<execution>
<id>upload-2-update</id>
<id>upload-update</id>
<phase>deploy</phase>
<goals>
<goal>upload</goal>
Expand All @@ -915,7 +915,7 @@
</configuration>
</execution>
<execution>
<id>upload-3-zip</id>
<id>upload-zip</id>
<phase>deploy</phase>
<goals>
<goal>upload</goal>
Expand Down Expand Up @@ -1159,7 +1159,7 @@
<version>2.0.2</version>
<executions>
<execution>
<id>upload-2-update</id>
<id>upload-update</id>
<phase>deploy</phase>
<goals>
<goal>upload</goal>
Expand All @@ -1173,7 +1173,7 @@
</configuration>
</execution>
<execution>
<id>upload-3-zip</id>
<id>upload-zip</id>
<phase>deploy</phase>
<goals>
<goal>upload</goal>
Expand Down

0 comments on commit 7d5fb74

Please sign in to comment.