| | |
| | | <parent>
|
| | | <groupId>org.springframework.boot</groupId>
|
| | | <artifactId>spring-boot-starter-parent</artifactId>
|
| | | <version>2.7.12</version>
|
| | | <version>2.5.14</version>
|
| | | <relativePath/> <!-- lookup parent from repository -->
|
| | | </parent>
|
| | | <groupId>com.ard</groupId>
|
| | |
| | | <artifactId>orai18n</artifactId>
|
| | | <version>21.1.0.0</version>
|
| | | </dependency>
|
| | | <!-- okhttp3-->
|
| | | <dependency>
|
| | | <groupId>com.squareup.okhttp3</groupId>
|
| | | <artifactId>okhttp</artifactId>
|
| | | <version>4.8.1</version>
|
| | | </dependency>
|
| | | <!--minio依赖-->
|
| | | <dependency>
|
| | | <groupId>io.minio</groupId>
|
| | | <artifactId>minio</artifactId>
|
| | | <version>8.3.5</version>
|
| | | <exclusions>
|
| | | <exclusion>
|
| | | <groupId>com.squareup.okhttp3</groupId><!--被排除的jar包-->
|
| | | <artifactId>okhttp</artifactId>
|
| | | </exclusion>
|
| | | </exclusions>
|
| | | </dependency>
|
| | | <dependency>
|
| | | <groupId>org.apache.commons</groupId>
|
| | |
| | | <groupId>org.postgresql</groupId>
|
| | | <artifactId>postgresql</artifactId>
|
| | | </dependency>
|
| | | <dependency>
|
| | | <groupId>mysql</groupId>
|
| | | <artifactId>mysql-connector-java</artifactId>
|
| | | <scope>runtime</scope>
|
| | | </dependency>
|
| | | </dependencies>
|
| | |
|
| | | <build>
|
| | |
| | | <artifactId>lombok</artifactId>
|
| | | </exclude>
|
| | | </excludes>
|
| | | </configuration>
|
| | | </plugin>
|
| | | <plugin>
|
| | | <groupId>com.spotify</groupId>
|
| | | <artifactId>dockerfile-maven-plugin</artifactId>
|
| | | <version>1.3.6</version>
|
| | | <configuration>
|
| | | <repository>${docker.image.prefix}/${project.artifactId}</repository>
|
| | | <buildArgs>
|
| | | <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
|
| | | </buildArgs>
|
| | | </configuration>
|
| | | </plugin>
|
| | | <plugin>
|