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
5cdb323e
Commit
5cdb323e
authored
Oct 19, 2022
by
wujiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改precontrol工程
parent
653e2c84
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
171 additions
and
20 deletions
+171
-20
pom.xml
amos-boot-biz-common/pom.xml
+5
-0
.factorypath
...m-precontrol/amos-boot-system-precontrol-api/.factorypath
+0
-0
pom.xml
...system-precontrol/amos-boot-system-precontrol-api/pom.xml
+26
-0
App.java
...rc/main/java/org/amos/boot/system/precontrol/api/App.java
+13
-0
AppTest.java
...est/java/org/amos/boot/system/precontrol/api/AppTest.java
+38
-0
.factorypath
...m-precontrol/amos-boot-system-precontrol-biz/.factorypath
+0
-0
pom.xml
...system-precontrol/amos-boot-system-precontrol-biz/pom.xml
+26
-0
App.java
...rc/main/java/org/amos/boot/system/precontrol/biz/App.java
+13
-0
AppTest.java
...est/java/org/amos/boot/system/precontrol/biz/AppTest.java
+38
-0
pom.xml
amos-boot-system-precontrol/pom.xml
+12
-20
No files found.
amos-boot-biz-common/pom.xml
View file @
5cdb323e
...
...
@@ -19,6 +19,11 @@
<version>
${amos.version}
</version>
</dependency>
<dependency>
<groupId>
com.yeejoin
</groupId>
<artifactId>
amos-component-security
</artifactId>
<version>
1.7.13-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
org.typroject
</groupId>
<artifactId>
tyboot-core-rdbms
</artifactId>
<version>
${tyboot-version}
</version>
...
...
amos-boot-system-precontrol/amos-boot-system-precontrol-api/.factorypath
0 → 100644
View file @
5cdb323e
This diff is collapsed.
Click to expand it.
amos-boot-system-precontrol/amos-boot-system-precontrol-api/pom.xml
0 → 100644
View file @
5cdb323e
<?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-precontrol
</artifactId>
<version>
1.0.0
</version>
</parent>
<groupId>
com.amosframework.boot
</groupId>
<artifactId>
amos-boot-system-precontrol-api
</artifactId>
<version>
1.0.0
</version>
<name>
amos-boot-system-precontrol-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-precontrol/amos-boot-system-precontrol-api/src/main/java/org/amos/boot/system/precontrol/api/App.java
0 → 100644
View file @
5cdb323e
package
org
.
amos
.
boot
.
system
.
precontrol
.
api
;
/**
* Hello world!
*
*/
public
class
App
{
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
println
(
"Hello World!"
);
}
}
amos-boot-system-precontrol/amos-boot-system-precontrol-api/src/test/java/org/amos/boot/system/precontrol/api/AppTest.java
0 → 100644
View file @
5cdb323e
package
org
.
amos
.
boot
.
system
.
precontrol
.
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-precontrol/amos-boot-system-precontrol-biz/.factorypath
0 → 100644
View file @
5cdb323e
This diff is collapsed.
Click to expand it.
amos-boot-system-precontrol/amos-boot-system-precontrol-biz/pom.xml
0 → 100644
View file @
5cdb323e
<?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-precontrol
</artifactId>
<version>
1.0.0
</version>
</parent>
<groupId>
com.amosframework.boot
</groupId>
<artifactId>
amos-boot-system-precontrol-biz
</artifactId>
<version>
1.0.0
</version>
<name>
amos-boot-system-precontrol-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-precontrol/amos-boot-system-precontrol-biz/src/main/java/org/amos/boot/system/precontrol/biz/App.java
0 → 100644
View file @
5cdb323e
package
org
.
amos
.
boot
.
system
.
precontrol
.
biz
;
/**
* Hello world!
*
*/
public
class
App
{
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
println
(
"Hello World!"
);
}
}
amos-boot-system-precontrol/amos-boot-system-precontrol-biz/src/test/java/org/amos/boot/system/precontrol/biz/AppTest.java
0 → 100644
View file @
5cdb323e
package
org
.
amos
.
boot
.
system
.
precontrol
.
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-precontrol/pom.xml
View file @
5cdb323e
<?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-biz-boot
</artifactId>
<version>
1.0.0
</version>
</parent>
<artifactId>
amos-boot-system-precontrol
</artifactId>
<name>
amos-boot-system-precontrol
</name>
<url>
http://maven.apache.org
</url>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
amos-boot-system-precontrol
</artifactId>
<parent>
<artifactId>
amos-biz-boot
</artifactId>
<groupId>
com.amosframework.boot
</groupId>
<version>
1.0.0
</version>
</parent>
<packaging>
pom
</packaging>
<dependencies>
<dependency>
<groupId>
com.amosframework.boot
</groupId>
...
...
@@ -26,12 +22,8 @@
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
</plugins>
</build>
<modules>
<module>
amos-boot-system-precontrol-api
</module>
<module>
amos-boot-system-precontrol-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