[ISSUE-86] Multi-module Gradle restructure — Refactor CFTunnels into :common, :cftunnels-service, :portainer-automation #125

Merged
hitanshu merged 6 commits from Dave/CFTunnels:ISSUE-86 into test 2026-07-05 10:23:25 +00:00
3 changed files with 27 additions and 0 deletions
Showing only changes of commit 0c6944685f - Show all commits

View File

@ -0,0 +1,14 @@
apply plugin: 'org.springframework.boot'
dependencies {
implementation project(':common')
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

View File

@ -0,0 +1,12 @@
package com.hithomelabs.portainer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class PortainerAutomationApplication {
public static void main(String[] args) {
SpringApplication.run(PortainerAutomationApplication.class, args);
}
}

View File

@ -0,0 +1 @@
server.port=8081