1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
- 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>wt-service-okr</artifactId>
- <groupId>org.springblade</groupId>
- <version>2.9.1.RELEASE</version>
- </parent>
- <artifactId>blade-service-api</artifactId>
- <packaging>pom</packaging>
- <name>blade-service-api</name>
- <version>2.9.1.RELEASE</version>
- <modules>
- <module>wt-okr-api</module>
- </modules>
- <dependencies>
- <dependency>
- <groupId>org.springblade</groupId>
- <artifactId>blade-starter-mybatis</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springblade</groupId>
- <artifactId>blade-starter-tenant</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-openfeign</artifactId>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger2</artifactId>
- <exclusions>
- <exclusion>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-models</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-models</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springblade</groupId>
- <artifactId>blade-core-auto</artifactId>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- <finalName>${project.name}</finalName>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|