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