82 lines
2.3 KiB
XML
82 lines
2.3 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/maven-v4_0_0.xsd">
|
||
|
|
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<groupId>com.proy_final</groupId>
|
||
|
|
<artifactId>Proy_final_db</artifactId>
|
||
|
|
<version>0.0</version>
|
||
|
|
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<maven.compiler.source>17</maven.compiler.source>
|
||
|
|
<maven.compiler.target>17</maven.compiler.target>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
|
<version>8.0.33</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>net.sf.jasperreports</groupId>
|
||
|
|
<artifactId>jasperreports</artifactId>
|
||
|
|
<version>6.20.5</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.codehaus.mojo</groupId>
|
||
|
|
<artifactId>exec-maven-plugin</artifactId>
|
||
|
|
<version>3.0.0</version>
|
||
|
|
<configuration>
|
||
|
|
<mainClass>com.proy_final.Proy_final_db</mainClass>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<version>3.10.1</version>
|
||
|
|
<configuration>
|
||
|
|
<source>${maven.compiler.source}</source>
|
||
|
|
<target>${maven.compiler.target}</target>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
|
<version>3.5.0</version>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<phase>package</phase>
|
||
|
|
<goals>
|
||
|
|
<goal>shade</goal>
|
||
|
|
</goals>
|
||
|
|
<configuration>
|
||
|
|
<transformers>
|
||
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
||
|
|
<mainClass>com.proy_final.Proy_final_db</mainClass>
|
||
|
|
</transformer>
|
||
|
|
</transformers>
|
||
|
|
</configuration>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
</project>
|