/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
- <project>
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.atlassian.amps.it</groupId>
- <artifactId>maven-amps-plugin-generate-manifest-with-instructions</artifactId>
- <version>testing</version>
- <name>TestGenerateManifestWithInstructions</name>
- <build>
- <plugins>
- <plugin>
- <groupId>com.atlassian.maven.plugins</groupId>
- <artifactId>maven-${shitty.product}-plugin</artifactId>
- <version>testing</version>
- <configuration>
- <instructions>
- <Some-Key>Some-Value</Some-Key>
- </instructions>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <phase>process-resources</phase>
- <goals>
- <goal>copy</goal>
- </goals>
- <configuration>
- <outputDirectory>target/classes/META-INF/lib</outputDirectory>
- <artifactItems>
- <artifactItem>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- <version>1.1.1</version>
- </artifactItem>
- </artifactItems>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.6</source>
- <target>1.6</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>