commit 34ee9e4a053d190efa5022bd20644b717ea9e850 Author: 陈思豪 <1437200870@qq.com> Date: Thu Aug 22 14:30:49 2024 +0800 初始化 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..09bdfea --- /dev/null +++ b/.gitignore @@ -0,0 +1,46 @@ +###################################################################### +# Build Tools + +.gradle +/build/ +!gradle/wrapper/gradle-wrapper.jar + +target/ +!.mvn/wrapper/maven-wrapper.jar + +###################################################################### +# IDE + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### JRebel ### +rebel.xml +### NetBeans ### +nbproject/private/ +build/* +nbbuild/ +dist/ +nbdist/ +.nb-gradle/ + +###################################################################### +# Others +*.log +*.xml.versionsBackup +*.swp + +!*/build/*.java +!*/build/*.html +!*/build/*.xml \ No newline at end of file diff --git a/cloud-task-client/pom.xml b/cloud-task-client/pom.xml new file mode 100644 index 0000000..0a95531 --- /dev/null +++ b/cloud-task-client/pom.xml @@ -0,0 +1,20 @@ + + + 4.0.0 + + com.muyu + cloud-etl-task + 1.0.0 + + + cloud-task-client + + + 17 + 17 + UTF-8 + + + diff --git a/cloud-task-client/src/main/java/com/muyu/Main.java b/cloud-task-client/src/main/java/com/muyu/Main.java new file mode 100644 index 0000000..95690d4 --- /dev/null +++ b/cloud-task-client/src/main/java/com/muyu/Main.java @@ -0,0 +1,7 @@ +package com.muyu; + +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file diff --git a/cloud-task-common/pom.xml b/cloud-task-common/pom.xml new file mode 100644 index 0000000..137e629 --- /dev/null +++ b/cloud-task-common/pom.xml @@ -0,0 +1,28 @@ + + + 4.0.0 + + com.muyu + cloud-etl-task + 1.0.0 + + + cloud-task-common + + + 17 + 17 + UTF-8 + + + + + com.muyu + cloud-common-core + + + + + diff --git a/cloud-task-common/src/main/java/com/muyu/Main.java b/cloud-task-common/src/main/java/com/muyu/Main.java new file mode 100644 index 0000000..95690d4 --- /dev/null +++ b/cloud-task-common/src/main/java/com/muyu/Main.java @@ -0,0 +1,7 @@ +package com.muyu; + +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file diff --git a/cloud-task-remote/pom.xml b/cloud-task-remote/pom.xml new file mode 100644 index 0000000..415ee0f --- /dev/null +++ b/cloud-task-remote/pom.xml @@ -0,0 +1,20 @@ + + + 4.0.0 + + com.muyu + cloud-etl-task + 1.0.0 + + + cloud-task-remote + + + 17 + 17 + UTF-8 + + + diff --git a/cloud-task-remote/src/main/java/com/muyu/Main.java b/cloud-task-remote/src/main/java/com/muyu/Main.java new file mode 100644 index 0000000..95690d4 --- /dev/null +++ b/cloud-task-remote/src/main/java/com/muyu/Main.java @@ -0,0 +1,7 @@ +package com.muyu; + +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file diff --git a/cloud-task-server/pom.xml b/cloud-task-server/pom.xml new file mode 100644 index 0000000..beae16d --- /dev/null +++ b/cloud-task-server/pom.xml @@ -0,0 +1,20 @@ + + + 4.0.0 + + com.muyu + cloud-etl-task + 1.0.0 + + + cloud-task-server + + + 17 + 17 + UTF-8 + + + diff --git a/cloud-task-server/src/main/java/com/muyu/Main.java b/cloud-task-server/src/main/java/com/muyu/Main.java new file mode 100644 index 0000000..95690d4 --- /dev/null +++ b/cloud-task-server/src/main/java/com/muyu/Main.java @@ -0,0 +1,7 @@ +package com.muyu; + +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..f5cb636 --- /dev/null +++ b/pom.xml @@ -0,0 +1,30 @@ + + + 4.0.0 + + + com.muyu + cloud-server-parent + 3.6.4 + + + com.muyu + cloud-etl-task + 1.0.0 + pom + + cloud-task-common + cloud-task-remote + cloud-task-client + cloud-task-server + + + + 17 + 17 + UTF-8 + + +