ASDV-WebDev/Semester 2/LabJuneauValidateUserInput/pom.xml
Caleb Fontenot 778965c800 Sleepy WebDev
modified:   .gitignore
	new file:   Semester 2/LabJuneauValidateUserInput/Printed HTMLs/Company.html
	new file:   Semester 2/LabJuneauValidateUserInput/Printed HTMLs/Employee.html
	new file:   Semester 2/LabJuneauValidateUserInput/Printed HTMLs/EmployeeController.html
	new file:   Semester 2/LabJuneauValidateUserInput/Printed HTMLs/EmployeeInterface.html
	new file:   Semester 2/LabJuneauValidateUserInput/Printed HTMLs/EmployeeTitleValidate.html
	new file:   Semester 2/LabJuneauValidateUserInput/Printed HTMLs/index.html
	new file:   Semester 2/LabJuneauValidateUserInput/nb-configuration.xml
	new file:   Semester 2/LabJuneauValidateUserInput/pom.xml
	new file:   Semester 2/LabJuneauValidateUserInput/src/main/java/com/pap/exam/labjuneauvalidateuserinput/JakartaRestConfiguration.java
	new file:   Semester 2/LabJuneauValidateUserInput/src/main/java/com/pap/exam/labjuneauvalidateuserinput/resources/JakartaEE9Resource.java
	new file:   Semester 2/LabJuneauValidateUserInput/src/main/java/edu/slcc/asdv/beans/EmployeeController.java
	new file:   Semester 2/LabJuneauValidateUserInput/src/main/java/edu/slcc/asdv/bl/Company.java
	new file:   Semester 2/LabJuneauValidateUserInput/src/main/java/edu/slcc/asdv/bl/Employee.java
	new file:   Semester 2/LabJuneauValidateUserInput/src/main/java/edu/slcc/asdv/bl/EmployeeInterface.java
	new file:   Semester 2/LabJuneauValidateUserInput/src/main/java/edu/slcc/asdv/validators/EmployeeTitleValidate.java
	new file:   Semester 2/LabJuneauValidateUserInput/src/main/resources/META-INF/persistence.xml
	new file:   Semester 2/LabJuneauValidateUserInput/src/main/webapp/WEB-INF/beans.xml
	new file:   Semester 2/LabJuneauValidateUserInput/src/main/webapp/WEB-INF/glassfish-web.xml
	new file:   Semester 2/LabJuneauValidateUserInput/src/main/webapp/WEB-INF/web.xml
	new file:   Semester 2/LabJuneauValidateUserInput/src/main/webapp/index.xhtml
	new file:   Semester 2/LabJuneauValidateUserInput/src/main/webapp/resources/css/1.css
	new file:   Semester 2/LabJuneauValidateUserInput/src/main/webapp/resources/images/1.png
	modified:   Semester 2/LabJuneauValidateUserInput_CalebFontenot/src/main/java/bl/Company.java
	deleted:    Semester 2/ZIPs/LabJuneauValidateUserInput_CalebFontenot.zip
2023-10-02 13:30:01 -05:00

77 lines
3.1 KiB
XML

<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.pap.exam</groupId>
<artifactId>LabJuneauValidateUserInput</artifactId>
<version>1.0</version>
<packaging>war</packaging>
<name>LabJuneauValidateUserInput-1.0</name>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<failOnMissingWebXml>false</failOnMissingWebXml>
<jakartaee>9.0.0</jakartaee>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>${jakartaee}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArguments>
<endorseddirs>${endorsed.dir}</endorseddirs>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<outputDirectory>${endorsed.dir}</outputDirectory>
<silent>true</silent>
<artifactItems>
<artifactItem>
<groupId>jakarta.platform</groupId>
<artifactId>jakarta.jakartaee-api</artifactId>
<version>${jakartaee}</version>
<type>jar</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>