Skip to content
Snippets Groups Projects
Commit 009a415a authored by Thorsten Vitt's avatar Thorsten Vitt
Browse files

Switched TEI downloading to maven-copy-plugin

parent 4bcfda9a
No related branches found
No related tags found
No related merge requests found
...@@ -315,6 +315,30 @@ ...@@ -315,6 +315,30 @@
target WAR target WAR
--> -->
<plugin> <plugin>
<groupId>com.github.goldin</groupId>
<artifactId>copy-maven-plugin</artifactId>
<version>0.2.5</version>
<executions>
<execution>
<id>download-tei-xsl</id>
<phase>generate-resources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<resources>
<resource>
<file>http://downloads.sourceforge.net/project/tei/Stylesheets/tei-xsl-${tei-xsl-version}.zip</file>
<targetPath>${project.build.directory}/${project.artifactId}-${project.version}/WEB-INF</targetPath>
<unpack>true</unpack>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<!--plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>wagon-maven-plugin</artifactId> <artifactId>wagon-maven-plugin</artifactId>
<version>1.0-beta-4</version> <version>1.0-beta-4</version>
...@@ -357,7 +381,7 @@ ...@@ -357,7 +381,7 @@
</includes> </includes>
</fileset> </fileset>
</configuration> </configuration>
</plugin> </plugin-->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment