fix .gitignore in xmlrpc submodule

This commit is contained in:
Peter Hormanns 2016-06-10 19:43:34 +02:00
parent 589a47eb9e
commit 97d61727e0
4 changed files with 13 additions and 35 deletions

13
xmlrpc/.gitignore vendored Normal file
View File

@ -0,0 +1,13 @@
*.class
# Package Files #
*.jar
*.war
*.ear
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/target
/.settings
/.classpath
/.project

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<failsafe-summary result="254" timeout="false">
<completed>0</completed>
<errors>0</errors>
<failures>0</failures>
<skipped>0</skipped>
<failureMessage/>
</failsafe-summary>

View File

@ -1,5 +0,0 @@
#Generated by Maven
#Fri Jun 10 19:31:19 CEST 2016
version=1.0-SNAPSHOT
groupId=de.hsadmin
artifactId=xmlrpc-webapp

View File

@ -1,22 +0,0 @@
<?xml version="1.0"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<servlet>
<servlet-name>XmlRpcServlet</servlet-name>
<servlet-class>de.hsadmin.xmlrpc.HSXmlRpcServlet</servlet-class>
<init-param>
<param-name>enabledForExtensions</param-name>
<param-value>true</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>XmlRpcServlet</servlet-name>
<url-pattern>/xmlrpc/*</url-pattern>
</servlet-mapping>
</web-app>