Browse Source

添加 commons openapi

dev
jianjun 4 years ago
parent
commit
dfaf657c44
  1. 2
      epmet-commons/epmet-commons-openapi/pom.xml
  2. 2
      epmet-commons/epmet-commons-openapi/src/main/java/com/epmet/openapi/HeaderFieldKeys.java
  3. 2
      epmet-commons/epmet-commons-openapi/src/main/java/com/epmet/openapi/RequestBodyFieldKeys.java
  4. 2
      epmet-commons/epmet-commons-openapi/src/main/java/com/epmet/openapi/RequestParamKeys.java
  5. 3
      epmet-commons/pom.xml
  6. 1
      epmet-gateway/pom.xml

2
epmet-commons/epmet-commons-openapi/pom.xml

@ -2,8 +2,6 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<version>2.0.0</version>
<parent> <parent>
<artifactId>epmet-commons</artifactId> <artifactId>epmet-commons</artifactId>
<groupId>com.epmet</groupId> <groupId>com.epmet</groupId>

2
epmet-commons/epmet-commons-openapi/src/main/java/com/epmet/commons/openapi/constants/HeaderFieldKeys.java → epmet-commons/epmet-commons-openapi/src/main/java/com/epmet/openapi/HeaderFieldKeys.java

@ -1,4 +1,4 @@
package com.epmet.commons.openapi.constants; package com.epmet.openapi;
public interface HeaderFieldKeys { public interface HeaderFieldKeys {

2
epmet-commons/epmet-commons-openapi/src/main/java/com/epmet/commons/openapi/constants/RequestBodyFieldKeys.java → epmet-commons/epmet-commons-openapi/src/main/java/com/epmet/openapi/RequestBodyFieldKeys.java

@ -1,4 +1,4 @@
package com.epmet.commons.openapi.constants; package com.epmet.openapi;
/** /**
* 请求体字段key * 请求体字段key

2
epmet-commons/epmet-commons-openapi/src/main/java/com/epmet/commons/openapi/constants/RequestParamKeys.java → epmet-commons/epmet-commons-openapi/src/main/java/com/epmet/openapi/RequestParamKeys.java

@ -1,4 +1,4 @@
package com.epmet.commons.openapi.constants; package com.epmet.openapi;
/** /**
* url请求参数key * url请求参数key

3
epmet-commons/pom.xml

@ -26,6 +26,7 @@
<module>epmet-commons-thirdplat</module> <module>epmet-commons-thirdplat</module>
<module>epmet-commons-rocketmq</module> <module>epmet-commons-rocketmq</module>
<module>epmet-commons-security</module> <module>epmet-commons-security</module>
</modules> <module>epmet-commons-openapi</module>
</modules>
</project> </project>

1
epmet-gateway/pom.xml

@ -74,6 +74,7 @@
<groupId>com.epmet</groupId> <groupId>com.epmet</groupId>
<artifactId>epmet-commons-openapi</artifactId> <artifactId>epmet-commons-openapi</artifactId>
<version>2.0.0</version> <version>2.0.0</version>
<scope>compile</scope>
</dependency> </dependency>
</dependencies> </dependencies>

Loading…
Cancel
Save