fork download
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://m...content-available-to-author-only...e.org/POM/4.0.0" xmlns:xsi="http://w...content-available-to-author-only...3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://m...content-available-to-author-only...e.org/POM/4.0.0 http://m...content-available-to-author-only...e.org/maven-v4_0_0.xsd">
  3. <parent>
  4. <groupId>something</groupId>
  5. <artifactId>example</artifactId>
  6. <version>2.4-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <groupId>something.example</groupId>
  10. <artifactId>example-verbhandler-1axml</artifactId>
  11. <name>1AXML VerbHandler Framework</name>
  12.  
  13. <properties>
  14. <maven.test.failure.ignore>false</maven.test.failure.ignore>
  15. </properties>
  16.  
  17. <build>
  18. <pluginManagement>
  19. <plugins>
  20. <plugin>
  21. <groupId>org.eclipse.m2e</groupId>
  22. <artifactId>lifecycle-mapping</artifactId>
  23. <version>1.0.0</version>
  24. <configuration>
  25. <lifecycleMappingMetadata>
  26. <pluginExecutions>
  27. <pluginExecution>
  28. <pluginExecutionFilter>
  29. <groupId>org.jibx</groupId>
  30. <artifactId>maven-jibx-plugin</artifactId>
  31. <!-- <versionRange>[${version.jibx.plugin},)</versionRange>-->
  32. <goals>
  33. <goal>bind</goal>
  34. </goals>
  35. </pluginExecutionFilter>
  36. <action>
  37. <execute>
  38. <runOnIncremental>true</runOnIncremental>
  39. </execute>
  40. </action>
  41. </pluginExecution>
  42. </pluginExecutions>
  43. </lifecycleMappingMetadata>
  44. </configuration>
  45. </plugin>
  46. </plugins>
  47. </pluginManagement>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.jibx</groupId>
  51. <artifactId>maven-jibx-plugin</artifactId>
  52. <configuration>
  53. <directory>src/main/jibx</directory>
  54. <includes>
  55. <includes>*.xml</includes>
  56. </includes>
  57. <verbose>${jibx.verbose}</verbose>
  58. </configuration>
  59. <executions>
  60. <execution>
  61. <goals>
  62. <goal>bind</goal>
  63. </goals>
  64. </execution>
  65. </executions>
  66. </plugin>
  67. <plugin>
  68. <groupId>org.codehaus.mojo</groupId>
  69. <artifactId>xml-maven-plugin</artifactId>
  70. <executions>
  71. <execution>
  72. <goals>
  73. <goal>validate</goal>
  74. </goals>
  75. </execution>
  76. </executions>
  77. <configuration>
  78. <validationSets>
  79. <validationSet>
  80. <dir>src/main/resources/META-INF</dir>
  81. <includes>
  82. <include>*.xml</include>
  83. </includes>
  84. </validationSet>
  85. </validationSets>
  86. </configuration>
  87. </plugin>
  88. </plugins>
  89. </build>
  90.  
  91. <dependencies>
  92. <dependency>
  93. <groupId>something.uf.jse</groupId>
  94. <artifactId>uf_jse_api</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>something.example</groupId>
  98. <artifactId>example-verbhandler-core</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>something.example</groupId>
  102. <artifactId>example-verbhandler-java</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.nothing.dcx</groupId>
  106. <artifactId>distributed-context-api</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.nothing.dcx</groupId>
  110. <artifactId>distributed-context-internal-api</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.nothing.dcx</groupId>
  114. <artifactId>distributed-context-core</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.nothing.gcx</groupId>
  118. <artifactId>generic-context-internal-api</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.nothing.mdw.net</groupId>
  122. <artifactId>jcom</artifactId>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.nothing.mdw.common</groupId>
  126. <artifactId>utilities</artifactId>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.nothing.mdw.common</groupId>
  130. <artifactId>compress</artifactId>
  131. </dependency>
  132. <dependency>
  133. <groupId>commons-pool</groupId>
  134. <artifactId>commons-pool</artifactId>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.jibx</groupId>
  138. <artifactId>jibx-run</artifactId>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.jibx</groupId>
  142. <artifactId>jibx-extras</artifactId>
  143. </dependency>
  144. <dependency>
  145. <groupId>commons-lang</groupId>
  146. <artifactId>commons-lang</artifactId>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.springframework</groupId>
  150. <artifactId>spring-context</artifactId>
  151. </dependency>
  152. <dependency>
  153. <groupId>javax.inject</groupId>
  154. <artifactId>javax.inject</artifactId>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.codehaus.woodstox</groupId>
  158. <artifactId>woodstox-core-lgpl</artifactId>
  159. <version>4.4.1</version>
  160. <scope>runtime</scope>
  161. </dependency>
  162.  
  163. <!-- Test packages -->
  164. <dependency>
  165. <groupId>something.uf.testing</groupId>
  166. <artifactId>public</artifactId>
  167. <type>pom</type>
  168. <scope>test</scope>
  169. </dependency>
  170. <dependency>
  171. <groupId>xmlunit</groupId>
  172. <artifactId>xmlunit</artifactId>
  173. <scope>test</scope>
  174. </dependency>
  175. </dependencies>
  176. <repositories>
  177. <repository>
  178. <id>apache.snapshots</id>
  179. <url>https://r...content-available-to-author-only...e.org/content/repositories/snapshots</url>
  180. <snapshots>
  181. <enabled>true</enabled>
  182. <updatePolicy>always</updatePolicy>
  183. </snapshots>
  184. <releases>
  185. <enabled>false</enabled>
  186. </releases>
  187. </repository>
  188. </repositories>
  189. </project>
  190.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib/python2.7/py_compile.py", line 117, in compile
    raise py_exc
py_compile.PyCompileError:   File "prog.py", line 1
    <?xml version="1.0" encoding="UTF-8"?>
    ^
SyntaxError: invalid syntax

stdout
Standard output is empty