Skip to content
This repository has been archived by the owner on Jul 17, 2023. It is now read-only.

Commit

Permalink
CTG-15: Merge runtime dependency bundling for extension.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmuehlner authored Jun 10, 2019
2 parents 2987923 + 1fe83d2 commit b6f7d76
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<groupId>com.glyptodon.guacamole</groupId>
<artifactId>guacamole-auth-restrict</artifactId>
<packaging>jar</packaging>
<version>1.0.0-2</version>
<version>1.0.0-3</version>
<name>guacamole-auth-restrict</name>
<url>https://glyptodon.com/</url>

Expand All @@ -56,6 +56,26 @@
</configuration>
</plugin>

<!-- Copy dependencies prior to packaging -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
<executions>
<execution>
<id>unpack-dependencies</id>
<phase>prepare-package</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<includeScope>runtime</includeScope>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>

<!-- Pre-cache Angular templates -->
<plugin>
<groupId>com.keithbranton.mojo</groupId>
Expand Down

0 comments on commit b6f7d76

Please sign in to comment.