/maven-amps-plugin/src/it/generateManifestWithInstructions/pom.xml

https://bitbucket.org/mmeinhold/amps · XML · 52 lines · 49 code · 3 blank · 0 comment · 0 complexity · 3292359b89630833f9e017ef70617810 MD5 · raw file

  1. <project>
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>com.atlassian.amps.it</groupId>
  4. <artifactId>maven-amps-plugin-generate-manifest-with-instructions</artifactId>
  5. <version>testing</version>
  6. <name>TestGenerateManifestWithInstructions</name>
  7. <build>
  8. <plugins>
  9. <plugin>
  10. <groupId>com.atlassian.maven.plugins</groupId>
  11. <artifactId>maven-${shitty.product}-plugin</artifactId>
  12. <version>testing</version>
  13. <configuration>
  14. <instructions>
  15. <Some-Key>Some-Value</Some-Key>
  16. </instructions>
  17. </configuration>
  18. </plugin>
  19. <plugin>
  20. <artifactId>maven-dependency-plugin</artifactId>
  21. <executions>
  22. <execution>
  23. <phase>process-resources</phase>
  24. <goals>
  25. <goal>copy</goal>
  26. </goals>
  27. <configuration>
  28. <outputDirectory>target/classes/META-INF/lib</outputDirectory>
  29. <artifactItems>
  30. <artifactItem>
  31. <groupId>commons-logging</groupId>
  32. <artifactId>commons-logging</artifactId>
  33. <version>1.1.1</version>
  34. </artifactItem>
  35. </artifactItems>
  36. </configuration>
  37. </execution>
  38. </executions>
  39. </plugin>
  40. <plugin>
  41. <artifactId>maven-compiler-plugin</artifactId>
  42. <configuration>
  43. <source>1.6</source>
  44. <target>1.6</target>
  45. </configuration>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. </project>