mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 00:53:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			141 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			141 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <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/maven-v4_0_0.xsd">
 | |
| 
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
|     <groupId>org.glyptodon.guacamole</groupId>
 | |
|     <artifactId>guacamole-common</artifactId>
 | |
|     <packaging>jar</packaging>
 | |
|     <version>0.9.7</version>
 | |
|     <name>guacamole-common</name>
 | |
|     <url>http://guac-dev.org/</url>
 | |
| 
 | |
|     <description>
 | |
|         The base Java API of the Guacamole project, providing Java support for
 | |
|         the Guacamole stack.
 | |
|     </description>
 | |
| 
 | |
|     <!-- All applicable licenses -->
 | |
|     <licenses>
 | |
|         <license>
 | |
|             <name>The MIT License</name>
 | |
|             <url>http://www.opensource.org/licenses/mit-license.php</url>
 | |
|             <distribution>repo</distribution>
 | |
|         </license>
 | |
|     </licenses>
 | |
| 
 | |
|     <!-- Git repository -->
 | |
|     <scm>
 | |
|         <url>https://github.com/glyptodon/guacamole-client</url>
 | |
|         <connection>scm:git:git://github.com/glyptodon/guacamole-client.git</connection>
 | |
|     </scm>
 | |
| 
 | |
|     <!-- Developers -->
 | |
|     <developers>
 | |
|         <developer>
 | |
|             <id>mike.jumper</id>
 | |
|             <name>Michael Jumper</name>
 | |
|             <email>mike.jumper@guac-dev.org</email>
 | |
|         </developer>
 | |
|         <developer>
 | |
|             <id>james.muehlner</id>
 | |
|             <name>James Muehlner</name>
 | |
|             <email>james.muehlner@guac-dev.org</email>
 | |
|         </developer>
 | |
|     </developers>
 | |
| 
 | |
|     <properties>
 | |
|         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | |
|     </properties>
 | |
| 
 | |
|     <build>
 | |
|         <plugins>
 | |
| 
 | |
|             <!-- Written for 1.6 -->
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-compiler-plugin</artifactId>
 | |
|                 <version>3.3</version>
 | |
|                 <configuration>
 | |
|                     <source>1.6</source>
 | |
|                     <target>1.6</target>
 | |
|                     <compilerArgs>
 | |
|                         <arg>-Xlint:all</arg>
 | |
|                         <arg>-Werror</arg>
 | |
|                     </compilerArgs>
 | |
|                     <fork>true</fork>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
| 
 | |
|             <!-- Attach source jar -->
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-source-plugin</artifactId>
 | |
|                 <version>2.4</version>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <id>attach-sources</id>
 | |
|                         <goals>
 | |
|                             <goal>jar</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
| 
 | |
|             <!-- Attach JavaDoc jar -->
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-javadoc-plugin</artifactId>
 | |
|                 <version>2.10.3</version>
 | |
|                 <configuration>
 | |
|                     <detectOfflineLinks>false</detectOfflineLinks>
 | |
|                 </configuration>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <id>attach-javadocs</id>
 | |
|                         <goals>
 | |
|                             <goal>jar</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
| 
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
|     <dependencies>
 | |
| 
 | |
|         <!-- Java servlet API -->
 | |
|         <dependency>
 | |
|             <groupId>javax.servlet</groupId>
 | |
|             <artifactId>servlet-api</artifactId>
 | |
|             <version>2.5</version>
 | |
|             <scope>provided</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- JSR 356 WebSocket API -->
 | |
|         <dependency>
 | |
|             <groupId>javax.websocket</groupId>
 | |
|             <artifactId>javax.websocket-api</artifactId>
 | |
|             <version>1.0</version>
 | |
|             <scope>provided</scope>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- SLF4J - logging -->
 | |
|         <dependency>
 | |
|             <groupId>org.slf4j</groupId>
 | |
|             <artifactId>slf4j-api</artifactId>
 | |
|             <version>1.7.7</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <!-- JUnit -->
 | |
|         <dependency>
 | |
|             <groupId>junit</groupId>
 | |
|             <artifactId>junit</artifactId>
 | |
|             <version>4.10</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
| 
 | |
|     </dependencies>
 | |
| 
 | |
| </project>
 |