pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>jeesharp-module</artifactId>
  6. <groupId>org.jeesharp.module</groupId>
  7. <version>2.0.1.RELEASE</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>jeesharp-front</artifactId>
  11. <packaging>jar</packaging>
  12. <version>2.0.1.RELEASE</version>
  13. <name>jeesharp-front</name>
  14. <url>http://www.example.com</url>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <maven.compiler.source>1.8</maven.compiler.source>
  18. <maven.compiler.target>1.8</maven.compiler.target>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.jeesharp.platform</groupId>
  23. <artifactId>jeesharp-admin</artifactId>
  24. <version>${jeesharp.platform.version}</version>
  25. </dependency>
  26. </dependencies>
  27. </project>