Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
a3c466da
Commit
a3c466da
authored
Mar 16, 2023
by
wujiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交工程
parent
30953598
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
171 additions
and
0 deletions
+171
-0
.factorypath
...boot-system-jxiop/amos-boot-module-jxiop-api/.factorypath
+0
-0
pom.xml
amos-boot-system-jxiop/amos-boot-module-jxiop-api/pom.xml
+26
-0
App.java
...api/src/main/java/org/amos/boot/module/jxiop/api/App.java
+13
-0
AppTest.java
...src/test/java/org/amos/boot/module/jxiop/api/AppTest.java
+38
-0
.factorypath
...boot-system-jxiop/amos-boot-module-jxiop-biz/.factorypath
+0
-0
pom.xml
amos-boot-system-jxiop/amos-boot-module-jxiop-biz/pom.xml
+26
-0
App.java
...biz/src/main/java/org/amos/boot/module/jxiop/biz/App.java
+13
-0
AppTest.java
...src/test/java/org/amos/boot/module/jxiop/biz/AppTest.java
+38
-0
pom.xml
amos-boot-system-jxiop/pom.xml
+17
-0
No files found.
amos-boot-system-jxiop/amos-boot-module-jxiop-api/.factorypath
0 → 100644
View file @
a3c466da
This diff is collapsed.
Click to expand it.
amos-boot-system-jxiop/amos-boot-module-jxiop-api/pom.xml
0 → 100644
View file @
a3c466da
<?xml version="1.0"?>
<project
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
>
<modelVersion>
4.0.0
</modelVersion>
<parent>
<groupId>
com.amosframework.boot
</groupId>
<artifactId>
amos-boot-system-jxiop
</artifactId>
<version>
1.0.0
</version>
</parent>
<groupId>
com.amosframework.boot
</groupId>
<artifactId>
amos-boot-module-jxiop-api
</artifactId>
<version>
1.0.0
</version>
<name>
amos-boot-module-jxiop-api
</name>
<url>
http://maven.apache.org
</url>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
3.8.1
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
</project>
amos-boot-system-jxiop/amos-boot-module-jxiop-api/src/main/java/org/amos/boot/module/jxiop/api/App.java
0 → 100644
View file @
a3c466da
package
org
.
amos
.
boot
.
module
.
jxiop
.
api
;
/**
* Hello world!
*
*/
public
class
App
{
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
println
(
"Hello World!"
);
}
}
amos-boot-system-jxiop/amos-boot-module-jxiop-api/src/test/java/org/amos/boot/module/jxiop/api/AppTest.java
0 → 100644
View file @
a3c466da
package
org
.
amos
.
boot
.
module
.
jxiop
.
api
;
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
);
}
}
amos-boot-system-jxiop/amos-boot-module-jxiop-biz/.factorypath
0 → 100644
View file @
a3c466da
This diff is collapsed.
Click to expand it.
amos-boot-system-jxiop/amos-boot-module-jxiop-biz/pom.xml
0 → 100644
View file @
a3c466da
<?xml version="1.0"?>
<project
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
>
<modelVersion>
4.0.0
</modelVersion>
<parent>
<groupId>
com.amosframework.boot
</groupId>
<artifactId>
amos-boot-system-jxiop
</artifactId>
<version>
1.0.0
</version>
</parent>
<groupId>
com.amosframework.boot
</groupId>
<artifactId>
amos-boot-module-jxiop-biz
</artifactId>
<version>
1.0.0
</version>
<name>
amos-boot-module-jxiop-biz
</name>
<url>
http://maven.apache.org
</url>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
3.8.1
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
</project>
amos-boot-system-jxiop/amos-boot-module-jxiop-biz/src/main/java/org/amos/boot/module/jxiop/biz/App.java
0 → 100644
View file @
a3c466da
package
org
.
amos
.
boot
.
module
.
jxiop
.
biz
;
/**
* Hello world!
*
*/
public
class
App
{
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
println
(
"Hello World!"
);
}
}
amos-boot-system-jxiop/amos-boot-module-jxiop-biz/src/test/java/org/amos/boot/module/jxiop/biz/AppTest.java
0 → 100644
View file @
a3c466da
package
org
.
amos
.
boot
.
module
.
jxiop
.
biz
;
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
);
}
}
amos-boot-system-jxiop/pom.xml
0 → 100644
View file @
a3c466da
<?xml version="1.0"?>
<project
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
amos-boot-system-jxiop
</artifactId>
<parent>
<artifactId>
amos-biz-boot
</artifactId>
<groupId>
com.amosframework.boot
</groupId>
<version>
1.0.0
</version>
</parent>
<packaging>
pom
</packaging>
<modules>
<module>
amos-boot-module-jxiop-api
</module>
<module>
amos-boot-module-jxiop-biz
</module>
</modules>
</project>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment