john_1726

Untitled

Nov 2nd, 2022
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.93 KB | None | 0 0
  1. `<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>ec.lab</groupId>
  4. <artifactId>cp630-lab3</artifactId>
  5. <packaging>pom</packaging>
  6. <version>0.1.0</version>
  7. <modules>
  8. <module>ec-app</module>
  9. <module>ec-app-client</module>
  10. <module>ec-web</module>
  11. <module>ec-jsf</module>
  12. <module>ec-jsp</module>
  13. <module>ec-jpa-jsf</module>
  14. </modules>
  15. <properties>
  16. <root.dir>${project.basedir}</root.dir>
  17. <jboss.home.name>JBOSS_HOME</jboss.home.name>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <maven.compiler.target>1.8</maven.compiler.target>
  20. <maven.compiler.source>1.8</maven.compiler.source>
  21. <version.server.bom>18.0.1.Final</version.server.bom>
  22. <version.wildfly.maven.plugin>2.0.0.Final</version.wildfly.maven.plugin>
  23. <version.jaxws-tools-maven-plugin>1.2.3.Final</version.jaxws-tools-maven-plugin>
  24. </properties>
  25. <dependencyManagement>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.wildfly.bom</groupId>
  29. <artifactId>wildfly-jakartaee8-with-tools</artifactId>
  30. <version>${version.server.bom}</version>
  31. <type>pom</type>
  32. <scope>import</scope>
  33. </dependency>
  34. </dependencies>
  35. </dependencyManagement>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.jboss.logging</groupId>
  39. <artifactId>jboss-logging</artifactId>
  40. <scope>provided</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>jakarta.enterprise</groupId>
  44. <artifactId>jakarta.enterprise.cdi-api</artifactId>
  45. <scope>provided</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.jboss.spec.javax.annotation</groupId>
  49. <artifactId>jboss-annotations-api_1.3_spec</artifactId>
  50. <scope>provided</scope>
  51. </dependency>
  52. </dependencies>
  53. <build>
  54. <finalName>${project.artifactId}</finalName>
  55. <pluginManagement>
  56. <plugins>
  57. <plugin>
  58. <groupId>org.wildfly.plugins</groupId>
  59. <artifactId>wildfly-maven-plugin</artifactId>
  60. <version>2.0.1.Final</version>
  61. </plugin>
  62. </plugins>
  63. </pluginManagement>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.wildfly.plugins</groupId>
  67. <artifactId>wildfly-maven-plugin</artifactId>
  68. <configuration>
  69. <skip>true</skip>
  70. </configuration>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>`
Advertisement
Add Comment
Please, Sign In to add comment