Skip to content

Instantly share code, notes, and snippets.

@XixoWreden
Created January 13, 2020 17:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save XixoWreden/9d94e0382ef6c22c54086286cc87fc69 to your computer and use it in GitHub Desktop.
Save XixoWreden/9d94e0382ef6c22c54086286cc87fc69 to your computer and use it in GitHub Desktop.
Pom detallado sencillo y sin dependencias de ejemplo.
<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.xixo.testing</groupId>
<artifactId>simple-maven-project-for-all-testing</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>Simple Maven Project for Testing</name>
<description>Testing all question</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- <dependency> -->
<!-- <groupId></groupId> -->
<!-- <artifactId></artifactId> -->
<!-- <version></version> -->
<!-- <scope></scope> -->
<!-- </dependency> -->
</dependencies>
</project>
@XixoWreden
Copy link
Author

Estructura de carpetas del proyecto
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment