Skip to content

Commit

Permalink
Merge branch '2.x' into 2.x_24_11_19_01
Browse files Browse the repository at this point in the history
  • Loading branch information
funky-eyes authored Nov 28, 2024
2 parents a635d33 + 5fe6da6 commit a030529
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 25 deletions.
1 change: 1 addition & 0 deletions build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@
<image.tags>latest</image.tags>

<dependencies.copy.skip>true</dependencies.copy.skip>
<mysql.copy.skip>true</mysql.copy.skip>
</properties>

<build>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@
<properties>
<image.publish.skip>false</image.publish.skip>
<dependencies.copy.skip>false</dependencies.copy.skip>
<mysql.copy.skip>false</mysql.copy.skip>
<mysql.jdbc.version>5.1.42</mysql.jdbc.version>
<mysql8.jdbc.version>8.0.27</mysql8.jdbc.version>
<maven.git-commit-id.skip>false</maven.git-commit-id.skip>
Expand Down
50 changes: 25 additions & 25 deletions server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -362,31 +362,31 @@
<skip>${dependencies.copy.skip}</skip>
</configuration>
</execution>
<!-- <execution>-->
<!-- <id>copy-mysql</id>-->
<!-- <phase>package</phase>-->
<!-- <goals>-->
<!-- <goal>copy</goal>-->
<!-- </goals>-->
<!-- <configuration>-->
<!-- <artifactItems>-->
<!-- <artifactItem>-->
<!-- <groupId>mysql</groupId>-->
<!-- <artifactId>mysql-connector-java</artifactId>-->
<!-- <version>${mysql.jdbc.version}</version>-->
<!-- </artifactItem>-->
<!-- <artifactItem>-->
<!-- <groupId>mysql</groupId>-->
<!-- <artifactId>mysql-connector-java</artifactId>-->
<!-- <version>${mysql8.jdbc.version}</version>-->
<!-- </artifactItem>-->
<!-- </artifactItems>-->
<!-- <outputDirectory>-->
<!-- ${project.build.directory}/lib/jdbc-->
<!-- </outputDirectory>-->
<!-- <skip>${dependencies.copy.skip}</skip>-->
<!-- </configuration>-->
<!-- </execution>-->
<execution>
<id>copy-mysql</id>
<phase>package</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.jdbc.version}</version>
</artifactItem>
<artifactItem>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql8.jdbc.version}</version>
</artifactItem>
</artifactItems>
<outputDirectory>
${project.build.directory}/lib/jdbc
</outputDirectory>
<skip>${mysql.copy.skip}</skip>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
Expand Down

0 comments on commit a030529

Please sign in to comment.