Skip to content

Commit

Permalink
Merge pull request #1 from zaqweb/master
Browse files Browse the repository at this point in the history
add pom
  • Loading branch information
zaqweb authored Jun 26, 2019
2 parents 4382b75 + a57f285 commit f6389f4
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@
# Mobile Tools for Java (J2ME)
.mtj.tmp/

# idea folder
.idea/

# idea project file
**/*.iml

# Package Files #
*.jar
*.war
Expand Down
25 changes: 25 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?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>

<groupId>co.topc.base</groupId>
<artifactId>base-project</artifactId>
<packaging>pom</packaging>
<version>1.0.0</version>
<name>Topc Base Project</name>
<description>Topc Base Project</description>
<properties>

<main.basedir>${basedir}/..</main.basedir>

</properties>

<modules>
<module>topc-base-dependencies</module>
</modules>
</project>

36 changes: 36 additions & 0 deletions topc-base-dependencies/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?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>base-project</artifactId>
<groupId>co.topc.base</groupId>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>topc-base-dependencies</artifactId>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<scm>
<url>https://github.com/topc-co/topc-base-project</url>
</scm>
<developers>
<developer>
<name>Eric</name>
<email>[email protected]</email>
<organization>Topc (ShenZhen) Technology co,. LTD</organization>
<organizationUrl>https://www.topc.co</organizationUrl>
</developer>
</developers>

<properties>
<main.basedir>${basedir}/../..</main.basedir>
</properties>

</project>

0 comments on commit f6389f4

Please sign in to comment.