mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Finishing setting up tests (compiler server).
This commit is contained in:
parent
24d086dedb
commit
7d194f269e
+5
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
|
||||
<web-app>
|
||||
</web-app>
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
<testData>
|
||||
<delete>
|
||||
</delete>
|
||||
|
||||
<deleted_by_make>
|
||||
<file path="classes/x/S.class" />
|
||||
</deleted_by_make>
|
||||
|
||||
<recompile>
|
||||
<file path="root/a.jsp" />
|
||||
</recompile>
|
||||
</testData>
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
+5
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
|
||||
<web-app>
|
||||
</web-app>
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
<%--
|
||||
Created by IntelliJ IDEA.
|
||||
User: cdr
|
||||
Date: Sep 17, 2004
|
||||
Time: 2:53:58 PM
|
||||
To change this template use File | Settings | File Templates.
|
||||
--%>
|
||||
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
||||
<%@include file="dep.jsp" %>
|
||||
<%@include file="dep2.jsp" %>
|
||||
<html>
|
||||
<head><title>Simple jsp page</title></head>
|
||||
<body>Place your content here</body>
|
||||
</html>
|
||||
BIN
Binary file not shown.
+36
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module version="4" relativePaths="true" type="JAVA_MODULE">
|
||||
<component name="ModuleRootManager" />
|
||||
<component name="NewModuleRootManager">
|
||||
<output url="file://$MODULE_DIR$/classes" />
|
||||
<exclude-output />
|
||||
<exploded url="file://$MODULE_DIR$/exploded" />
|
||||
<exclude-exploded />
|
||||
<content url="file://$MODULE_DIR$" />
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
<orderEntry type="module-library">
|
||||
<library>
|
||||
<CLASSES>
|
||||
<root url="jar://$MODULE_DIR$/lib/xxx.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntryProperties />
|
||||
</component>
|
||||
<component name="FacetManager">
|
||||
<facet type="web" name="module">
|
||||
<configuration>
|
||||
<webroots>
|
||||
<root url="file://$MODULE_DIR$/root" relative="/" />
|
||||
</webroots>
|
||||
<descriptors>
|
||||
<deploymentDescriptor name="web.xml" url="file://$MODULE_DIR$/WEB-INF/web.xml" version="2.3" />
|
||||
</descriptors>
|
||||
</configuration>
|
||||
</facet>
|
||||
</component>
|
||||
</module>
|
||||
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
<%@ page import="x.S"%>
|
||||
|
||||
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
||||
|
||||
<% S.f(); %>
|
||||
AAAAA
|
||||
|
||||
+1
@@ -0,0 +1 @@
|
||||
class a{}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package x;
|
||||
|
||||
//////////
|
||||
public class S {
|
||||
public static void f() {
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package x;
|
||||
|
||||
////////// XXXXXXX
|
||||
public class S {
|
||||
public static void f() {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user