pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.sonatype.oss</groupId>
  6. <artifactId>oss-parent</artifactId>
  7. <version>7</version>
  8. </parent>
  9. <groupId>org.webjars</groupId>
  10. <artifactId>blue_theme</artifactId>
  11. <packaging>jar</packaging>
  12. <name>blue_theme</name>
  13. <url>http://webjars.org</url>
  14. <dependencies>
  15. <dependency>
  16. <groupId>junit</groupId>
  17. <artifactId>junit</artifactId>
  18. <version>3.8.1</version>
  19. <scope>test</scope>
  20. </dependency>
  21. </dependencies>
  22. <licenses>
  23. <license>
  24. <name>Apache License, Version 2.0</name>
  25. <url>http://www.apache.org/licenses/LICENSE-2.0</url>
  26. <distribution>repo</distribution>
  27. </license>
  28. </licenses>
  29. <properties>
  30. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  31. <upstreamVersion>0.0.1</upstreamVersion>
  32. <destDir>${project.build.outputDirectory}/META-INF/resources/</destDir>
  33. </properties>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.codehaus.mojo</groupId>
  38. <artifactId>wagon-maven-plugin</artifactId>
  39. <version>1.0-beta-4</version>
  40. </plugin>
  41. <plugin>
  42. <groupId>org.apache.maven.plugins</groupId>
  43. <artifactId>maven-release-plugin</artifactId>
  44. </plugin>
  45. </plugins>
  46. <resources>
  47. <resource>
  48. <directory>${project.basedir}/src/main/resources</directory>
  49. <targetPath>${destDir}</targetPath>
  50. </resource>
  51. </resources>
  52. </build>
  53. <version>1.0.0</version>
  54. </project>