├── .settings
├── org.eclipse.wst.jsdt.ui.superType.name
├── org.eclipse.wst.jsdt.ui.superType.container
├── org.eclipse.wst.common.project.facet.core.xml
├── org.eclipse.jdt.core.prefs
├── org.eclipse.wst.common.component
└── .jsdtscope
├── WebContent
├── META-INF
│ ├── MANIFEST.MF
│ └── context.xml
├── Cpython.html
├── Cjava.html
├── index.html
├── p_main__script.js
└── j_main__script.js
├── README.md
├── nbproject
├── private
│ ├── private.xml
│ └── private.properties
├── genfiles.properties
├── project.xml
├── ant-deploy.xml
├── project.properties
└── build-impl.xml
├── .classpath
├── .project
└── src
├── Run.java
├── Compile.java
└── PythCompile.java
/.settings/org.eclipse.wst.jsdt.ui.superType.name:
--------------------------------------------------------------------------------
1 | Window
--------------------------------------------------------------------------------
/WebContent/META-INF/MANIFEST.MF:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | Class-Path:
3 |
4 |
--------------------------------------------------------------------------------
/.settings/org.eclipse.wst.jsdt.ui.superType.container:
--------------------------------------------------------------------------------
1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary
--------------------------------------------------------------------------------
/WebContent/META-INF/context.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Online java compiler providing basic functionality such as Compilation , I/O using terminal/command prompt in background.
2 |
--------------------------------------------------------------------------------
/nbproject/private/private.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/.settings/org.eclipse.wst.common.project.facet.core.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
1 | eclipse.preferences.version=1
2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
4 | org.eclipse.jdt.core.compiler.compliance=1.8
5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
7 | org.eclipse.jdt.core.compiler.source=1.8
8 |
--------------------------------------------------------------------------------
/nbproject/private/private.properties:
--------------------------------------------------------------------------------
1 | deploy.ant.properties.file=C:\\Users\\yash\\AppData\\Roaming\\NetBeans\\8.0.2\\tomcat80.properties
2 | j2ee.server.home=C:/Program Files/Apache Software Foundation/Tomcat 8.0
3 | j2ee.server.instance=tomcat80:home=C:\\Program Files\\Apache Software Foundation\\Tomcat 8.0
4 | javac.debug=false
5 | user.properties.file=C:\\Users\\yash\\AppData\\Roaming\\NetBeans\\8.0.2\\build.properties
6 |
--------------------------------------------------------------------------------
/nbproject/genfiles.properties:
--------------------------------------------------------------------------------
1 | build.xml.data.CRC32=8ac29f32
2 | build.xml.script.CRC32=0836793c
3 | build.xml.stylesheet.CRC32=651128d4@1.68.1.1
4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6 | nbproject/build-impl.xml.data.CRC32=8ac29f32
7 | nbproject/build-impl.xml.script.CRC32=33259d6b
8 | nbproject/build-impl.xml.stylesheet.CRC32=99ea4b56@1.68.1.1
9 |
--------------------------------------------------------------------------------
/.settings/org.eclipse.wst.common.component:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/WebContent/Cpython.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Insert title here
7 |
8 |
9 |
10 | PYTHON COMPILER
11 | Enter File Name :
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/.settings/.jsdtscope:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/WebContent/Cjava.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Insert title here
7 |
8 |
9 |
10 | JAVA COMPILER
11 | Enter Class Name :
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/nbproject/project.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | org.netbeans.modules.web.project
4 |
5 |
6 | Online-compilers
7 | 1.6.5
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/WebContent/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Insert title here
7 |
8 |
9 | Compilers
10 | for java click here
11 |
12 | for python click here
13 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | Online-compilers
4 |
5 |
6 |
7 |
8 |
9 | org.eclipse.jdt.core.javabuilder
10 |
11 |
12 |
13 |
14 | org.eclipse.wst.common.project.facet.core.builder
15 |
16 |
17 |
18 |
19 | org.eclipse.wst.validation.validationbuilder
20 |
21 |
22 |
23 |
24 |
25 | org.eclipse.jem.workbench.JavaEMFNature
26 | org.eclipse.wst.common.modulecore.ModuleCoreNature
27 | org.eclipse.wst.common.project.facet.core.nature
28 | org.eclipse.jdt.core.javanature
29 | org.eclipse.wst.jsdt.core.jsNature
30 |
31 |
32 |
--------------------------------------------------------------------------------
/src/Run.java:
--------------------------------------------------------------------------------
1 | import java.io.BufferedReader;
2 | import java.io.IOException;
3 | import java.io.InputStreamReader;
4 | import java.io.PrintWriter;
5 |
6 | import javax.servlet.ServletException;
7 | import javax.servlet.annotation.WebServlet;
8 | import javax.servlet.http.HttpServlet;
9 | import javax.servlet.http.HttpServletRequest;
10 | import javax.servlet.http.HttpServletResponse;
11 |
12 |
13 | @WebServlet("/Run")
14 | public class Run extends HttpServlet {
15 | private static final long serialVersionUID = 1L;
16 |
17 |
18 | protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
19 | PrintWriter out = response.getWriter();
20 | String filename = request.getParameter("classname").trim();
21 | String path = request.getServletContext().getRealPath("/");
22 |
23 | String runcmd = "java -cp " + path + "\\Files\\Classes\\ " + filename;
24 | Process exe = Runtime.getRuntime().exec(runcmd);
25 | try{
26 | exe.waitFor();
27 | BufferedReader bin = new BufferedReader(new InputStreamReader(exe.getInputStream()));
28 | BufferedReader berr = new BufferedReader(new InputStreamReader(exe.getErrorStream()));
29 | String res="";
30 | while(true){
31 | String temp=bin.readLine();
32 | if(temp==null){
33 | break;
34 | }
35 | else{
36 | res+=temp;
37 | }
38 | }
39 | if(res.equals("")){
40 | while(true){
41 | String temp = berr.readLine();
42 | if(temp==null){
43 | break;
44 | }
45 | else{
46 | res+=temp;
47 | }
48 | }
49 | }
50 | out.println(res);
51 | bin.close();
52 | berr.close();
53 | out.close();
54 | }
55 | catch(Exception e){
56 | System.out.println(e);
57 | }
58 | }
59 |
60 | }
61 |
--------------------------------------------------------------------------------
/src/Compile.java:
--------------------------------------------------------------------------------
1 | import java.io.BufferedReader;
2 | import java.io.File;
3 | import java.io.FileOutputStream;
4 | import java.io.IOException;
5 | import java.io.InputStreamReader;
6 | import java.io.PrintWriter;
7 |
8 | import javax.servlet.ServletException;
9 | import javax.servlet.annotation.WebServlet;
10 | import javax.servlet.http.HttpServlet;
11 | import javax.servlet.http.HttpServletRequest;
12 | import javax.servlet.http.HttpServletResponse;
13 |
14 |
15 |
16 | /**
17 | * Servlet implementation class Compile
18 | */
19 |
20 | @WebServlet("/Compile")
21 | public class Compile extends HttpServlet {
22 | private static final long serialVersionUID = 1L;
23 |
24 |
25 | protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
26 | String path = request.getServletContext().getRealPath("/");
27 | PrintWriter out = response.getWriter();
28 | String filename = request.getParameter("className")+".java";
29 | File fn = new File(path+"//Files//"+filename);
30 | FileOutputStream fos = new FileOutputStream(fn);
31 | System.out.println(request.getParameter("code"));
32 | byte[] sourcecode = request.getParameter("code").getBytes();
33 | fos.write(sourcecode);
34 | String compilecmd ="javac -d " + path + "\\Files\\Classes\\ " + path + "\\Files\\" + filename;
35 | Process error = Runtime.getRuntime().exec(compilecmd);
36 | BufferedReader br = new BufferedReader(new InputStreamReader(error.getErrorStream()));
37 | String res="";
38 | while(true){
39 | String str = br.readLine();
40 | if(str!=null){
41 | res+=str;
42 | res+="\n";
43 | }
44 | else{
45 | break;
46 | }
47 | }
48 | if(res.equals("")){
49 | res="Compiled Successfully";
50 | }
51 | out.println(res);
52 | br.close();
53 | fos.close();
54 | /*
55 | PrintWriter pw = response.getWriter();
56 | pw.println("");
57 | pw.println("hello world !!
");
58 | pw.println("");
59 | */
60 | }
61 |
62 | }
63 |
--------------------------------------------------------------------------------
/WebContent/p_main__script.js:
--------------------------------------------------------------------------------
1 |
2 |
3 | function check() {
4 |
5 | var classname = document.getElementById("class").value;
6 | classname.trim();
7 | if(classname == ""){
8 | alert("enter valid file name !!");
9 | document.getElementById("class").focus();
10 | }
11 |
12 | }
13 |
14 |
15 | function run() {
16 | console.log("compiling");
17 | if(document.getElementById("maincode")==""){
18 | alert("Insert some code please !");
19 | }
20 | else{
21 | //code = maincode
22 | //classname = class
23 | var code=encodeURIComponent(document.getElementById("maincode").value);
24 | var url = "PythCompile?code=" + code + "&className=" + document.getElementById("class").value;
25 |
26 | if(window.XMLHttpRequest){
27 | xmlhttp=new XMLHttpRequest();
28 | }
29 | else{
30 | xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
31 | }
32 |
33 | xmlhttp.onreadystatechange=function(){
34 | if(xmlhttp.readyState==4 && xmlhttp.status==200){
35 | document.getElementById("output").innerHTML=xmlhttp.responseText;
36 | }
37 | }
38 | xmlhttp.open("POST",url,true);
39 | xmlhttp.send();
40 | }
41 | console.log("compiled !!");
42 | console.log("executed !!");
43 | }
44 |
45 |
46 | /*function run() {
47 |
48 | var url = "Run?classname=" + document.getElementById("class").value;
49 |
50 | if(window.XMLHttpRequest){
51 | xmlhttp=new XMLHttpRequest();
52 | }
53 | else{
54 | xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
55 | }
56 |
57 | xmlhttp.onreadystatechange=function(){
58 | if(xmlhttp.readyState==4 && xmlhttp.status==200){
59 | document.getElementById("output").innerHTML=xmlhttp.responseText;
60 | }
61 | }
62 | xmlhttp.open("POST",url,true);
63 | xmlhttp.send();
64 | }*/
65 |
66 |
67 | function empty() {
68 | documet.getElementById("class").value="";
69 | document.getElementById("maincode").value="";
70 | document.getElementById("output").value="";
71 |
72 | }
--------------------------------------------------------------------------------
/nbproject/ant-deploy.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
25 |
28 |
29 |
30 |
31 |
32 |
34 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/WebContent/j_main__script.js:
--------------------------------------------------------------------------------
1 |
2 |
3 | function check() {
4 |
5 | var classname = document.getElementById("class").value;
6 | classname.trim();
7 | if(classname == ""){
8 | alert("enter valid class name !!");
9 | document.getElementById("class").focus();
10 | }
11 | else{
12 | document.getElementById("maincode").innerHTML = "public class " + classname + "{\n\t public static void main(String[] args){ \n\n\n } \n}" ;
13 | }
14 |
15 | }
16 |
17 |
18 | function compile() {
19 | console.log("compiling");
20 | if(document.getElementById("maincode")==""){
21 | alert("Insert some code please !");
22 | }
23 | else{
24 | //code = maincode
25 | //classname = class
26 | var code=encodeURIComponent(document.getElementById("maincode").value);
27 | var url = "Compile?code=" + code + "&className=" + document.getElementById("class").value;
28 |
29 | if(window.XMLHttpRequest){
30 | xmlhttp=new XMLHttpRequest();
31 | }
32 | else{
33 | xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
34 | }
35 |
36 | xmlhttp.onreadystatechange=function(){
37 | if(xmlhttp.readyState==4 && xmlhttp.status==200){
38 | document.getElementById("output").innerHTML=xmlhttp.responseText;
39 | }
40 | }
41 | xmlhttp.open("POST",url,true);
42 | xmlhttp.send();
43 | }
44 | console.log("compiled !!");
45 | }
46 |
47 |
48 | function run() {
49 |
50 | var url = "Run?classname=" + document.getElementById("class").value;
51 |
52 | if(window.XMLHttpRequest){
53 | xmlhttp=new XMLHttpRequest();
54 | }
55 | else{
56 | xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
57 | }
58 |
59 | xmlhttp.onreadystatechange=function(){
60 | if(xmlhttp.readyState==4 && xmlhttp.status==200){
61 | document.getElementById("output").innerHTML=xmlhttp.responseText;
62 | }
63 | }
64 | xmlhttp.open("POST",url,true);
65 | xmlhttp.send();
66 | }
67 |
68 |
69 | function empty() {
70 |
71 | document.getElementById("class").value="";
72 | document.getElementById("maincode").value="";
73 | document.getElementById("output").value="";
74 |
75 | }
--------------------------------------------------------------------------------
/src/PythCompile.java:
--------------------------------------------------------------------------------
1 |
2 |
3 | import java.io.BufferedReader;
4 | import java.io.File;
5 | import java.io.FileOutputStream;
6 | import java.io.IOException;
7 | import java.io.InputStreamReader;
8 | import java.io.PrintWriter;
9 |
10 | import javax.servlet.ServletException;
11 | import javax.servlet.annotation.WebServlet;
12 | import javax.servlet.http.HttpServlet;
13 | import javax.servlet.http.HttpServletRequest;
14 | import javax.servlet.http.HttpServletResponse;
15 |
16 | /**
17 | * Servlet implementation class PythCompile
18 | */
19 | @WebServlet("/PythCompile")
20 | public class PythCompile extends HttpServlet {
21 | private static final long serialVersionUID = 1L;
22 |
23 | /**
24 | * @see HttpServlet#service(HttpServletRequest request, HttpServletResponse response)
25 | */
26 | protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
27 |
28 | String path = request.getServletContext().getRealPath("/");
29 | PrintWriter out = response.getWriter();
30 | String filename = request.getParameter("className")+".py";
31 | File fn = new File(path+"//Files//"+filename);
32 | FileOutputStream fos = new FileOutputStream(fn);
33 | System.out.println(request.getParameter("code"));
34 | byte[] sourcecode = request.getParameter("code").getBytes();
35 | fos.write(sourcecode);
36 | /*Process setpath = Runtime.getRuntime().exec(pathset);
37 | try{
38 | setpath.waitFor();
39 | }
40 | catch(Exception e){
41 | System.out.println(e);
42 | }*/
43 | /*try{
44 | Thread.sleep(3000);
45 | }
46 | catch(Exception e){
47 | System.out.println(e);
48 | }*/
49 | String gotopath = "cd " + path + "\\Files";
50 | System.out.println(gotopath);
51 | Process pathset = Runtime.getRuntime().exec(gotopath);
52 | try{
53 | pathset.waitFor();
54 | }
55 | catch(Exception e){
56 | System.out.println(e);
57 | }
58 | String compilecmd = "python " + filename;
59 | System.out.println(compilecmd);
60 | Process exe = Runtime.getRuntime().exec(compilecmd);
61 | try{
62 | exe.waitFor();
63 | BufferedReader bin = new BufferedReader(new InputStreamReader(exe.getInputStream()));
64 | BufferedReader berr = new BufferedReader(new InputStreamReader(exe.getErrorStream()));
65 | String res="";
66 | while(true){
67 | String temp=bin.readLine();
68 | if(temp==null){
69 | break;
70 | }
71 | else{
72 | res+=temp;
73 | }
74 | }
75 | if(res.equals("")){
76 | while(true){
77 | String temp = berr.readLine();
78 | if(temp==null){
79 | break;
80 | }
81 | else{
82 | res+=temp;
83 | }
84 | }
85 | }
86 | out.println(res);
87 | bin.close();
88 | berr.close();
89 | out.println(request.getParameter("code"));
90 | out.close();
91 | }
92 | catch(Exception e){
93 | System.out.println(e);
94 | }
95 | fos.close();
96 |
97 | }
98 |
99 | }
100 |
--------------------------------------------------------------------------------
/nbproject/project.properties:
--------------------------------------------------------------------------------
1 | annotation.processing.enabled=true
2 | annotation.processing.enabled.in.editor=true
3 | annotation.processing.processors.list=
4 | annotation.processing.run.all.processors=true
5 | annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output
6 | auxiliary.org-netbeans-modules-projectimport-eclipse-core.key=src=src;output=build/classes;web=/WebContent;context=Online-compilers;
7 | auxiliary.org-netbeans-modules-projectimport-eclipse-core.project=.
8 | auxiliary.org-netbeans-modules-projectimport-eclipse-core.timestamp=1470506682819
9 | auxiliary.org-netbeans-modules-projectimport-eclipse-core.workspace=..
10 | build.classes.dir=${build.web.dir}/WEB-INF/classes
11 | build.classes.excludes=**/*.java,**/*.form
12 | build.dir=nbbuild
13 | build.generated.dir=${build.dir}/generated
14 | build.generated.sources.dir=${build.dir}/generated-sources
15 | build.test.classes.dir=${build.dir}/test/classes
16 | build.test.results.dir=${build.dir}/test/results
17 | build.web.dir=${build.dir}/web
18 | build.web.excludes=${build.classes.excludes}
19 | client.urlPart=
20 | compile.jsps=false
21 | conf.dir=conf
22 | debug.classpath=${build.classes.dir}:${javac.classpath}
23 | debug.test.classpath=\
24 | ${run.test.classpath}
25 | display.browser=true
26 | dist.dir=dist
27 | dist.ear.war=${dist.dir}/${war.ear.name}
28 | dist.javadoc.dir=${dist.dir}/javadoc
29 | dist.war=${dist.dir}/${war.name}
30 | excludes=
31 | file.reference.Online-compilers-src=src
32 | includes=**
33 | j2ee.compile.on.save=true
34 | j2ee.copy.static.files.on.save=true
35 | j2ee.deploy.on.save=true
36 | j2ee.platform=1.5
37 | j2ee.platform.classpath=${j2ee.server.home}/lib/annotations-api.jar:${j2ee.server.home}/lib/catalina-ant.jar:${j2ee.server.home}/lib/catalina-ha.jar:${j2ee.server.home}/lib/catalina-storeconfig.jar:${j2ee.server.home}/lib/catalina-tribes.jar:${j2ee.server.home}/lib/catalina.jar:${j2ee.server.home}/lib/ecj-4.4.2.jar:${j2ee.server.home}/lib/el-api.jar:${j2ee.server.home}/lib/jasper-el.jar:${j2ee.server.home}/lib/jasper.jar:${j2ee.server.home}/lib/jsp-api.jar:${j2ee.server.home}/lib/servlet-api.jar:${j2ee.server.home}/lib/tomcat-api.jar:${j2ee.server.home}/lib/tomcat-coyote.jar:${j2ee.server.home}/lib/tomcat-dbcp.jar:${j2ee.server.home}/lib/tomcat-i18n-es.jar:${j2ee.server.home}/lib/tomcat-i18n-fr.jar:${j2ee.server.home}/lib/tomcat-i18n-ja.jar:${j2ee.server.home}/lib/tomcat-jdbc.jar:${j2ee.server.home}/lib/tomcat-jni.jar:${j2ee.server.home}/lib/tomcat-util-scan.jar:${j2ee.server.home}/lib/tomcat-util.jar:${j2ee.server.home}/lib/tomcat-websocket.jar:${j2ee.server.home}/lib/websocket-api.jar
38 | j2ee.server.type=Tomcat
39 | jar.compress=false
40 | java.source.based=true
41 | javac.classpath=
42 | # Space-separated list of extra javac options
43 | javac.compilerargs=
44 | javac.debug=true
45 | javac.deprecation=false
46 | javac.processorpath=\
47 | ${javac.classpath}
48 | javac.source=1.8
49 | javac.target=1.8
50 | javac.test.classpath=\
51 | ${javac.classpath}:\
52 | ${build.classes.dir}
53 | javac.test.processorpath=\
54 | ${javac.test.classpath}
55 | javadoc.additionalparam=
56 | javadoc.author=false
57 | javadoc.encoding=${source.encoding}
58 | javadoc.noindex=false
59 | javadoc.nonavbar=false
60 | javadoc.notree=false
61 | javadoc.preview=true
62 | javadoc.private=false
63 | javadoc.splitindex=true
64 | javadoc.use=true
65 | javadoc.version=false
66 | javadoc.windowtitle=
67 | lib.dir=WebContent/WEB-INF/lib
68 | no.dependencies=false
69 | persistence.xml.dir=${conf.dir}
70 | platform.active=default_platform
71 | resource.dir=setup
72 | run.test.classpath=\
73 | ${javac.test.classpath}:\
74 | ${build.test.classes.dir}
75 | # Space-separated list of JVM arguments used when running a class with a main method or a unit test
76 | # (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value):
77 | runmain.jvmargs=
78 | source.encoding=UTF-8
79 | source.root=.
80 | src.dir=${file.reference.Online-compilers-src}
81 | test.src.dir=
82 | war.content.additional=
83 | war.ear.name=${war.name}
84 | war.name=Online-compilers.war
85 | web.docbase.dir=WebContent
86 | webinf.dir=WebContent/WEB-INF
87 |
--------------------------------------------------------------------------------
/nbproject/build-impl.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
223 |
224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 |
232 |
233 |
234 |
235 | Must set src.dir
236 | Must set build.dir
237 | Must set build.web.dir
238 | Must set build.generated.dir
239 | Must set dist.dir
240 | Must set build.classes.dir
241 | Must set dist.javadoc.dir
242 | Must set build.test.classes.dir
243 | Must set build.test.results.dir
244 | Must set build.classes.excludes
245 | Must set dist.war
246 |
247 |
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 | The Java EE server classpath is not correctly set up - server home directory is missing.
256 | Either open the project in the IDE and assign the server or setup the server classpath manually.
257 | For example like this:
258 | ant -Dj2ee.server.home=<app_server_installation_directory>
259 |
260 |
261 | The Java EE server classpath is not correctly set up. Your active server type is ${j2ee.server.type}.
262 | Either open the project in the IDE and assign the server or setup the server classpath manually.
263 | For example like this:
264 | ant -Duser.properties.file=<path_to_property_file> (where you put the property "j2ee.platform.classpath" in a .properties file)
265 | or ant -Dj2ee.platform.classpath=<server_classpath> (where no properties file is used)
266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 |
278 |
279 |
280 |
281 |
282 |
283 |
284 |
285 |
286 |
287 |
288 |
289 |
290 |
291 |
292 |
293 |
294 |
295 |
296 |
297 |
298 |
299 |
300 |
301 |
302 |
303 |
304 |
305 |
306 |
307 |
308 |
309 |
310 |
311 |
312 |
313 |
314 |
315 |
316 |
317 |
318 |
319 |
320 |
321 |
322 |
323 |
324 |
325 |
326 |
327 |
328 |
329 |
330 |
331 |
332 |
333 |
334 |
335 |
336 |
337 |
338 |
339 |
340 |
341 |
342 |
343 |
344 |
345 |
346 |
347 |
348 |
349 |
350 |
351 |
352 |
353 |
354 |
355 |
356 |
357 |
358 |
359 |
360 |
361 |
362 | Must set javac.includes
363 |
364 |
365 |
366 |
367 |
368 |
369 |
370 |
371 |
372 |
373 |
374 |
375 |
376 |
377 |
378 |
379 |
380 |
381 |
382 |
383 |
384 |
385 |
386 |
387 |
388 |
389 |
390 |
391 |
392 |
393 |
394 |
395 |
396 |
397 |
398 |
399 |
400 |
401 |
402 |
403 |
404 |
405 |
406 |
407 |
408 |
409 |
410 |
411 |
412 |
413 |
414 |
415 |
416 |
417 |
418 |
419 |
420 |
421 |
422 |
423 |
424 |
425 |
426 |
427 |
428 |
429 |
430 |
431 |
432 |
433 |
434 |
435 |
436 |
437 |
438 |
439 |
440 |
441 |
442 |
443 |
444 |
445 |
446 |
447 |
448 |
449 |
450 |
451 |
452 |
453 |
454 |
455 |
456 |
457 |
458 |
459 |
460 |
461 |
462 |
463 |
464 |
465 |
466 |
467 |
468 |
469 |
470 |
471 |
472 |
473 |
474 |
475 |
476 |
477 |
478 |
479 |
480 |
481 |
482 | No tests executed.
483 |
484 |
485 |
486 |
487 |
488 |
489 |
490 |
491 |
492 |
493 |
494 |
495 |
496 |
497 |
498 |
499 |
500 |
501 |
502 |
503 |
504 |
505 |
506 |
507 |
508 |
509 |
510 |
511 |
512 |
513 |
514 |
515 |
516 |
517 |
518 |
519 |
520 |
521 |
522 |
523 |
524 |
525 |
526 |
527 |
528 |
529 |
530 |
531 |
532 |
533 |
534 |
535 |
536 |
537 |
538 |
539 |
540 |
541 |
542 |
543 |
544 |
545 |
546 |
547 |
548 |
549 |
550 |
551 |
552 |
553 |
554 |
555 |
556 |
557 |
558 |
559 |
560 |
561 |
562 |
563 |
564 |
565 |
566 |
567 |
568 |
569 |
570 |
571 |
572 |
573 |
574 |
575 |
576 |
577 |
578 |
579 |
580 |
581 |
582 |
583 |
584 |
585 |
586 |
587 |
588 |
589 |
590 |
591 |
592 |
593 |
594 |
595 |
596 |
597 |
598 |
599 |
600 |
601 |
602 |
603 |
604 |
605 |
606 |
607 |
608 |
609 |
610 |
611 |
612 |
613 |
614 |
615 |
616 |
617 |
618 |
619 |
620 |
621 |
622 |
623 |
624 |
625 |
626 |
627 |
628 |
629 |
630 |
631 |
632 |
633 |
634 |
635 |
636 |
637 |
638 |
639 |
640 |
641 |
642 |
643 |
644 |
645 |
646 |
647 |
648 |
649 |
650 |
651 |
652 |
653 |
654 |
655 |
656 |
657 |
658 |
659 |
660 |
661 |
662 |
663 |
664 |
665 |
666 |
667 |
668 |
669 |
670 |
671 |
672 |
673 |
674 |
675 |
676 |
677 |
678 |
679 |
680 |
681 |
682 |
683 |
684 |
685 |
686 |
687 |
688 |
689 |
690 |
691 |
692 |
693 |
694 |
695 |
696 |
697 |
698 |
699 |
700 |
701 |
702 |
703 |
704 |
705 |
706 |
707 |
708 |
709 |
710 |
711 |
712 |
713 |
714 |
715 |
716 |
717 |
718 |
719 |
720 |
721 |
722 |
723 |
724 |
725 |
726 |
727 |
728 |
729 |
730 |
731 |
732 |
733 |
734 |
735 |
736 |
737 |
738 |
739 |
740 |
741 |
742 |
743 |
744 |
745 |
746 |
747 |
748 |
749 |
750 |
751 |
752 |
753 |
754 |
755 |
756 |
757 |
758 |
759 |
760 |
761 |
762 |
763 |
764 |
765 |
766 |
767 |
768 |
769 |
770 |
771 |
772 |
773 |
774 |
775 |
776 |
777 |
778 |
779 |
780 |
781 |
782 |
783 |
784 |
785 | The libs.CopyLibs.classpath property is not set up.
786 | This property must point to
787 | org-netbeans-modules-java-j2seproject-copylibstask.jar file which is part
788 | of NetBeans IDE installation and is usually located at
789 | <netbeans_installation>/java<version>/ant/extra folder.
790 | Either open the project in the IDE and make sure CopyLibs library
791 | exists or setup the property manually. For example like this:
792 | ant -Dlibs.CopyLibs.classpath=a/path/to/org-netbeans-modules-java-j2seproject-copylibstask.jar
793 |
794 |
795 |
796 |
797 |
798 |
799 |
800 |
801 |
802 |
803 |
804 |
805 |
806 |
807 |
808 |
809 |
810 |
811 |
812 |
813 |
814 |
815 |
816 |
817 |
818 |
819 |
822 |
823 |
824 |
825 |
826 |
827 |
828 |
829 |
830 |
831 |
832 | Must set JVM to use for profiling in profiler.info.jvm
833 | Must set profiler agent JVM arguments in profiler.info.jvmargs.agent
834 |
835 |
838 |
839 |
842 |
843 |
844 |
845 |
846 |
847 |
848 |
849 |
850 |
851 |
852 |
853 |
854 |
855 |
856 |
857 |
858 |
859 |
860 |
861 |
862 |
863 |
864 |
865 |
866 |
867 |
868 |
869 |
870 |
871 |
872 |
873 |
874 |
875 |
876 |
877 |
878 |
879 |
880 |
881 |
882 |
883 |
884 |
885 |
886 |
887 |
888 | Must select some files in the IDE or set javac.includes
889 |
890 |
891 |
892 |
893 |
894 |
895 |
896 |
897 |
898 |
899 |
900 |
901 |
902 |
903 |
904 |
905 |
906 |
907 |
908 |
909 |
910 |
911 |
912 |
913 |
914 |
915 |
916 |
917 |
918 |
919 |
920 |
921 | Must select some files in the IDE or set javac.jsp.includes
922 |
923 |
924 |
925 |
926 |
927 |
928 |
929 |
930 |
931 |
932 |
933 |
934 |
935 |
936 |
937 |
938 |
939 |
940 |
941 |
942 |
943 |
944 |
945 |
946 |
947 | Must select a file in the IDE or set jsp.includes
948 |
949 |
950 |
953 |
954 |
955 |
956 |
957 |
958 |
959 |
960 |
961 |
962 |
963 |
964 |
965 |
966 |
967 |
968 |
969 |
970 |
971 |
972 |
973 |
974 |
975 |
976 |
977 |
978 |
979 |
980 |
981 |
982 |
983 |
984 |
985 |
986 |
987 |
988 |
989 |
990 |
991 |
992 |
993 |
994 |
995 |
996 |
997 |
998 |
999 |
1000 |
1001 |
1002 |
1003 |
1004 |
1005 |
1006 |
1007 |
1010 |
1011 |
1012 |
1013 |
1014 |
1015 |
1016 |
1017 |
1018 |
1019 |
1020 |
1021 |
1022 |
1023 |
1024 |
1025 |
1026 |
1027 |
1028 |
1029 |
1030 |
1031 |
1032 |
1033 |
1034 |
1035 |
1036 |
1037 |
1038 |
1039 |
1040 |
1041 |
1042 |
1043 |
1044 |
1045 |
1046 |
1047 |
1048 |
1049 |
1050 |
1051 |
1052 |
1053 |
1054 |
1055 |
1056 |
1057 |
1058 |
1059 |
1060 |
1061 |
1062 |
1063 |
1064 |
1065 |
1066 |
1067 |
1068 |
1069 |
1070 |
1071 |
1072 |
1073 |
1074 |
1075 |
1076 |
1077 |
1078 |
1079 |
1080 |
1081 |
1082 |
1083 |
1084 |
1085 |
1086 |
1087 |
1088 |
1089 |
1090 |
1091 |
1092 |
1093 |
1094 |
1095 |
1096 |
1097 |
1098 |
1099 |
1100 |
1101 |
1102 |
1103 |
1104 |
1105 |
1106 |
1107 |
1108 |
1109 |
1110 |
1111 |
1112 |
1113 |
1114 | Browser not found, cannot launch the deployed application. Try to set the BROWSER environment variable.
1115 |
1116 |
1117 | Launching ${browse.url}
1118 |
1119 |
1120 |
1121 |
1122 |
1123 | Must select one file in the IDE or set run.class
1124 |
1125 |
1126 |
1127 | Must select one file in the IDE or set run.class
1128 |
1129 |
1130 |
1131 |
1132 |
1133 |
1136 |
1137 |
1138 |
1139 |
1140 |
1141 |
1142 |
1143 |
1144 |
1145 |
1146 |
1147 |
1148 |
1149 |
1150 |
1151 |
1152 |
1153 |
1154 |
1155 |
1156 |
1157 |
1158 |
1159 |
1160 |
1161 |
1162 |
1163 |
1164 |
1165 |
1166 |
1167 | Must select one file in the IDE or set debug.class
1168 |
1169 |
1170 |
1171 |
1172 |
1173 |
1174 |
1175 |
1176 |
1177 |
1178 |
1179 | Must select one file in the IDE or set debug.class
1180 |
1181 |
1182 |
1183 |
1184 | Must set fix.includes
1185 |
1186 |
1187 |
1188 |
1189 |
1190 |
1191 |
1196 |
1199 |
1200 |
1201 |
1202 |
1203 |
1204 |
1205 |
1206 |
1207 |
1208 |
1209 |
1210 |
1211 |
1212 |
1213 |
1214 |
1215 |
1216 |
1217 |
1218 |
1219 |
1220 |
1221 | This target only works when run from inside the NetBeans IDE.
1222 |
1223 |
1224 |
1225 |
1226 |
1227 |
1228 |
1229 |
1230 |
1231 |
1232 |
1233 |
1234 |
1235 |
1236 |
1237 |
1238 |
1239 |
1240 |
1241 |
1242 |
1243 |
1244 |
1245 |
1246 |
1247 |
1248 |
1249 |
1250 |
1251 |
1252 |
1253 |
1254 |
1255 |
1256 |
1257 |
1258 |
1259 |
1260 |
1261 |
1262 |
1263 |
1264 |
1265 |
1266 |
1267 |
1268 |
1269 |
1270 |
1271 |
1272 |
1275 |
1276 |
1277 |
1278 |
1279 |
1280 |
1281 |
1282 |
1283 |
1284 |
1285 |
1286 |
1287 |
1288 |
1289 |
1290 |
1291 |
1292 |
1293 |
1294 |
1295 |
1296 |
1297 |
1298 |
1299 |
1300 |
1301 |
1305 |
1306 |
1307 |
1308 |
1309 |
1310 |
1311 |
1312 |
1313 |
1314 |
1315 |
1316 |
1317 |
1318 |
1319 |
1320 |
1321 |
1322 |
1323 |
1324 |
1325 |
1326 |
1327 | Must select some files in the IDE or set javac.includes
1328 |
1329 |
1330 |
1331 |
1332 |
1333 |
1334 |
1335 |
1336 |
1340 |
1341 |
1342 |
1343 |
1344 |
1345 |
1346 |
1347 | Some tests failed; see details above.
1348 |
1349 |
1350 |
1351 |
1352 |
1353 |
1354 |
1355 |
1356 | Must select some files in the IDE or set test.includes
1357 |
1358 |
1359 |
1360 | Some tests failed; see details above.
1361 |
1362 |
1363 |
1364 | Must select some files in the IDE or set test.class
1365 | Must select some method in the IDE or set test.method
1366 |
1367 |
1368 |
1369 | Some tests failed; see details above.
1370 |
1371 |
1372 |
1376 |
1377 | Must select one file in the IDE or set test.class
1378 |
1379 |
1380 |
1381 | Must select one file in the IDE or set test.class
1382 | Must select some method in the IDE or set test.method
1383 |
1384 |
1385 |
1386 |
1387 |
1388 |
1389 |
1390 |
1391 |
1392 |
1393 |
1394 |
1398 |
1399 |
1400 |
1401 |
1402 |
1403 |
1404 |
1405 |
1406 |
1407 |
1408 |
1409 |
1410 |
1411 |
1412 |
1413 |
1414 |
1415 |
1416 |
1417 |
1418 |
1419 |
1420 |
1421 |
1422 |
1423 |
1424 |
1425 |
--------------------------------------------------------------------------------