Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.vaadin</groupId>
  7. <artifactId>vaadin-root</artifactId>
  8. <version>8.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>vaadin-client-compiler</artifactId>
  11. <name>vaadin-client-compiler</name>
  12. <packaging>jar</packaging>
  13. <url>https://vaadin.com/</url>
  14. <description>Vaadin client compiler</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>${project.groupId}</groupId>
  18. <artifactId>vaadin-client</artifactId>
  19. <version>${project.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.google.gwt</groupId>
  23. <artifactId>gwt-dev</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.vaadin</groupId>
  27. <artifactId>vaadin-sass-compiler</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>junit</groupId>
  31. <artifactId>junit</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <resources>
  37. <resource>
  38. <directory>src/main/resources</directory>
  39. <filtering>true</filtering>
  40. </resource>
  41. </resources>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-checkstyle-plugin</artifactId>
  46. <executions>
  47. <execution>
  48. <goals>
  49. <goal>checkstyle</goal>
  50. </goals>
  51. <phase>process-sources</phase>
  52. </execution>
  53. </executions>
  54. </plugin>
  55. <plugin>
  56. <artifactId>maven-resources-plugin</artifactId>
  57. <executions>
  58. <!-- Copy .java files to package -->
  59. <execution>
  60. <id>copy-sources</id>
  61. <!-- here the phase you need -->
  62. <phase>prepare-package</phase>
  63. <goals>
  64. <goal>copy-resources</goal>
  65. </goals>
  66. <configuration>
  67. <outputDirectory>${project.build.outputDirectory}</outputDirectory>
  68. <resources>
  69. <resource>
  70. <directory>src/main/java</directory>
  71. <filtering>false</filtering>
  72. </resource>
  73. </resources>
  74. </configuration>
  75. </execution>
  76. </executions>
  77. </plugin>
  78. <plugin>
  79. <groupId>org.apache.felix</groupId>
  80. <artifactId>maven-bundle-plugin</artifactId>
  81. <extensions>true</extensions>
  82. <configuration>
  83. <instructions>
  84. <Bundle-Version>${osgi.bundle.version}</Bundle-Version>
  85. <Bundle-RequiredExecutionEnvironment>${osgi.execution.environment}</Bundle-RequiredExecutionEnvironment>
  86. <Export-Package>com.vaadin.*;version="${osgi.bundle.version}"</Export-Package>
  87. <!--TODO decide gwt packages version number<Export-Package>com.vaadin.*;version="${project.version}",com.google.gwt.*;version="${vaadin.gwt.version}"</Export-Package> -->
  88. <Import-Package></Import-Package> <!--todo find out what should be in Import-Package -->
  89. </instructions>
  90. </configuration>
  91. <executions>
  92. <execution>
  93. <id>bundle-manifest</id>
  94. <phase>prepare-package</phase>
  95. <goals>
  96. <goal>manifest</goal>
  97. </goals>
  98. </execution>
  99. </executions>
  100. </plugin>
  101. <plugin>
  102. <groupId>org.apache.maven.plugins</groupId>
  103. <artifactId>maven-jar-plugin</artifactId>
  104. <configuration>
  105. <archive>
  106. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  107. <index />
  108. <manifest>
  109. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  110. </manifest>
  111. </archive>
  112. </configuration>
  113. </plugin>
  114. <plugin>
  115. <groupId>org.codehaus.mojo</groupId>
  116. <artifactId>animal-sniffer-maven-plugin</artifactId>
  117. <configuration>
  118. <skip>true</skip>
  119. </configuration>
  120. </plugin>
  121. <plugin>
  122. <groupId>org.apache.maven.plugins</groupId>
  123. <artifactId>maven-surefire-plugin</artifactId>
  124. </plugin>
  125. </plugins>
  126. </build>
  127. </project>