Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,14 @@ dist/
nbdist/
.nb-gradle/

### IDE Config ###
.run/
.xcodemap/

### AI Tools ###
.qwen/

### Misc ###
Action/
**/pom-xml-flattened

26 changes: 26 additions & 0 deletions base/base-error/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,32 @@
<name>Base-Error</name>
<description>错误码定义模块</description>
<url>https://github.com/ACANX/MetaOpen</url>
<inceptionYear>2026</inceptionYear>

<scm>
<tag>V0.8.x</tag>
<url>git@github.com:ACANX/MetaOpen.git</url>
<connection>scm:git:git@github.com:ACANX/MetaOpen.git</connection>
<developerConnection>scm:git:git@github.com:ACANX/MetaOpen.git</developerConnection>
</scm>
<organization>
<name>ACANX</name>
<url>https://acanx.com</url>
</organization>
<developers>
<developer>
<name>ACANX</name>
<email>acanx@qq.com</email>
<organization>ACANX</organization>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.acanx.meta.base;
package com.acanx.meta.base.error;

/**
* BaseErrorCode
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.acanx.meta.base;
package com.acanx.meta.base.error;

/**
* ErrorCode
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.acanx.meta.base;
package com.acanx.meta.base.error;

/**
* SystemError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
* 提供统一的错误码定义和错误信息管理
* </p>
*/
package com.acanx.meta.base;
package com.acanx.meta.base.error;
28 changes: 27 additions & 1 deletion base/base-exception/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,32 @@
<name>Base-Exception</name>
<description>异常类定义模块</description>
<url>https://github.com/ACANX/MetaOpen</url>
<inceptionYear>2026</inceptionYear>

<scm>
<tag>V0.8.x</tag>
<url>git@github.com:ACANX/MetaOpen.git</url>
<connection>scm:git:git@github.com:ACANX/MetaOpen.git</connection>
<developerConnection>scm:git:git@github.com:ACANX/MetaOpen.git</developerConnection>
</scm>
<organization>
<name>ACANX</name>
<url>https://acanx.com</url>
</organization>
<developers>
<developer>
<name>ACANX</name>
<email>acanx@qq.com</email>
<organization>ACANX</organization>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -46,4 +72,4 @@
</plugins>
</build>

</project>
</project>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.acanx.meta.base;
package com.acanx.meta.base.exception;

/**
* BaseException
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.acanx.meta.base;
package com.acanx.meta.base.exception;

import java.util.HashMap;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.acanx.meta.base;
package com.acanx.meta.base.exception;

/**
* SystemException
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
* 提供统一的业务异常和系统异常定义
* </p>
*/
package com.acanx.meta.base;
package com.acanx.meta.base.exception;
28 changes: 27 additions & 1 deletion base/base-page/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,32 @@
<name>Base-Page</name>
<description>分页工具模块</description>
<url>https://github.com/ACANX/MetaOpen</url>
<inceptionYear>2026</inceptionYear>

<scm>
<tag>V0.8.x</tag>
<url>git@github.com:ACANX/MetaOpen.git</url>
<connection>scm:git:git@github.com:ACANX/MetaOpen.git</connection>
<developerConnection>scm:git:git@github.com:ACANX/MetaOpen.git</developerConnection>
</scm>
<organization>
<name>ACANX</name>
<url>https://acanx.com</url>
</organization>
<developers>
<developer>
<name>ACANX</name>
<email>acanx@qq.com</email>
<organization>ACANX</organization>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -40,4 +66,4 @@
</plugins>
</build>

</project>
</project>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.acanx.meta.base;
package com.acanx.meta.base.page;

import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.acanx.meta.base;
package com.acanx.meta.base.page;

import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.acanx.meta.base;
package com.acanx.meta.base.page;

/**
* 分页接口
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
* 提供统一的分页请求和响应对象定义
* </p>
*/
package com.acanx.meta.base;
package com.acanx.meta.base.page;
Loading