pom.xml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.tofly</groupId>
  7. <artifactId>ylsw</artifactId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <groupId>com.tofly</groupId>
  11. <artifactId>admin</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>ylsw-admin</name>
  14. <description>权限 + 认证</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.tofly</groupId>
  18. <artifactId>extend-standard</artifactId>
  19. </dependency>
  20. </dependencies>
  21. <build>
  22. <finalName>ylsw-admin</finalName>
  23. <plugins>
  24. <plugin>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-maven-plugin</artifactId>
  27. </plugin>
  28. </plugins>
  29. </build>
  30. </project>