Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dlink
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
zhaowei
dlink
Commits
6fd1a0fe
Commit
6fd1a0fe
authored
Mar 02, 2022
by
wenmo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
deamon module
parent
0fb8e527
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
52 additions
and
1 deletion
+52
-1
pom.xml
dlink-core/pom.xml
+1
-1
pom.xml
dlink-deamon/pom.xml
+25
-0
Deamon.java
dlink-deamon/src/main/java/com.dlink.deamon/Deamon.java
+10
-0
DeamonTest.java
dlink-deamon/src/test/java/com/dlink/deamon/DeamonTest.java
+10
-0
pom.xml
pom.xml
+6
-0
No files found.
dlink-core/pom.xml
View file @
6fd1a0fe
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
<maven.compiler.source>
1.8
</maven.compiler.source>
<maven.compiler.source>
1.8
</maven.compiler.source>
<maven.compiler.target>
1.8
</maven.compiler.target>
<maven.compiler.target>
1.8
</maven.compiler.target>
<!-- `provided` for product environment ,`compile` for dev environment -->
<!-- `provided` for product environment ,`compile` for dev environment -->
<scope.runtime>
compile
</scope.runtime>
<scope.runtime>
provided
</scope.runtime>
</properties>
</properties>
<dependencies>
<dependencies>
...
...
dlink-deamon/pom.xml
0 → 100644
View file @
6fd1a0fe
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<parent>
<artifactId>
dlink
</artifactId>
<groupId>
com.dlink
</groupId>
<version>
0.6.0-SNAPSHOT
</version>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
dlink-deamon
</artifactId>
<properties>
<maven.compiler.source>
8
</maven.compiler.source>
<maven.compiler.target>
8
</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>
com.dlink
</groupId>
<artifactId>
dlink-common
</artifactId>
</dependency>
</dependencies>
</project>
\ No newline at end of file
dlink-deamon/src/main/java/com.dlink.deamon/Deamon.java
0 → 100644
View file @
6fd1a0fe
package
com
.
dlink
.
deamon
;
/**
* Deamon
*
* @author wenmo
* @since 2022/3/2 23:31
*/
public
interface
Deamon
{
}
dlink-deamon/src/test/java/com/dlink/deamon/DeamonTest.java
0 → 100644
View file @
6fd1a0fe
package
com
.
dlink
.
deamon
;
/**
* DeamonTest
*
* @author wenmo
* @since 2022/3/2 23:31
*/
public
class
DeamonTest
{
}
pom.xml
View file @
6fd1a0fe
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
<module>
dlink-admin
</module>
<module>
dlink-admin
</module>
<module>
dlink-assembly
</module>
<module>
dlink-assembly
</module>
<module>
dlink-alert
</module>
<module>
dlink-alert
</module>
<module>
dlink-deamon
</module>
</modules>
</modules>
...
@@ -266,6 +267,11 @@
...
@@ -266,6 +267,11 @@
<artifactId>
dlink-alert-base
</artifactId>
<artifactId>
dlink-alert-base
</artifactId>
<version>
${project.version}
</version>
<version>
${project.version}
</version>
</dependency>
</dependency>
<dependency>
<groupId>
com.dlink
</groupId>
<artifactId>
dlink-deamon
</artifactId>
<version>
${project.version}
</version>
</dependency>
<dependency>
<dependency>
<groupId>
org.apache.httpcomponents
</groupId>
<groupId>
org.apache.httpcomponents
</groupId>
<artifactId>
httpclient
</artifactId>
<artifactId>
httpclient
</artifactId>
...
...
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