Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.70 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.jboss.as.plugins</groupId>
  3. <artifactId>jboss-as-maven-plugin</artifactId>
  4. <version>7.6.Final</version>
  5. <configuration>
  6. <jbossHome>C:UsersarcostaDocumentsAurelioCaixaJavajboss-eap-6.3_producao</jbossHome>
  7. <hostname>localhost</hostname>
  8. <port>9998</port>
  9. <name>Stefanini</name>
  10. <password>Stefanini@10</password>
  11. </configuration>
  12. <executions>
  13. <execution>
  14. <id>undeploy</id>
  15. <phase>clean</phase>
  16. <goals>
  17. <goal>undeploy</goal>
  18. </goals>
  19. <configuration>
  20. <filename>box.ear</filename>
  21. </configuration>
  22. </execution>
  23. <execution>
  24. <id>deploy</id>
  25. <phase>package</phase>
  26. <goals>
  27. <goal>deploy</goal>
  28.  
  29. </goals>
  30. <configuration>
  31. <filename>box.ear</filename>
  32. </configuration>
  33. </execution>
  34. </executions>
  35. </plugin>
  36.  
  37. [INFO] Scanning for projects...
  38. [INFO] ------------------------------------------------------------------------
  39. [INFO] Reactor Build Order:
  40. [INFO]
  41. [INFO] box
  42. [INFO] box - ejb
  43. [INFO] box - web
  44. [INFO] box - ear
  45. [INFO]
  46. [INFO] Using the builder org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder with a thread count of 1
  47. [INFO]
  48. [INFO] ------------------------------------------------------------------------
  49. [INFO] Building box 0.0.1-SNAPSHOT
  50. [INFO] ------------------------------------------------------------------------
  51. [INFO]
  52. [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ box ---
  53. [INFO]
  54. [INFO] ------------------------------------------------------------------------
  55. [INFO] Building box - ejb 0.0.1-SNAPSHOT
  56. [INFO] ------------------------------------------------------------------------
  57. [INFO]
  58. [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ box-ejb ---
  59. [INFO] Deleting C:UsersarcostaDocumentsAurelioCaixabox-estudoboxejbtarget
  60. [INFO]
  61. [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ box-ejb ---
  62. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  63. [INFO] Copying 4 resources
  64. [INFO]
  65. [INFO] --- maven-compiler-plugin:2.5.1:compile (default-compile) @ box-ejb ---
  66. [INFO] Compiling 50 source files to C:UsersarcostaDocumentsAurelioCaixabox-estudoboxejbtargetclasses
  67. [INFO]
  68. [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ box-ejb ---
  69. [INFO] Not copying test resources
  70. [INFO]
  71. [INFO] --- maven-compiler-plugin:2.5.1:testCompile (default-testCompile) @ box-ejb ---
  72. [INFO] Not compiling test sources
  73. [INFO]
  74. [INFO] --- maven-surefire-plugin:2.18:test (default-test) @ box-ejb ---
  75. [INFO] Tests are skipped.
  76. [INFO]
  77. [INFO] --- maven-ejb-plugin:2.3:ejb (default-ejb) @ box-ejb ---
  78. [INFO] Building EJB box-ejb with EJB version 3.1
  79. [INFO] Building jar: C:UsersarcostaDocumentsAurelioCaixabox-estudoboxejbtargetbox-ejb.jar
  80. [INFO]
  81. [INFO] ------------------------------------------------------------------------
  82. [INFO] Building box - web 0.0.1-SNAPSHOT
  83. [INFO] ------------------------------------------------------------------------
  84. [INFO]
  85. [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ box-web ---
  86. [INFO] Deleting C:UsersarcostaDocumentsAurelioCaixabox-estudoboxwebtarget
  87. [INFO]
  88. [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ box-web ---
  89. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  90. [INFO] skip non existing resourceDirectory C:UsersarcostaDocumentsAurelioCaixabox-estudoboxwebsrcmainresources
  91. [INFO]
  92. [INFO] --- maven-compiler-plugin:2.5.1:compile (default-compile) @ box-web ---
  93. [INFO] Compiling 33 source files to C:UsersarcostaDocumentsAurelioCaixabox-estudoboxwebtargetclasses
  94. [INFO]
  95. [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ box-web ---
  96. [INFO] Not copying test resources
  97. [INFO]
  98. [INFO] --- maven-compiler-plugin:2.5.1:testCompile (default-testCompile) @ box-web ---
  99. [INFO] Not compiling test sources
  100. [INFO]
  101. [INFO] --- maven-surefire-plugin:2.18:test (default-test) @ box-web ---
  102. [INFO] Tests are skipped.
  103. [INFO]
  104. [INFO] --- maven-war-plugin:2.1.1:war (default-war) @ box-web ---
  105. [INFO] Packaging webapp
  106. [INFO] Assembling webapp [box-web] in [C:UsersarcostaDocumentsAurelioCaixabox-estudoboxwebtargetbox-web]
  107. [INFO] Processing war project
  108. [INFO] Copying webapp resources [C:UsersarcostaDocumentsAurelioCaixabox-estudoboxwebsrcmainwebapp]
  109. [INFO] Webapp assembled in [2139 msecs]
  110. [INFO] Building war: C:UsersarcostaDocumentsAurelioCaixabox-estudoboxwebtargetbox-web.war
  111. [WARNING] Warning: selected war files include a WEB-INF/web.xml which will be ignored
  112. (webxml attribute is missing from war task, or ignoreWebxml attribute is specified as 'true')
  113. [INFO]
  114. [INFO] ------------------------------------------------------------------------
  115. [INFO] Building box - ear 0.0.1-SNAPSHOT
  116. [INFO] ------------------------------------------------------------------------
  117. [INFO]
  118. [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ box-ear ---
  119. [INFO] Deleting C:UsersarcostaDocumentsAurelioCaixabox-estudoboxeartarget
  120. [INFO]
  121. [INFO] --- jboss-as-maven-plugin:7.6.Final:undeploy (undeploy) @ box-ear ---
  122. Dez 19, 2014 9:01:45 AM org.xnio.Xnio <clinit>
  123. INFO: XNIO Version 3.0.7.GA
  124. Dez 19, 2014 9:01:45 AM org.xnio.nio.NioXnio <clinit>
  125. INFO: XNIO NIO Implementation Version 3.0.7.GA
  126. Dez 19, 2014 9:01:45 AM org.jboss.remoting3.EndpointImpl <clinit>
  127. INFO: JBoss Remoting version 3.2.12.GA
  128. [INFO]
  129. [INFO] --- maven-ear-plugin:2.8:generate-application-xml (default-generate-application-xml) @ box-ear ---
  130. [INFO] Generating application.xml
  131. [INFO]
  132. [INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ box-ear ---
  133. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  134. [INFO] skip non existing resourceDirectory C:UsersarcostaDocumentsAurelioCaixabox-estudoboxearsrcmainresources
  135. [INFO]
  136. [INFO] --- maven-ear-plugin:2.8:ear (default-ear) @ box-ear ---
  137. [INFO] Copying artifact [war:br.com:box-web:0.0.1-SNAPSHOT] to [box-web.war]
  138. [INFO] Copying artifact [ejb:br.com:box-ejb:0.0.1-SNAPSHOT] to [box-ejb.jar]
  139. [INFO] Copying artifact [jar:org.codehaus.jackson:jackson-mapper-asl:1.9.13] to [lib/jackson-mapper-asl.jar]
  140. [INFO] Copying artifact [jar:org.codehaus.jackson:jackson-core-asl:1.9.13] to [lib/jackson-core-asl.jar]
  141. [INFO] Copying artifact [jar:com.google.guava:guava:18.0] to [lib/guava.jar]
  142. [INFO] Copying artifact [jar:javax:javaee-api:7.0] to [lib/javaee-api.jar]
  143. [INFO] Copying artifact [jar:com.sun.mail:javax.mail:1.5.0] to [lib/javax.mail.jar]
  144. [INFO] Copying artifact [jar:javax.activation:activation:1.1] to [lib/activation.jar]
  145. [INFO] Copying artifact [jar:jboss:jbosssx:3.2.3] to [lib/jbosssx.jar]
  146. [INFO] Copying artifact [jar:jboss:jboss-common:3.2.3] to [lib/jboss-common.jar]
  147. [INFO] Copying artifact [jar:joda-time:joda-time:2.5] to [lib/joda-time.jar]
  148. [INFO] Copying artifact [jar:org.apache.velocity:velocity:1.7] to [lib/velocity.jar]
  149. [INFO] Copying artifact [jar:commons-collections:commons-collections:3.2.1] to [lib/commons-collections.jar]
  150. [INFO] Copying artifact [jar:commons-lang:commons-lang:2.4] to [lib/commons-lang.jar]
  151. [INFO] Copying artifact [jar:commons-io:commons-io:2.4] to [lib/commons-io.jar]
  152. [INFO] Copying artifact [jar:commons-fileupload:commons-fileupload:1.3.1] to [lib/commons-fileupload.jar]
  153. [INFO] Copying artifact [jar:org.apache.maven.plugins:maven-compiler-plugin:3.2] to [lib/maven-compiler-plugin.jar]
  154. [INFO] Copying artifact [jar:org.apache.maven:maven-plugin-api:2.0.9] to [lib/maven-plugin-api.jar]
  155. [INFO] Copying artifact [jar:org.apache.maven:maven-artifact:2.0.9] to [lib/maven-artifact.jar]
  156. [INFO] Copying artifact [jar:org.codehaus.plexus:plexus-utils:1.5.1] to [lib/plexus-utils.jar]
  157. [INFO] Copying artifact [jar:org.apache.maven:maven-core:2.0.9] to [lib/maven-core.jar]
  158. [INFO] Copying artifact [jar:org.apache.maven:maven-settings:2.0.9] to [lib/maven-settings.jar]
  159. [INFO] Copying artifact [jar:org.apache.maven:maven-plugin-parameter-documenter:2.0.9] to [lib/maven-plugin-parameter-documenter.jar]
  160. [INFO] Copying artifact [jar:org.apache.maven.wagon:wagon-webdav:1.0-beta-2] to [lib/wagon-webdav.jar]
  161. [INFO] Copying artifact [jar:slide:slide-webdavlib:2.1] to [lib/slide-webdavlib.jar]
  162. [INFO] Copying artifact [jar:commons-httpclient:commons-httpclient:2.0.2] to [lib/commons-httpclient.jar]
  163. [INFO] Copying artifact [jar:jdom:jdom:1.0] to [lib/jdom.jar]
  164. [INFO] Copying artifact [jar:de.zeigermann.xml:xml-im-exporter:1.1] to [lib/xml-im-exporter.jar]
  165. [INFO] Copying artifact [jar:commons-logging:commons-logging:1.0.4] to [lib/commons-logging.jar]
  166. [INFO] Copying artifact [jar:org.apache.maven:maven-profile:2.0.9] to [lib/maven-profile.jar]
  167. [INFO] Copying artifact [jar:org.apache.maven:maven-model:2.0.9] to [lib/maven-model.jar]
  168. [INFO] Copying artifact [jar:org.apache.maven.wagon:wagon-provider-api:1.0-beta-2] to [lib/wagon-provider-api.jar]
  169. [INFO] Copying artifact [jar:org.apache.maven:maven-repository-metadata:2.0.9] to [lib/maven-repository-metadata.jar]
  170. [INFO] Copying artifact [jar:org.apache.maven:maven-error-diagnostics:2.0.9] to [lib/maven-error-diagnostics.jar]
  171. [INFO] Copying artifact [jar:org.apache.maven:maven-project:2.0.9] to [lib/maven-project.jar]
  172. [INFO] Copying artifact [jar:org.apache.maven:maven-plugin-registry:2.0.9] to [lib/maven-plugin-registry.jar]
  173. [INFO] Copying artifact [jar:org.apache.maven:maven-plugin-descriptor:2.0.9] to [lib/maven-plugin-descriptor.jar]
  174. [INFO] Copying artifact [jar:org.apache.maven:maven-artifact-manager:2.0.9] to [lib/maven-artifact-manager.jar]
  175. [INFO] Copying artifact [jar:org.apache.maven:maven-monitor:2.0.9] to [lib/maven-monitor.jar]
  176. [INFO] Copying artifact [jar:org.apache.maven:maven-toolchain:1.0] to [lib/maven-toolchain.jar]
  177. [INFO] Copying artifact [jar:org.apache.maven.shared:maven-shared-utils:0.1] to [lib/maven-shared-utils.jar]
  178. [INFO] Copying artifact [jar:com.google.code.findbugs:jsr305:2.0.1] to [lib/jsr305.jar]
  179. [INFO] Copying artifact [jar:org.apache.maven.shared:maven-shared-incremental:1.1] to [lib/maven-shared-incremental.jar]
  180. [INFO] Copying artifact [jar:org.codehaus.plexus:plexus-component-annotations:1.5.5] to [lib/plexus-component-annotations.jar]
  181. [INFO] Copying artifact [jar:org.codehaus.plexus:plexus-compiler-api:2.4] to [lib/plexus-compiler-api.jar]
  182. [INFO] Copying artifact [jar:org.codehaus.plexus:plexus-compiler-manager:2.4] to [lib/plexus-compiler-manager.jar]
  183. [INFO] Copying artifact [jar:org.codehaus.plexus:plexus-compiler-javac:2.4] to [lib/plexus-compiler-javac.jar]
  184. [INFO] Copying artifact [jar:org.codehaus.plexus:plexus-container-default:1.5.5] to [lib/plexus-container-default.jar]
  185. [INFO] Copying artifact [jar:org.codehaus.plexus:plexus-classworlds:2.2.2] to [lib/plexus-classworlds.jar]
  186. [INFO] Copying artifact [jar:org.apache.xbean:xbean-reflect:3.4] to [lib/xbean-reflect.jar]
  187. [INFO] Copying artifact [jar:log4j:log4j:1.2.12] to [lib/log4j.jar]
  188. [INFO] Copying artifact [jar:commons-logging:commons-logging-api:1.1] to [lib/commons-logging-api.jar]
  189. [INFO] Copying artifact [jar:com.google.collections:google-collections:1.0] to [lib/google-collections.jar]
  190. [INFO] Copying artifact [jar:org.mockito:mockito-all:1.9.5] to [lib/mockito-all.jar]
  191. [INFO] Copying artifact [jar:org.primefaces:primefaces:5.1] to [lib/primefaces.jar]
  192. [INFO] Copying artifact [jar:org.primefaces.themes:all-themes:1.0.10] to [lib/all-themes.jar]
  193. [INFO] Copying artifact [jar:org.omnifaces:omnifaces:1.8.1] to [lib/omnifaces.jar]
  194. [INFO] Could not find manifest file: C:UsersarcostaDocumentsAurelioCaixabox-estudoboxeartargetboxMETA-INFMANIFEST.MF - Generating one
  195. [INFO] Building jar: C:UsersarcostaDocumentsAurelioCaixabox-estudoboxeartargetbox.ear
  196. [INFO]
  197. [INFO] >>> jboss-as-maven-plugin:7.6.Final:deploy (deploy) @ box-ear >>>
  198. [INFO]
  199. [INFO] --- maven-ear-plugin:2.8:generate-application-xml (default-generate-application-xml) @ box-ear ---
  200. [INFO] Generating application.xml
  201. [INFO]
  202. [INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ box-ear ---
  203. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  204. [INFO] skip non existing resourceDirectory C:UsersarcostaDocumentsAurelioCaixabox-estudoboxearsrcmainresources
  205. [INFO]
  206. [INFO] --- maven-ear-plugin:2.8:ear (default-ear) @ box-ear ---
  207. [INFO] Could not find manifest file: C:UsersarcostaDocumentsAurelioCaixabox-estudoboxeartargetboxMETA-INFMANIFEST.MF - Generating one
  208. [INFO] Building jar: C:UsersarcostaDocumentsAurelioCaixabox-estudoboxeartargetbox.ear
  209. [INFO]
  210. [INFO] <<< jboss-as-maven-plugin:7.6.Final:deploy (deploy) @ box-ear <<<
  211. [INFO]
  212. [INFO] --- jboss-as-maven-plugin:7.6.Final:deploy (deploy) @ box-ear ---
  213. [INFO] ------------------------------------------------------------------------
  214. [INFO] Reactor Summary:
  215. [INFO]
  216. [INFO] box ............................................... SUCCESS [ 0.323 s]
  217. [INFO] box - ejb ......................................... SUCCESS [ 4.387 s]
  218. [INFO] box - web ......................................... SUCCESS [ 6.215 s]
  219. [INFO] box - ear ......................................... SUCCESS [ 19.696 s]
  220. [INFO] ------------------------------------------------------------------------
  221. [INFO] BUILD SUCCESS
  222. [INFO] ------------------------------------------------------------------------
  223. [INFO] Total time: 30.829 s
  224. [INFO] Finished at: 2014-12-19T09:02:03-03:00
  225. [INFO] Final Memory: 29M/470M
  226. [INFO] ------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement