Advertisement
Guest User

Untitled

a guest
Dec 17th, 2013
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <build>
  8. <plugins>
  9. <plugin>
  10. <groupId>org.jboss.as.plugins</groupId>
  11. <artifactId>jboss-as-maven-plugin</artifactId>
  12. <version>7.5.Final</version>
  13. <configuration>
  14. <hostname>127.0.0.1</hostname>
  15. <port>9999</port>
  16. <name>webAdmin</name>
  17. <username>administrator</username>
  18. <password>mypassword</password>
  19. </configuration>
  20. </plugin>
  21. </plugins>
  22. <finalName>webAdmin</finalName>
  23. </build>
  24.  
  25. <repositories>
  26. <repository>
  27. <id>lightadmin-nexus-releases</id>
  28. <url>http://lightadmin.org/nexus/content/repositories/releases</url>
  29. <releases>
  30. <enabled>true</enabled>
  31. <updatePolicy>always</updatePolicy>
  32. </releases>
  33. </repository>
  34. </repositories>
  35. <dependencies>
  36. <dependency>
  37. <groupId>junit</groupId>
  38. <artifactId>junit</artifactId>
  39. <version>4.4</version>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.lightadmin</groupId>
  44. <artifactId>lightadmin</artifactId>
  45. <version>1.0.0.M2</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.jboss.as</groupId>
  49. <artifactId>jboss-as-arquillian-container-managed</artifactId>
  50. <version>7.1.1.Final</version>
  51. <scope>test</scope>
  52. </dependency>
  53. </dependencies>
  54.  
  55. <!DOCTYPE web-app PUBLIC
  56. "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
  57. "http://java.sun.com/dtd/web-app_2_3.dtd" >
  58.  
  59. <web-app>
  60. <display-name>Ifrit Web Administration 1.0</display-name>
  61.  
  62. <welcome-file-list>
  63. <welcome-file>index.jsp</welcome-file>
  64. </welcome-file-list>
  65. </web-app>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement