Advertisement
Guest User

adfadsdds

a guest
Apr 26th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <project xmlns="http://maven.apache.org/POM/4.0.0" 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. <groupId>SniffingLines</groupId>
  8. <artifactId>sniffingLines</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <packaging>war</packaging>
  11.  
  12. <name>sniffingLines Maven Webapp</name>
  13. <!-- FIXME change it to the project's website -->
  14. <url>http://www.example.com</url>
  15.  
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <maven.compiler.source>1.7</maven.compiler.source>
  19. <maven.compiler.target>1.7</maven.compiler.target>
  20. </properties>
  21.  
  22. <dependencies>
  23. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  24. <dependency>
  25. <groupId>commons-io</groupId>
  26. <artifactId>commons-io</artifactId>
  27. <version>2.6</version>
  28. </dependency>
  29.  
  30. <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
  31. <dependency>
  32. <groupId>commons-fileupload</groupId>
  33. <artifactId>commons-fileupload</artifactId>
  34. <version>1.4</version>
  35. </dependency>
  36.  
  37.  
  38. <dependency>
  39. <groupId>com.github.javaparser</groupId>
  40. <artifactId>javaparser-core</artifactId>
  41. <version>3.12.0</version>
  42. </dependency>
  43.  
  44. <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
  45. <dependency>
  46. <groupId>javax.servlet</groupId>
  47. <artifactId>javax.servlet-api</artifactId>
  48. <version>4.0.1</version>
  49. <scope>provided</scope>
  50. </dependency>
  51.  
  52. </dependencies>
  53.  
  54. <build>
  55. <finalName>sniffingLines</finalName>
  56. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  57. <plugins>
  58. <plugin>
  59. <artifactId>maven-clean-plugin</artifactId>
  60. <version>3.1.0</version>
  61. </plugin>
  62. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  63. <plugin>
  64. <artifactId>maven-resources-plugin</artifactId>
  65. <version>3.0.2</version>
  66. </plugin>
  67. <plugin>
  68. <artifactId>maven-compiler-plugin</artifactId>
  69. <version>3.8.0</version>
  70. </plugin>
  71. <plugin>
  72. <artifactId>maven-surefire-plugin</artifactId>
  73. <version>2.22.1</version>
  74. </plugin>
  75. <plugin>
  76. <artifactId>maven-war-plugin</artifactId>
  77. <version>3.2.2</version>
  78. </plugin>
  79. <plugin>
  80. <artifactId>maven-install-plugin</artifactId>
  81. <version>2.5.2</version>
  82. </plugin>
  83. <plugin>
  84. <artifactId>maven-deploy-plugin</artifactId>
  85. <version>2.8.2</version>
  86. </plugin>
  87. </plugins>
  88. </pluginManagement>
  89. </build>
  90. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement