Created
August 24, 2010 17:37
-
-
Save develar/547944 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-dependency-plugin</artifactId> | |
<executions> | |
<execution> | |
<id>copy element plugins</id> | |
<goals> | |
<goal>copy</goal> | |
</goals> | |
<configuration> | |
<artifactItems> | |
<artifactItem> | |
<groupId>com.xpressPages.plugins.elements.core</groupId> | |
<artifactId>elementPlugin</artifactId> | |
<version>${project.version}</version> | |
<type>swf</type> | |
<destFileName>com.xpressPages.plugins.elements.core/elementPlugin.swf</destFileName> | |
</artifactItem> | |
<artifactItem> | |
<groupId>com.xpressPages.plugins.elements.core</groupId> | |
<artifactId>editor</artifactId> | |
<version>${project.version}</version> | |
<type>swf</type> | |
<destFileName>com.xpressPages.plugins.elements.core/editor.swf</destFileName> | |
</artifactItem> | |
<artifactItem> | |
<groupId>com.xpressPages.plugins.elements.core</groupId> | |
<artifactId>editor</artifactId> | |
<version>${project.version}</version> | |
<classifier>en_US</classifier> | |
<type>swf</type> | |
<destFileName>com.xpressPages.plugins.elements.core/editor-en_US.swf</destFileName> | |
</artifactItem> | |
<artifactItem> | |
<groupId>com.xpressPages.plugins.elements.extras</groupId> | |
<artifactId>elementPlugin</artifactId> | |
<version>${project.version}</version> | |
<type>swf</type> | |
<destFileName>com.xpressPages.plugins.elements.extras/elementPlugin.swf</destFileName> | |
</artifactItem> | |
<artifactItem> | |
<groupId>com.xpressPages.plugins.elements.extras</groupId> | |
<artifactId>editor</artifactId> | |
<version>${project.version}</version> | |
<type>swf</type> | |
<destFileName>com.xpressPages.plugins.elements.extras/editor.swf</destFileName> | |
</artifactItem> | |
<artifactItem> | |
<groupId>com.xpressPages.plugins.elements.extras</groupId> | |
<artifactId>editor</artifactId> | |
<version>${project.version}</version> | |
<classifier>en_US</classifier> | |
<type>swf</type> | |
<destFileName>com.xpressPages.plugins.elements.extras/editor-en_US.swf</destFileName> | |
</artifactItem> | |
</artifactItems> | |
<outputDirectory>${project.build.directory}/${project.build.finalName}/${elementPluginDirectory}</outputDirectory> | |
</configuration> | |
</execution> | |
<execution> | |
<id>unpack element plugins icons</id> | |
<goals> | |
<goal>unpack</goal> | |
</goals> | |
<configuration> | |
<artifactItems> | |
<artifactItem> | |
<groupId>com.xpressPages.plugins.elements.core</groupId> | |
<artifactId>editor</artifactId> | |
<version>${project.version}</version> | |
<classifier>icons</classifier> | |
<type>tar</type> | |
<outputDirectory>${project.build.directory}/${project.build.finalName}/${elementPluginDirectory}/com.xpressPages.plugins.elements.core</outputDirectory> | |
</artifactItem> | |
<artifactItem> | |
<groupId>com.xpressPages.plugins.elements.extras</groupId> | |
<artifactId>editor</artifactId> | |
<version>${project.version}</version> | |
<classifier>icons</classifier> | |
<type>tar</type> | |
<outputDirectory>${project.build.directory}/${project.build.finalName}/${elementPluginDirectory}/com.xpressPages.plugins.elements.extras</outputDirectory> | |
</artifactItem> | |
</artifactItems> | |
</configuration> | |
</execution> | |
<execution> | |
<id>copy local style plugins</id> | |
<goals> | |
<goal>copy</goal> | |
</goals> | |
<configuration> | |
<artifactItems> | |
<artifactItem> | |
<groupId>com.xpressPages.plugins.styles.test</groupId> | |
<artifactId>pinkElephant</artifactId> | |
<version>${project.version}</version> | |
<type>swf</type> | |
<destFileName>com.xpressPages.plugins.styles.test-pinkElephant.swf</destFileName> | |
</artifactItem> | |
</artifactItems> | |
<outputDirectory>${project.build.directory}/${project.build.finalName}/${localStylePluginDirectory}</outputDirectory> | |
</configuration> | |
</execution> | |
<execution> | |
<id>copy mock media — sounds</id> | |
<goals> | |
<goal>unpack</goal> | |
</goals> | |
<configuration> | |
<artifactItems> | |
<artifactItem> | |
<groupId>com.xpressPages</groupId> | |
<artifactId>mockSounds</artifactId> | |
<version>1.0</version> | |
<type>zip</type> | |
</artifactItem> | |
</artifactItems> | |
<outputDirectory>${project.build.directory}/${project.build.finalName}/media/global/sounds</outputDirectory> | |
</configuration> | |
</execution> | |
<execution> | |
<id>copy mock media — images</id> | |
<goals> | |
<goal>unpack</goal> | |
</goals> | |
<configuration> | |
<artifactItems> | |
<artifactItem> | |
<groupId>com.xpressPages</groupId> | |
<artifactId>mockImages</artifactId> | |
<version>1.2</version> | |
<type>zip</type> | |
</artifactItem> | |
</artifactItems> | |
<outputDirectory>${project.build.directory}/${project.build.finalName}/media/global/images</outputDirectory> | |
</configuration> | |
</execution> | |
<execution> | |
<id>copy mock media — user images</id> | |
<goals> | |
<goal>unpack</goal> | |
</goals> | |
<configuration> | |
<artifactItems> | |
<artifactItem> | |
<groupId>com.xpressPages</groupId> | |
<artifactId>mockImagesUser</artifactId> | |
<version>1.1</version> | |
<type>zip</type> | |
</artifactItem> | |
</artifactItems> | |
<outputDirectory>${project.build.directory}/${project.build.finalName}/media/user/images</outputDirectory> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment