Guest User

Untitled

a guest
May 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. <parent>
  2. <groupId>net.wasdev.maven.parent</groupId>
  3. <artifactId>java7-parent</artifactId>
  4. <version>1.4</version>
  5. <relativePath></relativePath>
  6. </parent>
  7.  
  8. <groupId>net.wasdev.wlp.sample</groupId>
  9. <artifactId>buyatibm-dev</artifactId>
  10. <version>1.0-SNAPSHOT</version>
  11. <packaging>war</packaging>
  12.  
  13. <name>Liberty Profile Sample - Servlet</name>
  14. <url>https://wasdev.github.io</url>
  15.  
  16. <licenses>
  17. <license>
  18. <name>The Apache Software License, Version 2.0</name>
  19. <url>https://raw.github.com/WASdev/sample.servlet/master/LICENSE</url>
  20. <distribution>repo</distribution>
  21. </license>
  22. </licenses>
  23.  
  24.  
  25. <dependencyManagement>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.apache.geronimo.specs</groupId>
  29. <artifactId>geronimo-servlet_3.0_spec</artifactId>
  30. <version>1.0</version>
  31. </dependency>
  32. </dependencies>
  33. </dependencyManagement>
  34.  
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.apache.geronimo.specs</groupId>
  38. <artifactId>geronimo-servlet_3.0_spec</artifactId>
  39. <scope>provided</scope>
  40. </dependency>
  41. </dependencies>
  42.  
  43. <build>
  44. <pluginManagement>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-war-plugin</artifactId>
  49. <configuration>
  50. <failOnMissingWebXml>false</failOnMissingWebXml>
  51. <warName>buyatibm-dev</warName>
  52. </configuration>
  53. </plugin>
  54. <plugin>
  55. <groupId>net.wasdev.wlp.maven.plugins</groupId>
  56. <artifactId>liberty-maven-plugin</artifactId>
  57. <version>1.2.1</version>
  58. </plugin>
  59. </plugins>
  60. </pluginManagement>
  61. <plugins>
  62. <plugin>
  63. <groupId>net.wasdev.wlp.maven.plugins</groupId>
  64. <artifactId>liberty-maven-plugin</artifactId>
  65. <configuration>
  66. <configFile>src/main/wlp/server.xml</configFile>
  67. <bootstrapProperties>
  68. <appLocation>../../../../../${project.build.finalName}</appLocation>
  69. </bootstrapProperties>
  70. </configuration>
  71. </plugin>
  72. </plugins>
  73. </build>
Add Comment
Please, Sign In to add comment