<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
<modelVersion>4.0.0</modelVersion>
+
<groupId>de.juplo</groupId>
<artifactId>fix-swf</artifactId>
- <packaging>war</packaging>
+ <name>Juplo - fix-swf</name>
<version>1.0</version>
- <name>fix-swf</name>
- <url>http://juplo.de/fix-swf</url>
+ <packaging>war</packaging>
+ <url>http://www.juplo.de/fix-swf</url>
+
+ <prerequisites>
+ <maven>2.0.6</maven>
+ </prerequisites>
+
+ <scm>
+ <connection>scm:git:http://juplo.de/git/fix-swf</connection>
+ <developerConnection>scm:git:ssh://juplo.de:/var/cache/git/juplo/fix-swf</developerConnection>
+ <url>http://juplo.de/gitweb/?p=fix-swf;a=summary</url>
+ </scm>
+
+ <developers>
+ <developer>
+ <id>kai</id>
+ <name>Kai Moritz</name>
+ <email>kai@juplo.de</email>
+ </developer>
+ </developers>
+
<properties>
+ <!-- Zeichensatz -->
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <!-- Verwendete Versionen -->
<commons-fileupload.version>1.2.2</commons-fileupload.version>
<commons-lang.version>2.6</commons-lang.version>
<servlet-api.version>2.5</servlet-api.version>
</properties>
+
<dependencies>
<dependency>
<groupId>commons-fileupload</groupId>
<scope>provided</scope>
</dependency>
</dependencies>
+
+ <distributionManagement>
+ <repository>
+ <id>juplo.internal</id>
+ <name>Internal Release Repository</name>
+ <url>http://juplo.de/archiva/repository/internal/</url>
+ </repository>
+ <snapshotRepository>
+ <id>juplo.snapshots</id>
+ <name>Internal Snapshot Repository</name>
+ <url>http://juplo.de/archiva/repository/snapshots/</url>
+ </snapshotRepository>
+ </distributionManagement>
+
<build>
<finalName>fix-swf</finalName>
<plugins>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <artifactId>maven-changes-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jxr-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <artifactId>maven-scm-plugin</artifactId>
+ <configuration>
+ <goals>install</goals>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+
</project>
out.println("<p>" + StringEscapeUtils.escapeHtml((String)request.getAttribute(MESSAGE_ATTRIBUTE)) + "</p>");
}
out.println("<h1>Choose SWF-File to check/fix</h1>");
- out.println("<p>If the file has to be fixed, the fixed version will be presented to you as a download.</p>");
+ out.println("<p>If the file has to be fixed, the fixed version will be presented to you as a download immediately.</p>");
out.println("<form action=\"\" method=\"post\" enctype=\"multipart/form-data\">");
out.println("<input type=\"file\" name=\"swf\" />");
out.println("<input type=\"submit\" name=\"submit\" value=\"Start Upload\" />");