Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- `<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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>ec.lab</groupId>
- <artifactId>cp630-lab3</artifactId>
- <packaging>pom</packaging>
- <version>0.1.0</version>
- <modules>
- <module>ec-app</module>
- <module>ec-app-client</module>
- <module>ec-web</module>
- <module>ec-jsf</module>
- <module>ec-jsp</module>
- <module>ec-jpa-jsf</module>
- </modules>
- <properties>
- <root.dir>${project.basedir}</root.dir>
- <jboss.home.name>JBOSS_HOME</jboss.home.name>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.compiler.target>1.8</maven.compiler.target>
- <maven.compiler.source>1.8</maven.compiler.source>
- <version.server.bom>18.0.1.Final</version.server.bom>
- <version.wildfly.maven.plugin>2.0.0.Final</version.wildfly.maven.plugin>
- <version.jaxws-tools-maven-plugin>1.2.3.Final</version.jaxws-tools-maven-plugin>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.wildfly.bom</groupId>
- <artifactId>wildfly-jakartaee8-with-tools</artifactId>
- <version>${version.server.bom}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.jboss.logging</groupId>
- <artifactId>jboss-logging</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>jakarta.enterprise</groupId>
- <artifactId>jakarta.enterprise.cdi-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.jboss.spec.javax.annotation</groupId>
- <artifactId>jboss-annotations-api_1.3_spec</artifactId>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <build>
- <finalName>${project.artifactId}</finalName>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.wildfly.plugins</groupId>
- <artifactId>wildfly-maven-plugin</artifactId>
- <version>2.0.1.Final</version>
- </plugin>
- </plugins>
- </pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.wildfly.plugins</groupId>
- <artifactId>wildfly-maven-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>`
Advertisement
Add Comment
Please, Sign In to add comment