thorp/app/pom.xml
dependabot[bot] 9e9844d35b Bump maven-assembly-plugin from 3.3.0 to 3.4.2
Bumps [maven-assembly-plugin](https://github.com/apache/maven-assembly-plugin) from 3.3.0 to 3.4.2.
- [Release notes](https://github.com/apache/maven-assembly-plugin/releases)
- [Commits](https://github.com/apache/maven-assembly-plugin/compare/maven-assembly-plugin-3.3.0...maven-assembly-plugin-3.4.2)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-assembly-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

commit-id:39648907
2022-12-03 11:48:22 +00:00

78 lines
No EOL
2.5 KiB
XML

<project xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.kemitix.thorp</groupId>
<artifactId>thorp-parent</artifactId>
<version>2.0.1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<artifactId>thorp</artifactId>
<name>thorp</name>
<dependencies>
<!-- thorp -->
<dependency>
<groupId>net.kemitix.thorp</groupId>
<artifactId>thorp-cli</artifactId>
</dependency>
<dependency>
<groupId>net.kemitix.thorp</groupId>
<artifactId>thorp-config</artifactId>
</dependency>
<dependency>
<groupId>net.kemitix.thorp</groupId>
<artifactId>thorp-domain</artifactId>
</dependency>
<dependency>
<groupId>net.kemitix.thorp</groupId>
<artifactId>thorp-filesystem</artifactId>
</dependency>
<dependency>
<groupId>net.kemitix.thorp</groupId>
<artifactId>thorp-lib</artifactId>
</dependency>
<dependency>
<groupId>net.kemitix.thorp</groupId>
<artifactId>thorp-storage</artifactId>
</dependency>
<dependency>
<groupId>net.kemitix.thorp</groupId>
<artifactId>thorp-storage-aws</artifactId>
</dependency>
<dependency>
<groupId>net.kemitix.thorp</groupId>
<artifactId>thorp-uishell</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.4.2</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>net.kemitix.thorp.Main</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>