Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
zettastor committed Dec 30, 2022
0 parents commit fa60936
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# ignore all files except pom.xml
###################
*
!pom.xml
!.gitignore
27 changes: 27 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>root</artifactId>
<groupId>com.pengyun</groupId>
<version>1.0.0-OS-SNAPSHOT</version>
</parent>

<groupId>com.pengyun.lib</groupId>
<artifactId>lib-root</artifactId>
<version>1.0.0-OS-SNAPSHOT</version>
<packaging>pom</packaging>

<modules>
<!-- modules should be in the following order to satisfy dependencies -->
<module>pengyun-core</module>
<module>pengyun-database_core</module>
<module>pengyun-models</module>
<module>pengyun-dih_model</module>
<module>pengyun-dih_client</module>
<module>pengyun-query_log</module>
<module>pengyun-configuration_common</module>
<module>pengyun-monitor_common</module>
</modules>
</project>

0 comments on commit fa60936

Please sign in to comment.