Commit 6d4b9011 authored by Martin Bergljung's avatar Martin Bergljung
Browse files

Merge pull request #359 from loftuxab/utf8-url-fix

The current configuration doesn't encode url:s tomcat7-maven-plugin.
parents 8415da72 0854929d
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -110,6 +110,8 @@
                                 This also fixes issues with the Google Guava Library, which this tomcat plugin uses
                                 version 10.0.1 of but Solr uses 14.0.1 -->
                            <delegate>false</delegate>
                            <!-- Encode url in UTF-8 for proper character handling -->
                            <uriEncoding>UTF-8</uriEncoding>
                            <webapps>
                                <webapp>
                                    <groupId>${project.groupId}</groupId>
+2 −0
Original line number Diff line number Diff line
@@ -634,6 +634,8 @@
                                    </systemProperties>
                                    <delegate>true</delegate>
                                    <contextFile>${project.basedir}/tomcat/context.xml</contextFile>
                                    <!-- Encode url in UTF-8 for proper character handling -->
                                    <uriEncoding>UTF-8</uriEncoding>
                                </configuration>
                            </execution>
                        </executions>