aboutsummaryrefslogtreecommitdiff
path: root/dependency-reduced-pom.xml
diff options
context:
space:
mode:
authorClyhtsuriva <aimeric@adjutor.xyz>2021-06-26 13:32:26 +0200
committerClyhtsuriva <aimeric@adjutor.xyz>2021-06-26 13:32:26 +0200
commit8e13dba6e1c39dd841d60fddc3c4060f9b4a4b85 (patch)
tree0eb51661c95078630a3ed47205d2c1ed1c537383 /dependency-reduced-pom.xml
parent443140cfbde040afd3f1b279c77e2b8d61765c85 (diff)
Removed reduced pom and added the content of STZ-0001 with a switch modif.
Diffstat (limited to 'dependency-reduced-pom.xml')
-rw-r--r--dependency-reduced-pom.xml67
1 files changed, 0 insertions, 67 deletions
diff --git a/dependency-reduced-pom.xml b/dependency-reduced-pom.xml
deleted file mode 100644
index de729db..0000000
--- a/dependency-reduced-pom.xml
+++ /dev/null
@@ -1,67 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
- 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>esiea.softwareengineering</groupId>
- <artifactId>spoteezer</artifactId>
- <version>0.1.0</version>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-shade-plugin</artifactId>
- <version>3.2.4</version>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
- <transformers>
- <transformer>
- <mainClass>musichub.main.Main</mainClass>
- </transformer>
- </transformers>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.22.0</version>
- </plugin>
- <plugin>
- <groupId>org.jacoco</groupId>
- <artifactId>jacoco-maven-plugin</artifactId>
- <version>0.8.7</version>
- <executions>
- <execution>
- <goals>
- <goal>prepare-agent</goal>
- </goals>
- </execution>
- <execution>
- <id>report</id>
- <phase>test</phase>
- <goals>
- <goal>report</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>16</source>
- <target>16</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <properties>
- <maven.compiler.release>16</maven.compiler.release>
- <maven.compiler.target>16</maven.compiler.target>
- <java.version>16</java.version>
- <maven.compiler.source>16</maven.compiler.source>
- </properties>
-</project>