some pom shenanigans
							parent
							
								
									992a5a922d
								
							
						
					
					
						commit
						f613a15b63
					
				| @ -1,103 +1,113 @@ | ||||
| <?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.5.3</version> | ||||
| 		<relativePath/> <!-- lookup parent from repository --> | ||||
| 	</parent> | ||||
| 	<groupId>alfred</groupId> | ||||
| 	<artifactId>web</artifactId> | ||||
| 	<version>0.0.1-SNAPSHOT</version> | ||||
| 	<name>web</name> | ||||
| 	<description>Alfred CI</description> | ||||
| 	<url/> | ||||
| 	<licenses> | ||||
| 		<license/> | ||||
| 	</licenses> | ||||
| 	<developers> | ||||
| 		<developer/> | ||||
| 	</developers> | ||||
| 	<scm> | ||||
| 		<connection/> | ||||
| 		<developerConnection/> | ||||
| 		<tag/> | ||||
| 		<url/> | ||||
| 	</scm> | ||||
| 	<properties> | ||||
| 		<java.version>17</java.version> | ||||
| 		<kotlin.version>1.9.25</kotlin.version> | ||||
| 	</properties> | ||||
| 	<dependencies> | ||||
| 		<dependency> | ||||
| 			<groupId>org.springframework.boot</groupId> | ||||
| 			<artifactId>spring-boot-starter-actuator</artifactId> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.springframework.boot</groupId> | ||||
| 			<artifactId>spring-boot-starter-web</artifactId> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>com.fasterxml.jackson.module</groupId> | ||||
| 			<artifactId>jackson-module-kotlin</artifactId> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.jetbrains.kotlin</groupId> | ||||
| 			<artifactId>kotlin-reflect</artifactId> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.jetbrains.kotlin</groupId> | ||||
| 			<artifactId>kotlin-stdlib</artifactId> | ||||
| 		</dependency> | ||||
|          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.5.4</version> | ||||
|         <relativePath/> <!-- lookup parent from repository --> | ||||
|     </parent> | ||||
|     <groupId>alfred</groupId> | ||||
|     <artifactId>web</artifactId> | ||||
|     <version>0.0.1-SNAPSHOT</version> | ||||
|     <name>web</name> | ||||
|     <description>Alfred CI</description> | ||||
|     <url/> | ||||
| 
 | ||||
| 		<dependency> | ||||
| 			<groupId>org.springframework.boot</groupId> | ||||
| 			<artifactId>spring-boot-devtools</artifactId> | ||||
| 			<scope>runtime</scope> | ||||
| 			<optional>true</optional> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.springframework.boot</groupId> | ||||
| 			<artifactId>spring-boot-starter-test</artifactId> | ||||
| 			<scope>test</scope> | ||||
| 		</dependency> | ||||
| 		<dependency> | ||||
| 			<groupId>org.jetbrains.kotlin</groupId> | ||||
| 			<artifactId>kotlin-test-junit5</artifactId> | ||||
| 			<scope>test</scope> | ||||
| 		</dependency> | ||||
| 	</dependencies> | ||||
|     <licenses> | ||||
|         <license> | ||||
|             <name>AGPL-v3</name> | ||||
|             <url>https://opensource.org/license/agpl-v3</url> | ||||
|         </license> | ||||
|     </licenses> | ||||
| 
 | ||||
| 	<build> | ||||
| 		<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory> | ||||
| 		<testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory> | ||||
| 		<plugins> | ||||
| 			<plugin> | ||||
| 				<groupId>org.springframework.boot</groupId> | ||||
| 				<artifactId>spring-boot-maven-plugin</artifactId> | ||||
| 			</plugin> | ||||
| 			<plugin> | ||||
| 				<groupId>org.jetbrains.kotlin</groupId> | ||||
| 				<artifactId>kotlin-maven-plugin</artifactId> | ||||
| 				<configuration> | ||||
| 					<args> | ||||
| 						<arg>-Xjsr305=strict</arg> | ||||
| 					</args> | ||||
| 					<compilerPlugins> | ||||
| 						<plugin>spring</plugin> | ||||
| 					</compilerPlugins> | ||||
| 				</configuration> | ||||
| 				<dependencies> | ||||
| 					<dependency> | ||||
| 						<groupId>org.jetbrains.kotlin</groupId> | ||||
| 						<artifactId>kotlin-maven-allopen</artifactId> | ||||
| 						<version>${kotlin.version}</version> | ||||
| 					</dependency> | ||||
| 				</dependencies> | ||||
| 			</plugin> | ||||
| 		</plugins> | ||||
| 	</build> | ||||
|     <developers> | ||||
|         <developer> | ||||
|             <name>Josha von Gizycki</name> | ||||
|             <roles> | ||||
|                 <role>developer</role> | ||||
|             </roles> | ||||
|         </developer> | ||||
|     </developers> | ||||
| 
 | ||||
|     <scm> | ||||
|         <url>https://gitea.heevyis.ninja/josha/alfred</url> | ||||
|     </scm> | ||||
| 
 | ||||
|     <properties> | ||||
|         <java.version>17</java.version> | ||||
|         <kotlin.version>1.9.25</kotlin.version> | ||||
|     </properties> | ||||
| 
 | ||||
|     <dependencies> | ||||
|         <dependency> | ||||
|             <groupId>org.springframework.boot</groupId> | ||||
|             <artifactId>spring-boot-starter-actuator</artifactId> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.springframework.boot</groupId> | ||||
|             <artifactId>spring-boot-starter-web</artifactId> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>com.fasterxml.jackson.module</groupId> | ||||
|             <artifactId>jackson-module-kotlin</artifactId> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.jetbrains.kotlin</groupId> | ||||
|             <artifactId>kotlin-reflect</artifactId> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.jetbrains.kotlin</groupId> | ||||
|             <artifactId>kotlin-stdlib</artifactId> | ||||
|         </dependency> | ||||
| 
 | ||||
|         <dependency> | ||||
|             <groupId>org.springframework.boot</groupId> | ||||
|             <artifactId>spring-boot-devtools</artifactId> | ||||
|             <scope>runtime</scope> | ||||
|             <optional>true</optional> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.springframework.boot</groupId> | ||||
|             <artifactId>spring-boot-starter-test</artifactId> | ||||
|             <scope>test</scope> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.jetbrains.kotlin</groupId> | ||||
|             <artifactId>kotlin-test-junit5</artifactId> | ||||
|             <scope>test</scope> | ||||
|         </dependency> | ||||
|     </dependencies> | ||||
| 
 | ||||
|     <build> | ||||
|         <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory> | ||||
|         <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory> | ||||
|         <plugins> | ||||
|             <plugin> | ||||
|                 <groupId>org.springframework.boot</groupId> | ||||
|                 <artifactId>spring-boot-maven-plugin</artifactId> | ||||
|             </plugin> | ||||
|             <plugin> | ||||
|                 <groupId>org.jetbrains.kotlin</groupId> | ||||
|                 <artifactId>kotlin-maven-plugin</artifactId> | ||||
|                 <configuration> | ||||
|                     <args> | ||||
|                         <arg>-Xjsr305=strict</arg> | ||||
|                     </args> | ||||
|                     <compilerPlugins> | ||||
|                         <plugin>spring</plugin> | ||||
|                     </compilerPlugins> | ||||
|                 </configuration> | ||||
|                 <dependencies> | ||||
|                     <dependency> | ||||
|                         <groupId>org.jetbrains.kotlin</groupId> | ||||
|                         <artifactId>kotlin-maven-allopen</artifactId> | ||||
|                         <version>${kotlin.version}</version> | ||||
|                     </dependency> | ||||
|                 </dependencies> | ||||
|             </plugin> | ||||
|         </plugins> | ||||
|     </build> | ||||
| 
 | ||||
| </project> | ||||
|  | ||||
					Loading…
					
					
				
		Reference in New Issue
	
	 Josha von Gizycki
						Josha von Gizycki