You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 5.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.googlecode.gwtquery</groupId>
  5. <artifactId>gwtquery-project</artifactId>
  6. <version>1.4.3-SNAPSHOT</version>
  7. </parent>
  8. <name>JsQuery</name>
  9. <artifactId>jsquery</artifactId>
  10. <packaging>war</packaging>
  11. <properties>
  12. <gwtExporterVersion>2.4.0</gwtExporterVersion>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>${groupId}</groupId>
  17. <artifactId>gwtquery</artifactId>
  18. <version>${version}</version>
  19. <type>jar</type>
  20. <scope>provided</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.timepedia.exporter</groupId>
  24. <artifactId>gwtexporter</artifactId>
  25. <version>${gwtExporterVersion}</version>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.google.gwt</groupId>
  30. <artifactId>gwt-user</artifactId>
  31. <version>${gwtversion}</version>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.google.gwt</groupId>
  36. <artifactId>gwt-dev</artifactId>
  37. <version>${gwtversion}</version>
  38. <scope>provided</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>javax.validation</groupId>
  42. <artifactId>validation-api</artifactId>
  43. <version>1.0.0.GA</version>
  44. <scope>provided</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>javax.validation</groupId>
  48. <artifactId>validation-api</artifactId>
  49. <version>1.0.0.GA</version>
  50. <classifier>sources</classifier>
  51. <scope>provided</scope>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.codehaus.mojo</groupId>
  58. <artifactId>gwt-maven-plugin</artifactId>
  59. <version>${gwtmaven}</version>
  60. <configuration>
  61. <logLevel>${gwt.loglevel}</logLevel>
  62. <enableClosureCompiler>true</enableClosureCompiler>
  63. <optimizationLevel>9</optimizationLevel>
  64. <gwtVersion>${gwtversion}</gwtVersion>
  65. <compileReport>true</compileReport>
  66. <disableClassMetadata>true</disableClassMetadata>
  67. <disableCastChecking>true</disableCastChecking>
  68. <modules>
  69. <module>com.google.gwt.query.jsquery.JsQueryApi</module>
  70. </modules>
  71. </configuration>
  72. <executions>
  73. <execution>
  74. <phase>prepare-package</phase>
  75. <goals>
  76. <goal>compile</goal>
  77. </goals>
  78. </execution>
  79. </executions>
  80. </plugin>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-eclipse-plugin</artifactId>
  84. <configuration>
  85. <downloadSources>true</downloadSources>
  86. <downloadJavadocs>true</downloadJavadocs>
  87. <additionalBuildcommands>
  88. <buildCommand>com.google.gwt.eclipse.core.gwtProjectValidator</buildCommand>
  89. <buildcommand>org.eclipse.wst.common.modulecore.ComponentStructuralBuilder</buildcommand>
  90. <buildcommand>org.eclipse.jdt.core.javabuilder</buildcommand>
  91. <buildcommand>org.eclipse.wst.common.modulecore.ComponentStructuralBuilderDependencyResolver</buildcommand>
  92. </additionalBuildcommands>
  93. <additionalProjectnatures>
  94. <projectnature>com.google.gwt.eclipse.core.gwtNature</projectnature>
  95. <projectnature>org.eclipse.jdt.core.javanature</projectnature>
  96. <projectnature>org.eclipse.wst.common.modulecore.ModuleCoreNature</projectnature>
  97. </additionalProjectnatures>
  98. </configuration>
  99. </plugin>
  100. <plugin>
  101. <artifactId>maven-resources-plugin</artifactId>
  102. <version>2.5</version>
  103. <executions>
  104. <execution>
  105. <id>copy-resources</id>
  106. <phase>generate-sources</phase>
  107. <goals>
  108. <goal>copy-resources</goal>
  109. </goals>
  110. <configuration>
  111. <outputDirectory>${project.build.directory}/${project.build.finalName}</outputDirectory>
  112. <resources>
  113. <resource>
  114. <directory>src/main/webapp</directory>
  115. <filtering>true</filtering>
  116. </resource>
  117. </resources>
  118. </configuration>
  119. </execution>
  120. </executions>
  121. </plugin>
  122. </plugins>
  123. <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>
  124. </build>
  125. </project>