mirror of
				https://github.com/NotoChen/Jetbrains-Help.git
				synced 2025-11-01 01:38:31 +08:00 
			
		
		
		
	![dependabot[bot]](/assets/img/avatar_default.png) c0388df997
			
		
	
	
		c0388df997
		
			
		
	
	
	
	
		
			
			Bumps [org.bouncycastle:bcpkix-jdk18on](https://github.com/bcgit/bc-java) from 1.78 to 1.79. - [Changelog](https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.html) - [Commits](https://github.com/bcgit/bc-java/commits) --- updated-dependencies: - dependency-name: org.bouncycastle:bcpkix-jdk18on dependency-version: '1.79' dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			76 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 | |
|          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
|     <parent>
 | |
|         <groupId>org.springframework.boot</groupId>
 | |
|         <artifactId>spring-boot-starter-parent</artifactId>
 | |
|         <version>3.2.4</version>
 | |
|         <relativePath/> <!-- lookup parent from repository -->
 | |
|     </parent>
 | |
|     <groupId>com.jetbrains.help</groupId>
 | |
|     <artifactId>Jetbrains-Help</artifactId>
 | |
|     <version>0.0.1-SNAPSHOT</version>
 | |
|     <name>Jetbrains-Help</name>
 | |
|     <description>Jetbrains-Help</description>
 | |
|     <properties>
 | |
|         <java.version>21</java.version>
 | |
|     </properties>
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-thymeleaf</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-starter-web</artifactId>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework.boot</groupId>
 | |
|             <artifactId>spring-boot-configuration-processor</artifactId>
 | |
|             <optional>true</optional>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.projectlombok</groupId>
 | |
|             <artifactId>lombok</artifactId>
 | |
|             <optional>true</optional>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>cn.hutool</groupId>
 | |
|             <artifactId>hutool-all</artifactId>
 | |
|             <version>5.8.26</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.bouncycastle</groupId>
 | |
|             <artifactId>bcpkix-jdk18on</artifactId>
 | |
|             <version>1.79</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.bouncycastle</groupId>
 | |
|             <artifactId>bcprov-jdk18on</artifactId>
 | |
|             <version>1.78</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <finalName>${artifactId}</finalName>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.springframework.boot</groupId>
 | |
|                 <artifactId>spring-boot-maven-plugin</artifactId>
 | |
|                 <configuration>
 | |
|                     <excludes>
 | |
|                         <exclude>
 | |
|                             <groupId>org.projectlombok</groupId>
 | |
|                             <artifactId>lombok</artifactId>
 | |
|                         </exclude>
 | |
|                     </excludes>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
| </project>
 |