| 
									
										
										
										
											2020-09-27 18:37:50 +02:00
										 |  |  | plugins { | 
					
						
							|  |  |  |     id 'java' | 
					
						
							| 
									
										
										
										
											2020-10-09 12:41:53 +02:00
										 |  |  |     id 'org.springframework.boot' version '2.3.4.RELEASE' | 
					
						
							| 
									
										
										
										
											2020-09-27 18:37:50 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | group = 'com.gradle' | 
					
						
							|  |  |  | version = '1.0.0' | 
					
						
							|  |  |  | sourceCompatibility = '14' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | repositories { | 
					
						
							|  |  |  |     mavenCentral() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | dependencies { | 
					
						
							| 
									
										
										
										
											2020-10-09 12:41:53 +02:00
										 |  |  |     implementation 'org.springframework.boot:spring-boot-starter:2.3.4.RELEASE' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     testImplementation 'org.springframework.boot:spring-boot-starter-test:2.3.4.RELEASE' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     compileOnly 'org.projectlombok:lombok:1.18.14' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     testCompileOnly 'org.projectlombok:lombok:1.18.14' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     runtimeOnly files('libs/sampleOne.jar', 'libs/sampleTwo.jar') | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     runtimeOnly fileTree('libs') { include '*.jar' } | 
					
						
							| 
									
										
										
										
											2020-09-27 18:37:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-09 12:41:53 +02:00
										 |  |  | //    implementation gradleApi()
 | 
					
						
							| 
									
										
										
										
											2020-09-27 18:37:50 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | test { | 
					
						
							|  |  |  |     useJUnitPlatform() | 
					
						
							|  |  |  | } |