step4
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.quantummaid.tutorials.basic-tutorial</groupId> <artifactId>step4</artifactId> <version>1.0.44</version> </dependency>
<?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> <parent> <groupId>de.quantummaid.tutorials.basic-tutorial</groupId> <artifactId>parent</artifactId> <version>1.0.44</version> </parent> <artifactId>step4</artifactId> <properties> <spotbugs.excludeFilterFile> ${project.basedir}/src/test/spotbugs/spotbugs-exclude.xml </spotbugs.excludeFilterFile> <checkstyle.suppressions.location> ${project.basedir}/src/test/checkstyle/checkstyle-suppressions.xml </checkstyle.suppressions.location> <dependency-update-file-checksum>8f6ea182969b0fcce9fae1bb13579713</dependency-update-file-checksum> <plugin-update-file-checksum>a9c106f16f2d959e2db68534062e7623</plugin-update-file-checksum> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>de.quantummaid.quantummaid</groupId> <artifactId>quantummaid-bom</artifactId> <version>1.1.1</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>1.5.21</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>de.quantummaid.quantummaid.packagings</groupId> <artifactId>quantummaid-essentials</artifactId> </dependency> <!-- Showcase start testdependency --> <dependency> <groupId>de.quantummaid.quantummaid.packagings</groupId> <artifactId>quantummaid-test-essentials</artifactId> <scope>test</scope> </dependency> <!-- Showcase end testdependency --> </dependencies> <build> <plugins> <!-- Showcase start mavenassemblyplugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <finalName>quantummaid-app</finalName> <appendAssemblyId>false</appendAssemblyId> <archive> <manifest> <mainClass> de.quantummaid.tutorials.WebService </mainClass> </manifest> </archive> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> </execution> </executions> </plugin> <!-- Showcase end mavenassemblyplugin --> </plugins> </build> </project>