mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
Modify noauth to support same .tar.gz distribution as other extensions.
This commit is contained in:
@@ -1,4 +0,0 @@
|
|||||||
# Add these two lines to your guacamole.properties file
|
|
||||||
|
|
||||||
auth-provider: net.sourceforge.guacamole.net.auth.noauth.NoAuthenticationProvider
|
|
||||||
noauth-config: /etc/guacamole/noauth-config.xml
|
|
@@ -15,6 +15,7 @@
|
|||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
|
||||||
<!-- Written for 1.6 -->
|
<!-- Written for 1.6 -->
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
@@ -24,10 +25,34 @@
|
|||||||
<target>1.6</target>
|
<target>1.6</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
<!-- Assembly plugin - for easy distribution -->
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
|
<version>2.2-beta-5</version>
|
||||||
|
<configuration>
|
||||||
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
||||||
|
<appendAssemblyId>false</appendAssemblyId>
|
||||||
|
<descriptors>
|
||||||
|
<descriptor>src/main/assembly/dist.xml</descriptor>
|
||||||
|
</descriptors>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>make-dist-archive</id>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>single</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
||||||
<!-- SLF4J - logging -->
|
<!-- SLF4J - logging -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.slf4j</groupId>
|
<groupId>org.slf4j</groupId>
|
||||||
@@ -54,6 +79,7 @@
|
|||||||
<artifactId>guacamole-ext</artifactId>
|
<artifactId>guacamole-ext</artifactId>
|
||||||
<version>0.8.1</version>
|
<version>0.8.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
48
extensions/guacamole-auth-noauth/src/main/assembly/dist.xml
Normal file
48
extensions/guacamole-auth-noauth/src/main/assembly/dist.xml
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
<assembly
|
||||||
|
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
|
||||||
|
|
||||||
|
<id>dist</id>
|
||||||
|
<baseDirectory>${project.artifactId}-${project.version}</baseDirectory>
|
||||||
|
|
||||||
|
<!-- Output tar.gz -->
|
||||||
|
<formats>
|
||||||
|
<format>tar.gz</format>
|
||||||
|
</formats>
|
||||||
|
|
||||||
|
<!-- Include docs and schema -->
|
||||||
|
<fileSets>
|
||||||
|
|
||||||
|
<!-- Include docs -->
|
||||||
|
<fileSet>
|
||||||
|
<outputDirectory>/</outputDirectory>
|
||||||
|
<directory>doc</directory>
|
||||||
|
</fileSet>
|
||||||
|
|
||||||
|
</fileSets>
|
||||||
|
|
||||||
|
<!-- Include self and all dependencies except guacamole-common
|
||||||
|
and guacamole-ext -->
|
||||||
|
<dependencySets>
|
||||||
|
<dependencySet>
|
||||||
|
|
||||||
|
<outputDirectory>/lib</outputDirectory>
|
||||||
|
<scope>runtime</scope>
|
||||||
|
<unpack>false</unpack>
|
||||||
|
<useProjectArtifact>true</useProjectArtifact>
|
||||||
|
<useTransitiveFiltering>true</useTransitiveFiltering>
|
||||||
|
|
||||||
|
<excludes>
|
||||||
|
|
||||||
|
<!-- Do not include guacamole-common -->
|
||||||
|
<exclude>net.sourceforge.guacamole:guacamole-common</exclude>
|
||||||
|
|
||||||
|
<!-- Do not include guacamole-ext -->
|
||||||
|
<exclude>net.sourceforge.guacamole:guacamole-ext</exclude>
|
||||||
|
|
||||||
|
</excludes>
|
||||||
|
</dependencySet>
|
||||||
|
</dependencySets>
|
||||||
|
|
||||||
|
</assembly>
|
Reference in New Issue
Block a user