pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>id.co.hanoman.ngdemo</groupId>
  5. <artifactId>ngdemo-domain</artifactId>
  6. <version>1.0.0</version>
  7. <parent>
  8. <groupId>com.senomas.boot</groupId>
  9. <artifactId>senomas-boot</artifactId>
  10. <version>1.0.2</version>
  11. </parent>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.senomas.boot</groupId>
  15. <artifactId>senomas-boot-security</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.senomas.boot</groupId>
  19. <artifactId>senomas-boot-util</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-data-jpa</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.mongodb</groupId>
  31. <artifactId>mongo-java-driver</artifactId>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <defaultGoal>install</defaultGoal>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-compiler-plugin</artifactId>
  40. <configuration>
  41. <source>1.8</source>
  42. <target>1.8</target>
  43. </configuration>
  44. </plugin>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-resources-plugin</artifactId>
  48. <configuration>
  49. <encoding>UTF-8</encoding>
  50. </configuration>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. <repositories>
  55. <repository>
  56. <id>senomas</id>
  57. <url>http://maven.senomas.com/content/repositories/releases/</url>
  58. <releases>
  59. <enabled>true</enabled>
  60. </releases>
  61. </repository>
  62. <repository>
  63. <id>senomas-snapshots</id>
  64. <url>http://maven.senomas.com/content/repositories/snapshots/</url>
  65. <snapshots>
  66. <enabled>true</enabled>
  67. <updatePolicy>always</updatePolicy>
  68. </snapshots>
  69. </repository>
  70. </repositories>
  71. </project>