GUACAMOLE-363: Add SQL Server components to JDBC dist.
Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/56bce8db Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/56bce8db Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/56bce8db Branch: refs/heads/master Commit: 56bce8dbe73c049c0654ad54f59a38dfdce92fa3 Parents: 1d10f98 Author: Nick Couchman <[email protected]> Authored: Sat Sep 30 16:49:49 2017 -0400 Committer: Nick Couchman <[email protected]> Committed: Sat Sep 30 20:34:59 2017 -0400 ---------------------------------------------------------------------- .../modules/guacamole-auth-jdbc-dist/pom.xml | 7 +++++++ .../guacamole-auth-jdbc-dist/project-assembly.xml | 14 ++++++++++++++ 2 files changed, 21 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/56bce8db/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-dist/pom.xml ---------------------------------------------------------------------- diff --git a/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-dist/pom.xml b/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-dist/pom.xml index 7b51fa2..05f5572 100644 --- a/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-dist/pom.xml +++ b/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-dist/pom.xml @@ -109,6 +109,13 @@ <version>0.9.13-incubating</version> </dependency> + <!-- SQL Server Authentication Extension --> + <dependency> + <groupId>org.apache.guacamole</groupId> + <artifactId>guacamole-auth-jdbc-sqlserver</artifactId> + <version>0.9.13-incubating</version> + </dependency> + </dependencies> </project> http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/56bce8db/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-dist/project-assembly.xml ---------------------------------------------------------------------- diff --git a/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-dist/project-assembly.xml b/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-dist/project-assembly.xml index 523b3a0..58c886c 100644 --- a/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-dist/project-assembly.xml +++ b/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-dist/project-assembly.xml @@ -49,6 +49,14 @@ </includes> </dependencySet> + <!-- SQL Server extension .jar --> + <dependencySet> + <outputDirectory>sqlserver</outputDirectory> + <includes> + <include>org.apache.guacamole:guacamole-auth-jdbc-sqlserver</include> + </includes> + </dependencySet> + </dependencySets> <!-- Include extension schema scripts --> @@ -72,6 +80,12 @@ <directory>../guacamole-auth-jdbc-postgresql/schema</directory> </fileSet> + <!-- SQL Server schema scripts --> + <fileSet> + <outputDirectory>sqlserver/schema</outputDirectory> + <directory>../guacamole-auth-jdbc-sqlserver/schema</directory> + </fileSet> + </fileSets> </assembly>
