Changeset 5588


Ignore:
Timestamp:
08/21/14 10:01:03 (10 years ago)
Author:
Twan Goosen
Message:

Added maven assembly plugin and a custom descriptor to create a tarball that has the WAR file and documentation.
Added .txt extension to LICENSE files.
Fixes #616

Location:
VirtualCollectionRegistry/trunk/VirtualCollectionRegistry
Files:
2 added
1 edited
2 moved

Legend:

Unmodified
Added
Removed
  • VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/pom.xml

    r5587 r5588  
    577577                    </execution>
    578578                </executions>
    579                 <!--                <configuration>
    580                     <sassSourceDirectory>src/main/webapp/css</sassSourceDirectory>
    581                 </configuration>-->
    582             </plugin>
    583             <!--            <plugin>
    584                 <groupId>ro.isdc.wro4j</groupId>
    585                 <artifactId>wro4j-maven-plugin</artifactId>
    586                 <version>1.7.6</version>
     579            </plugin>
     580           
     581            <plugin>
     582                <artifactId>maven-assembly-plugin</artifactId>
     583                <version>2.4.1</version>
    587584                <executions>
    588585                    <execution>
    589                         <phase>compile</phase>
     586                        <id>make-assembly</id>
     587                        <phase>package</phase>
    590588                        <goals>
    591                             <goal>run</goal>
     589                            <goal>single</goal>
    592590                        </goals>
    593591                    </execution>
    594592                </executions>
    595593                <configuration>
    596                     <targetGroups>all</targetGroups>
    597                     <minimize>true</minimize>
    598                     <destinationFolder>${basedir}/src/main/webapp/wro/</destinationFolder>
    599                     <cssDestinationFolder>d:/static/css/</cssDestinationFolder>
    600                     <jsDestinationFolder>d:/static/js/</jsDestinationFolder>
    601                     <contextFolder>${basedir}/src/main/webapp/</contextFolder>
    602                     <wroFile>${basedir}/src/main/webapp/WEB-INF/wro.xml</wroFile>
    603                     <wroManagerFactory>com.mycompany.MyCustomWroManagerFactory</wroManagerFactory>
    604                     <ignoreMissingResources>false</ignoreMissingResources>
     594                    <descriptors>
     595                        <descriptor>src/assembly/distribution.xml</descriptor>
     596                    </descriptors>
    605597                </configuration>
    606             </plugin>-->
     598            </plugin>
    607599        </plugins>
    608600
Note: See TracChangeset for help on using the changeset viewer.