Guest User

Untitled

a guest
Sep 7th, 2016
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <packaging>war</packaging>
  8. <groupId>sk.csob.mas</groupId>
  9. <artifactId>cache-jboss-jcache-jsro107-poc</artifactId>
  10. <version>develop-SNAPSHOT</version>
  11.  
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. <version>1.4.0.RELEASE</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-cache</artifactId>
  21. <version>1.4.0.RELEASE</version>
  22. </dependency>
  23.  
  24. <dependency>
  25. <groupId>javax.cache</groupId>
  26. <artifactId>cache-api</artifactId>
  27. <version>1.0.0</version>
  28. </dependency>
  29.  
  30. <dependency>
  31. <groupId>javax.servlet</groupId>
  32. <artifactId>javax.servlet-api</artifactId>
  33. <version>3.1.0</version>
  34. <scope>provided</scope>
  35. </dependency>
  36.  
  37. </dependencies>
  38.  
  39. <profiles>
  40. <profile>
  41. <id>default</id>
  42. <activation>
  43. <activeByDefault>true</activeByDefault>
  44. </activation>
  45. <dependencies>
  46.  
  47. </dependencies>
  48. </profile>
  49. <profile>
  50. <id>WAR</id>
  51.  
  52. <dependencies>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-web</artifactId>
  56. <version>1.4.0.RELEASE</version>
  57. <exclusions>
  58. <exclusion>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-tomcat</artifactId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64.  
  65. <dependency>
  66. <groupId>org.infinispan</groupId>
  67. <artifactId>infinispan-jcache</artifactId>
  68. <version>8.2.4.Final</version>
  69. </dependency>
  70. </dependencies>
  71. </profile>
  72. </profiles>
  73.  
  74. <build>
  75. <plugins>
  76. <plugin>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-maven-plugin</artifactId>
  79. </plugin>
  80. <plugin>
  81. <groupId>org.apache.maven.plugins</groupId>
  82. <artifactId>maven-war-plugin</artifactId>
  83. <version>2.3</version>
  84. <configuration>
  85. <failOnMissingWebXml>false</failOnMissingWebXml>
  86. <outputDirectory>target</outputDirectory>
  87. <warName>ROOT</warName>
  88. </configuration>
  89. </plugin>
  90. </plugins>
  91. </build>
  92.  
  93. </project>
Advertisement
Add Comment
Please, Sign In to add comment