1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.yihu.jw</groupId>
- <artifactId>wlyy-parent-pom</artifactId>
- <version>2.4.0</version>
- <relativePath>../../wlyy-lib-parent-pom/pom.xml</relativePath>
- </parent>
- <artifactId>commons-web</artifactId>
- <packaging>jar</packaging>
- <dependencies>
- <!-- true -->
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-webmvc</artifactId>
- </dependency>
- <dependency>
- <groupId>io.github.openfeign</groupId>
- <artifactId>feign-core</artifactId>
- </dependency>
- <dependency>
- <groupId>com.yihu.jw</groupId>
- <artifactId>commons-ehr-constants</artifactId>
- <version>2.4.0</version>
- </dependency>
- <dependency>
- <groupId>com.yihu.jw</groupId>
- <artifactId>commons-util</artifactId>
- <version>2.4.0</version>
- </dependency>
- <dependency>
- <groupId>com.yihu.jw</groupId>
- <artifactId>commons-profile-core</artifactId>
- <version>2.4.0</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|