Author: mbenson Date: Wed Mar 26 20:28:44 2014 New Revision: 1582036 URL: http://svn.apache.org/r1582036 Log: create checksum files during install when deploy profile is activated
Modified: commons/proper/proxy/trunk/dist/pom.xml Modified: commons/proper/proxy/trunk/dist/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/proxy/trunk/dist/pom.xml?rev=1582036&r1=1582035&r2=1582036&view=diff ============================================================================== --- commons/proper/proxy/trunk/dist/pom.xml (original) +++ commons/proper/proxy/trunk/dist/pom.xml Wed Mar 26 20:28:44 2014 @@ -111,8 +111,6 @@ under the License. </dependency> </dependencies> - <!-- TODO create md5 and sha1 hashes directly, since skipped deploy - plugin won't be doing it for us --> <build> <plugins> <plugin> @@ -149,6 +147,12 @@ under the License. </execution> </executions> </plugin> + <plugin> + <artifactId>maven-install-plugin</artifactId> + <configuration> + <createChecksum>true</createChecksum> + </configuration> + </plugin> </plugins> </build> </profile>