Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
I
inet-doc-expand
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
INET-TWO
server
inet-doc-expand
Commits
dbb73923
Commit
dbb73923
authored
Aug 02, 2024
by
xuzhang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'INET0716' into 'master'
Inet0716 See merge request
!2
parents
8116f58d
f027690a
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
115 additions
and
0 deletions
+115
-0
.gitignore
dcs-doc-autotask-interface/.gitignore
+8
-0
HELP.md
dcs-doc-autotask-interface/HELP.md
+17
-0
pom.xml
dcs-doc-autotask-interface/pom.xml
+28
-0
AutoTaskService.java
...ace/src/main/java/com/yonde/dcs/task/AutoTaskService.java
+27
-0
AutoTaskServiceImpl.java
...src/main/java/com/yonde/dcs/task/AutoTaskServiceImpl.java
+28
-0
pom.xml
dcs-doc-core/pom.xml
+6
-0
pom.xml
pom.xml
+1
-0
No files found.
dcs-doc-autotask-interface/.gitignore
0 → 100644
View file @
dbb73923
target/
.idea/
*.iml
*.mvn
*mvnw
mvnw.cmd
log
*.log
\ No newline at end of file
dcs-doc-autotask-interface/HELP.md
0 → 100644
View file @
dbb73923
# Getting Started
### Reference Documentation
For further reference, please consider the following sections:
*
[
Official Apache Maven documentation
](
https://maven.apache.org/guides/index.html
)
*
[
Spring Boot Maven Plugin Reference Guide
](
https://docs.spring.io/spring-boot/3.3.2/maven-plugin
)
*
[
Create an OCI image
](
https://docs.spring.io/spring-boot/3.3.2/maven-plugin/build-image.html
)
### Maven Parent overrides
Due to Maven's design, elements are inherited from the parent POM to the project POM. While most of the inheritance is
fine, it also inherits unwanted elements like
`<license>`
and
`<developers>`
from the parent. To prevent this, the
project POM contains empty overrides for these elements. If you manually switch to a different parent and actually want
the inheritance, you need to remove those overrides.
dcs-doc-autotask-interface/pom.xml
0 → 100644
View file @
dbb73923
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<parent>
<groupId>
com.yonde.dcs
</groupId>
<artifactId>
dcs-doc
</artifactId>
<version>
4.1-RELEASE
</version>
</parent>
<artifactId>
dcs-doc-autotask-interface
</artifactId>
<name>
dcs-doc-autotask-interface
</name>
<description>
dcs-doc-autotask-interface
</description>
<version>
4.1-RELEASE
</version>
<properties>
<maven.compiler.source>
8
</maven.compiler.source>
<maven.compiler.target>
8
</maven.compiler.target>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
<dependencies>
</dependencies>
</project>
dcs-doc-autotask-interface/src/main/java/com/yonde/dcs/task/AutoTaskService.java
0 → 100644
View file @
dbb73923
package
com
.
yonde
.
dcs
.
task
;
import
java.util.List
;
import
java.util.Map
;
/**
* @program: inet-pdm-service
* @description: 自动任务服务接口
* @author: dang wei
* @create: 2021-09-27 09:41
*/
public
interface
AutoTaskService
{
void
test
(
String
number
,
String
name
);
void
test2
(
String
number
);
void
test3
();
String
test4
(
String
name
);
}
dcs-doc-autotask-interface/src/main/java/com/yonde/dcs/task/AutoTaskServiceImpl.java
0 → 100644
View file @
dbb73923
package
com
.
yonde
.
dcs
.
task
;
/**
* @author wyy
* @date 2024-8-2 10:06
* @describe
*/
public
class
AutoTaskServiceImpl
implements
AutoTaskService
{
@Override
public
void
test
(
String
number
,
String
name
)
{
}
@Override
public
void
test2
(
String
number
)
{
}
@Override
public
void
test3
()
{
}
@Override
public
String
test4
(
String
name
)
{
return
null
;
}
}
dcs-doc-core/pom.xml
View file @
dbb73923
...
...
@@ -82,6 +82,12 @@
<groupId>
com.yonde.dex
</groupId>
<artifactId>
dex-initialization-rule-runtime
</artifactId>
</dependency>
<dependency>
<groupId>
com.yonde.dcs
</groupId>
<artifactId>
dcs-doc-autotask-interface
</artifactId>
<version>
4.1-RELEASE
</version>
</dependency>
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-test
</artifactId>
...
...
pom.xml
View file @
dbb73923
...
...
@@ -20,6 +20,7 @@
<module>
dcs-doc-server
</module>
<module>
dcs-doc-build-lib
</module>
<module>
dcs-doc-build-thirdLib
</module>
<module>
dcs-doc-autotask-interface
</module>
</modules>
<properties>
<java.version>
1.8
</java.version>
...
...
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