* [JAVA-27490] Set java.version of JDK 9+ profile to JDK 17 * [JAVA-27490] Removed java.version from modules * [JAVA-27490] Commented modules that are failing * [JAVA-27490] Clean up * [JAVA-27490] Clean up
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.5 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>
 | |
|     <groupId>com.baelding</groupId>
 | |
|     <artifactId>spring-boot-telegram</artifactId>
 | |
|     <version>0.0.1-SNAPSHOT</version>
 | |
|     <name>spring-boot-telegram</name>
 | |
|     <description>Demo project for Spring Boot with Spring Data Redis</description>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>parent-boot-3</artifactId>
 | |
|         <version>0.0.1-SNAPSHOT</version>
 | |
|         <relativePath>../../parent-boot-3</relativePath>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.telegram</groupId>
 | |
|             <artifactId>telegrambots-spring-boot-starter</artifactId>
 | |
|             <version>${telegrambots.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.telegram</groupId>
 | |
|             <artifactId>telegrambots-abilities</artifactId>
 | |
|             <version>${telegrambots.version}</version>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.springframework.boot</groupId>
 | |
|                 <artifactId>spring-boot-maven-plugin</artifactId>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
|     <properties>
 | |
|         <telegrambots.version>6.7.0</telegrambots.version>
 | |
|     </properties>
 | |
| 
 | |
| </project>
 |