Creación archivos

This commit is contained in:
Víctor Manuel Monge Morales 2025-02-12 08:24:45 -06:00
parent 615109a85f
commit 01ffefc262
2 changed files with 42 additions and 0 deletions
proyecto_ascii
pom.xml
src/main/java/com/proyectoascii/proyecto_ascii

22
proyecto_ascii/pom.xml Normal file
View File

@ -0,0 +1,22 @@
<?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.proyectoascii</groupId>
<artifactId>proyecto_ascii</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>20</maven.compiler.source>
<maven.compiler.target>20</maven.compiler.target>
<exec.mainClass>com.proyectoascii.proyecto_ascii.Proyecto_ascii</exec.mainClass>
</properties>
<dependencies>
<dependency>
<groupId>com.github.lalyos</groupId>
<artifactId>jfiglet</artifactId>
<version>0.0.9</version>
<type>jar</type>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,20 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
*/
package com.proyectoascii.proyecto_ascii;
/**
*
* @author USER
*/
import com.github.lalyos.jfiglet.FigletFont;
import java.io.File;
public class Proyecto_ascii {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}