From 1037009134b6f0eb9be01d0a2ce75c4fdf2dfb6b Mon Sep 17 00:00:00 2001 From: Qing Date: Sun, 18 Feb 2024 14:00:28 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=89=B4=E6=9D=83=E6=A8=A1=E5=9D=97?= =?UTF-8?q?=E6=A1=86=E6=9E=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jc-club-auth/jc-club-auth-api/pom.xml | 28 ++++++++++++++ .../src/main/java/com/landaiqing/App.java | 0 .../src/test/java/com/landaiqing/AppTest.java | 0 .../pom.xml | 28 ++++++++++++++ .../src/main/java/com/landaiqing/App.java | 13 +++++++ .../src/test/java/com/landaiqing/AppTest.java | 38 +++++++++++++++++++ .../jc-club-auth-application-job/pom.xml | 28 ++++++++++++++ .../src/main/java/com/landaiqing/App.java | 13 +++++++ .../src/test/java/com/landaiqing/AppTest.java | 38 +++++++++++++++++++ .../jc-club-auth-application-mq/pom.xml | 28 ++++++++++++++ .../src/main/java/com/landaiqing/App.java | 13 +++++++ .../src/test/java/com/landaiqing/AppTest.java | 38 +++++++++++++++++++ jc-club-auth/jc-club-auth-application/pom.xml | 33 ++++++++++++++++ jc-club-auth/jc-club-auth-common/pom.xml | 28 ++++++++++++++ .../src/main/java/com/landaiqing/App.java | 13 +++++++ .../src/test/java/com/landaiqing/AppTest.java | 38 +++++++++++++++++++ jc-club-auth/jc-club-auth-domain/pom.xml | 28 ++++++++++++++ .../src/main/java/com/landaiqing/App.java | 13 +++++++ .../src/test/java/com/landaiqing/AppTest.java | 38 +++++++++++++++++++ jc-club-auth/jc-club-auth-infra/pom.xml | 28 ++++++++++++++ .../src/main/java/com/landaiqing/App.java | 13 +++++++ .../src/test/java/com/landaiqing/AppTest.java | 38 +++++++++++++++++++ jc-club-auth/jc-club-auth-starter/pom.xml | 28 ++++++++++++++ .../src/main/java/com/landaiqing/App.java | 13 +++++++ .../src/test/java/com/landaiqing/AppTest.java | 38 +++++++++++++++++++ jc-club-auth/pom.xml | 10 ++++- 26 files changed, 623 insertions(+), 1 deletion(-) create mode 100644 jc-club-auth/jc-club-auth-api/pom.xml rename jc-club-auth/{ => jc-club-auth-api}/src/main/java/com/landaiqing/App.java (100%) rename jc-club-auth/{ => jc-club-auth-api}/src/test/java/com/landaiqing/AppTest.java (100%) create mode 100644 jc-club-auth/jc-club-auth-application/jc-club-auth-application-controller/pom.xml create mode 100644 jc-club-auth/jc-club-auth-application/jc-club-auth-application-controller/src/main/java/com/landaiqing/App.java create mode 100644 jc-club-auth/jc-club-auth-application/jc-club-auth-application-controller/src/test/java/com/landaiqing/AppTest.java create mode 100644 jc-club-auth/jc-club-auth-application/jc-club-auth-application-job/pom.xml create mode 100644 jc-club-auth/jc-club-auth-application/jc-club-auth-application-job/src/main/java/com/landaiqing/App.java create mode 100644 jc-club-auth/jc-club-auth-application/jc-club-auth-application-job/src/test/java/com/landaiqing/AppTest.java create mode 100644 jc-club-auth/jc-club-auth-application/jc-club-auth-application-mq/pom.xml create mode 100644 jc-club-auth/jc-club-auth-application/jc-club-auth-application-mq/src/main/java/com/landaiqing/App.java create mode 100644 jc-club-auth/jc-club-auth-application/jc-club-auth-application-mq/src/test/java/com/landaiqing/AppTest.java create mode 100644 jc-club-auth/jc-club-auth-application/pom.xml create mode 100644 jc-club-auth/jc-club-auth-common/pom.xml create mode 100644 jc-club-auth/jc-club-auth-common/src/main/java/com/landaiqing/App.java create mode 100644 jc-club-auth/jc-club-auth-common/src/test/java/com/landaiqing/AppTest.java create mode 100644 jc-club-auth/jc-club-auth-domain/pom.xml create mode 100644 jc-club-auth/jc-club-auth-domain/src/main/java/com/landaiqing/App.java create mode 100644 jc-club-auth/jc-club-auth-domain/src/test/java/com/landaiqing/AppTest.java create mode 100644 jc-club-auth/jc-club-auth-infra/pom.xml create mode 100644 jc-club-auth/jc-club-auth-infra/src/main/java/com/landaiqing/App.java create mode 100644 jc-club-auth/jc-club-auth-infra/src/test/java/com/landaiqing/AppTest.java create mode 100644 jc-club-auth/jc-club-auth-starter/pom.xml create mode 100644 jc-club-auth/jc-club-auth-starter/src/main/java/com/landaiqing/App.java create mode 100644 jc-club-auth/jc-club-auth-starter/src/test/java/com/landaiqing/AppTest.java diff --git a/jc-club-auth/jc-club-auth-api/pom.xml b/jc-club-auth/jc-club-auth-api/pom.xml new file mode 100644 index 0000000..4e09479 --- /dev/null +++ b/jc-club-auth/jc-club-auth-api/pom.xml @@ -0,0 +1,28 @@ + + 4.0.0 + + com.landaiqing + jc-club-auth + 1.0-SNAPSHOT + + + jc-club-auth-api + jar + + jc-club-auth-api + http://maven.apache.org + + + UTF-8 + + + + + junit + junit + 3.8.1 + test + + + diff --git a/jc-club-auth/src/main/java/com/landaiqing/App.java b/jc-club-auth/jc-club-auth-api/src/main/java/com/landaiqing/App.java similarity index 100% rename from jc-club-auth/src/main/java/com/landaiqing/App.java rename to jc-club-auth/jc-club-auth-api/src/main/java/com/landaiqing/App.java diff --git a/jc-club-auth/src/test/java/com/landaiqing/AppTest.java b/jc-club-auth/jc-club-auth-api/src/test/java/com/landaiqing/AppTest.java similarity index 100% rename from jc-club-auth/src/test/java/com/landaiqing/AppTest.java rename to jc-club-auth/jc-club-auth-api/src/test/java/com/landaiqing/AppTest.java diff --git a/jc-club-auth/jc-club-auth-application/jc-club-auth-application-controller/pom.xml b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-controller/pom.xml new file mode 100644 index 0000000..3161fc9 --- /dev/null +++ b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-controller/pom.xml @@ -0,0 +1,28 @@ + + 4.0.0 + + com.landaiqing + jc-club-auth-application + 1.0-SNAPSHOT + + + jc-club-auth-application-controller + jar + + jc-club-auth-application-controller + http://maven.apache.org + + + UTF-8 + + + + + junit + junit + 3.8.1 + test + + + diff --git a/jc-club-auth/jc-club-auth-application/jc-club-auth-application-controller/src/main/java/com/landaiqing/App.java b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-controller/src/main/java/com/landaiqing/App.java new file mode 100644 index 0000000..e623ea3 --- /dev/null +++ b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-controller/src/main/java/com/landaiqing/App.java @@ -0,0 +1,13 @@ +package com.landaiqing; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/jc-club-auth/jc-club-auth-application/jc-club-auth-application-controller/src/test/java/com/landaiqing/AppTest.java b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-controller/src/test/java/com/landaiqing/AppTest.java new file mode 100644 index 0000000..908567a --- /dev/null +++ b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-controller/src/test/java/com/landaiqing/AppTest.java @@ -0,0 +1,38 @@ +package com.landaiqing; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} diff --git a/jc-club-auth/jc-club-auth-application/jc-club-auth-application-job/pom.xml b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-job/pom.xml new file mode 100644 index 0000000..639d9d1 --- /dev/null +++ b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-job/pom.xml @@ -0,0 +1,28 @@ + + 4.0.0 + + com.landaiqing + jc-club-auth-application + 1.0-SNAPSHOT + + + jc-club-auth-application-job + jar + + jc-club-auth-application-job + http://maven.apache.org + + + UTF-8 + + + + + junit + junit + 3.8.1 + test + + + diff --git a/jc-club-auth/jc-club-auth-application/jc-club-auth-application-job/src/main/java/com/landaiqing/App.java b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-job/src/main/java/com/landaiqing/App.java new file mode 100644 index 0000000..e623ea3 --- /dev/null +++ b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-job/src/main/java/com/landaiqing/App.java @@ -0,0 +1,13 @@ +package com.landaiqing; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/jc-club-auth/jc-club-auth-application/jc-club-auth-application-job/src/test/java/com/landaiqing/AppTest.java b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-job/src/test/java/com/landaiqing/AppTest.java new file mode 100644 index 0000000..908567a --- /dev/null +++ b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-job/src/test/java/com/landaiqing/AppTest.java @@ -0,0 +1,38 @@ +package com.landaiqing; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} diff --git a/jc-club-auth/jc-club-auth-application/jc-club-auth-application-mq/pom.xml b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-mq/pom.xml new file mode 100644 index 0000000..272389e --- /dev/null +++ b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-mq/pom.xml @@ -0,0 +1,28 @@ + + 4.0.0 + + com.landaiqing + jc-club-auth-application + 1.0-SNAPSHOT + + + jc-club-auth-application-mq + jar + + jc-club-auth-application-mq + http://maven.apache.org + + + UTF-8 + + + + + junit + junit + 3.8.1 + test + + + diff --git a/jc-club-auth/jc-club-auth-application/jc-club-auth-application-mq/src/main/java/com/landaiqing/App.java b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-mq/src/main/java/com/landaiqing/App.java new file mode 100644 index 0000000..e623ea3 --- /dev/null +++ b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-mq/src/main/java/com/landaiqing/App.java @@ -0,0 +1,13 @@ +package com.landaiqing; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/jc-club-auth/jc-club-auth-application/jc-club-auth-application-mq/src/test/java/com/landaiqing/AppTest.java b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-mq/src/test/java/com/landaiqing/AppTest.java new file mode 100644 index 0000000..908567a --- /dev/null +++ b/jc-club-auth/jc-club-auth-application/jc-club-auth-application-mq/src/test/java/com/landaiqing/AppTest.java @@ -0,0 +1,38 @@ +package com.landaiqing; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} diff --git a/jc-club-auth/jc-club-auth-application/pom.xml b/jc-club-auth/jc-club-auth-application/pom.xml new file mode 100644 index 0000000..56ecd73 --- /dev/null +++ b/jc-club-auth/jc-club-auth-application/pom.xml @@ -0,0 +1,33 @@ + + 4.0.0 + + com.landaiqing + jc-club-auth + 1.0-SNAPSHOT + + + jc-club-auth-application + pom + + jc-club-auth-application + http://maven.apache.org + + jc-club-auth-application-controller + jc-club-auth-application-job + jc-club-auth-application-mq + + + + UTF-8 + + + + + junit + junit + 3.8.1 + test + + + diff --git a/jc-club-auth/jc-club-auth-common/pom.xml b/jc-club-auth/jc-club-auth-common/pom.xml new file mode 100644 index 0000000..a675db0 --- /dev/null +++ b/jc-club-auth/jc-club-auth-common/pom.xml @@ -0,0 +1,28 @@ + + 4.0.0 + + com.landaiqing + jc-club-auth + 1.0-SNAPSHOT + + + jc-club-auth-common + jar + + jc-club-auth-common + http://maven.apache.org + + + UTF-8 + + + + + junit + junit + 3.8.1 + test + + + diff --git a/jc-club-auth/jc-club-auth-common/src/main/java/com/landaiqing/App.java b/jc-club-auth/jc-club-auth-common/src/main/java/com/landaiqing/App.java new file mode 100644 index 0000000..e623ea3 --- /dev/null +++ b/jc-club-auth/jc-club-auth-common/src/main/java/com/landaiqing/App.java @@ -0,0 +1,13 @@ +package com.landaiqing; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/jc-club-auth/jc-club-auth-common/src/test/java/com/landaiqing/AppTest.java b/jc-club-auth/jc-club-auth-common/src/test/java/com/landaiqing/AppTest.java new file mode 100644 index 0000000..908567a --- /dev/null +++ b/jc-club-auth/jc-club-auth-common/src/test/java/com/landaiqing/AppTest.java @@ -0,0 +1,38 @@ +package com.landaiqing; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} diff --git a/jc-club-auth/jc-club-auth-domain/pom.xml b/jc-club-auth/jc-club-auth-domain/pom.xml new file mode 100644 index 0000000..86f9eb6 --- /dev/null +++ b/jc-club-auth/jc-club-auth-domain/pom.xml @@ -0,0 +1,28 @@ + + 4.0.0 + + com.landaiqing + jc-club-auth + 1.0-SNAPSHOT + + + jc-club-auth-domain + jar + + jc-club-auth-domain + http://maven.apache.org + + + UTF-8 + + + + + junit + junit + 3.8.1 + test + + + diff --git a/jc-club-auth/jc-club-auth-domain/src/main/java/com/landaiqing/App.java b/jc-club-auth/jc-club-auth-domain/src/main/java/com/landaiqing/App.java new file mode 100644 index 0000000..e623ea3 --- /dev/null +++ b/jc-club-auth/jc-club-auth-domain/src/main/java/com/landaiqing/App.java @@ -0,0 +1,13 @@ +package com.landaiqing; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/jc-club-auth/jc-club-auth-domain/src/test/java/com/landaiqing/AppTest.java b/jc-club-auth/jc-club-auth-domain/src/test/java/com/landaiqing/AppTest.java new file mode 100644 index 0000000..908567a --- /dev/null +++ b/jc-club-auth/jc-club-auth-domain/src/test/java/com/landaiqing/AppTest.java @@ -0,0 +1,38 @@ +package com.landaiqing; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} diff --git a/jc-club-auth/jc-club-auth-infra/pom.xml b/jc-club-auth/jc-club-auth-infra/pom.xml new file mode 100644 index 0000000..008f7d3 --- /dev/null +++ b/jc-club-auth/jc-club-auth-infra/pom.xml @@ -0,0 +1,28 @@ + + 4.0.0 + + com.landaiqing + jc-club-auth + 1.0-SNAPSHOT + + + jc-club-auth-infra + jar + + jc-club-auth-infra + http://maven.apache.org + + + UTF-8 + + + + + junit + junit + 3.8.1 + test + + + diff --git a/jc-club-auth/jc-club-auth-infra/src/main/java/com/landaiqing/App.java b/jc-club-auth/jc-club-auth-infra/src/main/java/com/landaiqing/App.java new file mode 100644 index 0000000..e623ea3 --- /dev/null +++ b/jc-club-auth/jc-club-auth-infra/src/main/java/com/landaiqing/App.java @@ -0,0 +1,13 @@ +package com.landaiqing; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/jc-club-auth/jc-club-auth-infra/src/test/java/com/landaiqing/AppTest.java b/jc-club-auth/jc-club-auth-infra/src/test/java/com/landaiqing/AppTest.java new file mode 100644 index 0000000..908567a --- /dev/null +++ b/jc-club-auth/jc-club-auth-infra/src/test/java/com/landaiqing/AppTest.java @@ -0,0 +1,38 @@ +package com.landaiqing; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} diff --git a/jc-club-auth/jc-club-auth-starter/pom.xml b/jc-club-auth/jc-club-auth-starter/pom.xml new file mode 100644 index 0000000..a13b84c --- /dev/null +++ b/jc-club-auth/jc-club-auth-starter/pom.xml @@ -0,0 +1,28 @@ + + 4.0.0 + + com.landaiqing + jc-club-auth + 1.0-SNAPSHOT + + + jc-club-auth-starter + jar + + jc-club-auth-starter + http://maven.apache.org + + + UTF-8 + + + + + junit + junit + 3.8.1 + test + + + diff --git a/jc-club-auth/jc-club-auth-starter/src/main/java/com/landaiqing/App.java b/jc-club-auth/jc-club-auth-starter/src/main/java/com/landaiqing/App.java new file mode 100644 index 0000000..e623ea3 --- /dev/null +++ b/jc-club-auth/jc-club-auth-starter/src/main/java/com/landaiqing/App.java @@ -0,0 +1,13 @@ +package com.landaiqing; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/jc-club-auth/jc-club-auth-starter/src/test/java/com/landaiqing/AppTest.java b/jc-club-auth/jc-club-auth-starter/src/test/java/com/landaiqing/AppTest.java new file mode 100644 index 0000000..908567a --- /dev/null +++ b/jc-club-auth/jc-club-auth-starter/src/test/java/com/landaiqing/AppTest.java @@ -0,0 +1,38 @@ +package com.landaiqing; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} diff --git a/jc-club-auth/pom.xml b/jc-club-auth/pom.xml index cf85a59..ef2a1b4 100644 --- a/jc-club-auth/pom.xml +++ b/jc-club-auth/pom.xml @@ -5,10 +5,18 @@ com.landaiqing jc-club-auth 1.0-SNAPSHOT - jar + pom jc-club-auth http://maven.apache.org + + jc-club-auth-application + jc-club-auth-common + jc-club-auth-domain + jc-club-auth-infra + jc-club-auth-starter + jc-club-auth-api + UTF-8