pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. <parent>
  5. <groupId>com.nokia</groupId>
  6. <artifactId>hb_springboot_parent</artifactId>
  7. <version>1.0</version>
  8. <relativePath/>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>pm_interface_5g</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>pm_interface_5g</name>
  14. <description>pm_interface_5g</description>
  15. <properties>
  16. <java.version>8</java.version>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <skipTests>true</skipTests>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-test</artifactId>
  29. <scope>test</scope>
  30. <exclusions>
  31. <exclusion>
  32. <groupId>org.junit.vintage</groupId>
  33. <artifactId>junit-vintage-engine</artifactId>
  34. </exclusion>
  35. </exclusions>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.projectlombok</groupId>
  39. <artifactId>lombok</artifactId>
  40. <scope>provided</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.commons</groupId>
  44. <artifactId>commons-csv</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.jcraft</groupId>
  48. <artifactId>jsch</artifactId>
  49. <version>0.1.55</version>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <finalName>pmInterface5g</finalName>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-maven-plugin</artifactId>
  58. <configuration>
  59. <includeSystemScope>true</includeSystemScope>
  60. </configuration>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </project>