diff options
author | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-06-26 11:06:19 +0200 |
---|---|---|
committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-06-26 11:06:19 +0200 |
commit | e38c5887682b13b7d9dadc822c02654939fc7401 (patch) | |
tree | 717b365d93436a19510110b5b8681a19118d26d6 | |
parent | f920b48762cae194d5a9f7808273826714166424 (diff) |
Adding the pom.xml and target folder created from mvn package.
-rw-r--r-- | dependency-reduced-pom.xml | 65 | ||||
-rw-r--r-- | pom.xml | 84 | ||||
-rw-r--r-- | target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml | 10 | ||||
-rw-r--r-- | target/maven-archiver/pom.properties | 5 | ||||
-rw-r--r-- | target/original-spoteezer-0.1.0.jar | bin | 0 -> 2014 bytes | |||
-rw-r--r-- | target/spoteezer-0.1.0.jar | bin | 0 -> 337540 bytes |
6 files changed, 164 insertions, 0 deletions
diff --git a/dependency-reduced-pom.xml b/dependency-reduced-pom.xml new file mode 100644 index 0000000..3b838f2 --- /dev/null +++ b/dependency-reduced-pom.xml @@ -0,0 +1,65 @@ +<?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>14</source> + <target>14</target> + </configuration> + </plugin> + </plugins> + </build> + <properties> + <maven.compiler.target>1.8</maven.compiler.target> + <maven.compiler.source>1.8</maven.compiler.source> + </properties> +</project> @@ -0,0 +1,84 @@ +<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <groupId>esiea.softwareengineering</groupId> + <artifactId>spoteezer</artifactId> + <packaging>jar</packaging> + <version>0.1.0</version> + <properties> + <maven.compiler.source>1.8</maven.compiler.source> + <maven.compiler.target>1.8</maven.compiler.target> + </properties> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <version>3.2.4</version> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <transformers> + <transformer + implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> + <mainClass>musichub.main.Main</mainClass> + </transformer> + </transformers> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <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> + <!-- attached to Maven test phase --> + <execution> + <id>report</id> + <phase>test</phase> + <goals> + <goal>report</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>14</source> + <target>14</target> + </configuration> + </plugin> + </plugins> + </build> + <dependencies> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-api</artifactId> + <version>5.0.2</version> + </dependency> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-engine</artifactId> + <version>5.0.2</version> + </dependency> + </dependencies> +</project>
\ No newline at end of file diff --git a/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml b/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml new file mode 100644 index 0000000..8b89c97 --- /dev/null +++ b/target/javadoc-bundle-options/javadoc-options-javadoc-resources.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<javadocOptions> + <docletArtifacts> + <docletArtifact /> + </docletArtifacts> + <tagletArtifacts> + <tagletArtifact /> + </tagletArtifacts> + <javadocResourcesDirectory>src/main/javadoc</javadocResourcesDirectory> +</javadocOptions> diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties new file mode 100644 index 0000000..24b2415 --- /dev/null +++ b/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Sat Jun 26 10:59:45 CEST 2021 +groupId=esiea.softwareengineering +artifactId=spoteezer +version=0.1.0 diff --git a/target/original-spoteezer-0.1.0.jar b/target/original-spoteezer-0.1.0.jar Binary files differnew file mode 100644 index 0000000..3850ad4 --- /dev/null +++ b/target/original-spoteezer-0.1.0.jar diff --git a/target/spoteezer-0.1.0.jar b/target/spoteezer-0.1.0.jar Binary files differnew file mode 100644 index 0000000..99be000 --- /dev/null +++ b/target/spoteezer-0.1.0.jar |