1 Commits

Author SHA1 Message Date
b3f4455357 agregado de archivo de pruebaPantalla 2023-07-19 17:01:28 -03:00
2 changed files with 27 additions and 2 deletions

27
pruebaPantalla.xml Normal file
View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<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.example</groupId>
<artifactId>my-webapp</artifactId>
<version>1.0.0</version>
<packaging>war</packaging>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<!-- Aquí puedes agregar tus dependencias específicas -->
<!-- Ejemplo de dependencia de servlet-api -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>

View File

@@ -4,11 +4,9 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>My Web App</title> <title>My Web App</title>
</head> </head>
<body> <body>
<h1>Welcome to My Web App</h1> <h1>Welcome to My Web App</h1>
<h1>PRUEBA TEST</h1>
<p>This is a sample JSP page.</p> <p>This is a sample JSP page.</p>
<a href="hello">Say Hello</a> <a href="hello">Say Hello</a>
</body> </body>