Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Test
Cometd
Commits
7cf93e07
Commit
7cf93e07
authored
Oct 21, 2019
by
Primoz
Browse files
No commit message
No commit message
parent
a134019d
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
CometdTest/build.xml
0 → 100644
View file @
7cf93e07
<?xml version="1.0" encoding="UTF-8"?>
<!-- You may freely edit this file. See commented blocks below for -->
<!-- some examples of how to customize the build. -->
<!-- (If you delete it and reopen the project it will be recreated.) -->
<!-- By default, only the Clean and Build commands use this build script. -->
<!-- Commands such as Run, Debug, and Test only use this build script if -->
<!-- the Compile on Save feature is turned off for the project. -->
<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
<!-- in the project's Project Properties dialog box.-->
<project
name=
"CometdTest"
default=
"default"
basedir=
"."
>
<description>
Builds, tests, and runs the project CometdTest.
</description>
<import
file=
"nbproject/build-impl.xml"
/>
<!--
There exist several targets which are by default empty and which can be
used for execution of your tasks. These targets are usually executed
before and after some main targets. They are:
-pre-init: called before initialization of project properties
-post-init: called after initialization of project properties
-pre-compile: called before javac compilation
-post-compile: called after javac compilation
-pre-compile-single: called before javac compilation of single file
-post-compile-single: called after javac compilation of single file
-pre-compile-test: called before javac compilation of JUnit tests
-post-compile-test: called after javac compilation of JUnit tests
-pre-compile-test-single: called before javac compilation of single JUnit test
-post-compile-test-single: called after javac compilation of single JUunit test
-pre-dist: called before archive building
-post-dist: called after archive building
-post-clean: called after cleaning build products
-pre-run-deploy: called before deploying
-post-run-deploy: called after deploying
Example of pluging an obfuscator after the compilation could look like
<target name="-post-compile">
<obfuscate>
<fileset dir="${build.classes.dir}"/>
</obfuscate>
</target>
For list of available properties check the imported
nbproject/build-impl.xml file.
Other way how to customize the build is by overriding existing main targets.
The target of interest are:
init-macrodef-javac: defines macro for javac compilation
init-macrodef-junit: defines macro for junit execution
init-macrodef-debug: defines macro for class debugging
do-dist: archive building
run: execution of project
javadoc-build: javadoc generation
Example of overriding the target for project execution could look like
<target name="run" depends="<PROJNAME>-impl.jar">
<exec dir="bin" executable="launcher.exe">
<arg file="${dist.jar}"/>
</exec>
</target>
Notice that overridden target depends on jar target and not only on
compile target as regular run target does. Again, for list of available
properties which you can use check the target you are overriding in
nbproject/build-impl.xml file.
-->
</project>
CometdTest/nbproject/ant-deploy.xml
0 → 100644
View file @
7cf93e07
<?xml version="1.0" encoding="UTF-8"?>
<project
default=
"-deploy-ant"
basedir=
"."
>
<target
name=
"-init"
if=
"deploy.ant.enabled"
>
<property
file=
"${deploy.ant.properties.file}"
/>
<tempfile
property=
"temp.module.folder"
prefix=
"tomcat"
destdir=
"${java.io.tmpdir}"
/>
<unwar
src=
"${deploy.ant.archive}"
dest=
"${temp.module.folder}"
>
<patternset
includes=
"META-INF/context.xml"
/>
</unwar>
<xmlproperty
file=
"${temp.module.folder}/META-INF/context.xml"
/>
<delete
dir=
"${temp.module.folder}"
/>
</target>
<target
name=
"-check-credentials"
if=
"deploy.ant.enabled"
depends=
"-init"
>
<fail
message=
"Tomcat password has to be passed as tomcat.password property."
>
<condition>
<not>
<isset
property=
"tomcat.password"
/>
</not>
</condition>
</fail>
</target>
<target
name=
"-deploy-ant"
if=
"deploy.ant.enabled"
depends=
"-init,-check-credentials"
>
<echo
message=
"Deploying ${deploy.ant.archive} to ${Context(path)}"
/>
<taskdef
name=
"deploy"
classname=
"org.apache.catalina.ant.DeployTask"
classpath=
"${tomcat.home}/server/lib/catalina-ant.jar"
/>
<deploy
url=
"${tomcat.url}/manager"
username=
"${tomcat.username}"
password=
"${tomcat.password}"
path=
"${Context(path)}"
war=
"${deploy.ant.archive}"
/>
<property
name=
"deploy.ant.client.url"
value=
"${tomcat.url}${Context(path)}"
/>
</target>
<target
name=
"-undeploy-ant"
if=
"deploy.ant.enabled"
depends=
"-init,-check-credentials"
>
<echo
message=
"Undeploying ${Context(path)}"
/>
<taskdef
name=
"undeploy"
classname=
"org.apache.catalina.ant.UndeployTask"
classpath=
"${tomcat.home}/server/lib/catalina-ant.jar"
/>
<undeploy
url=
"${tomcat.url}/manager"
username=
"${tomcat.username}"
password=
"${tomcat.password}"
path=
"${Context(path)}"
/>
</target>
</project>
CometdTest/nbproject/build-impl.xml
0 → 100644
View file @
7cf93e07
This diff is collapsed.
Click to expand it.
CometdTest/nbproject/genfiles.properties
0 → 100644
View file @
7cf93e07
build.xml.data.CRC32
=
82e6c53c
build.xml.script.CRC32
=
49f9427c
build.xml.stylesheet.CRC32
=
651128d4@1.75.1.1
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
nbproject/
build-impl.xml.data.CRC32
=
82e6c53c
nbproject/
build-impl.xml.script.CRC32
=
e73b71d8
nbproject/
build-impl.xml.stylesheet.CRC32
=
99ea4b56@1.75.1.1
CometdTest/nbproject/project.properties
0 → 100644
View file @
7cf93e07
annotation.processing.enabled
=
true
annotation.processing.enabled.in.editor
=
true
annotation.processing.processors.list
=
annotation.processing.run.all.processors=true
annotation.processing.source.output
=
${build.generated.sources.dir}/ap-source-output
build.classes.dir
=
${build.web.dir}/WEB-INF/classes
build.classes.excludes
=
**/*.java,**/*.form
build.dir
=
build
build.generated.dir
=
${build.dir}/generated
build.generated.sources.dir
=
${build.dir}/generated-sources
build.test.classes.dir
=
${build.dir}/test/classes
build.test.results.dir
=
${build.dir}/test/results
build.web.dir
=
${build.dir}/web
build.web.excludes
=
${build.classes.excludes}
client.urlPart
=
compile.jsps=false
conf.dir
=
${source.root}/conf
debug.classpath
=
${build.classes.dir}:${javac.classpath}
debug.test.classpath
=
\
${run.test.classpath}
display.browser
=
true
# Files to be excluded from distribution war
dist.archive.excludes
=
dist.dir=dist
dist.ear.war
=
${dist.dir}/${war.ear.name}
dist.javadoc.dir
=
${dist.dir}/javadoc
dist.war
=
${dist.dir}/${war.name}
endorsed.classpath
=
\
${libs.javaee-endorsed-api-7.0.classpath}
excludes
=
includes=**
j2ee.compile.on.save
=
true
j2ee.copy.static.files.on.save
=
true
j2ee.deploy.on.save
=
true
j2ee.platform
=
1.7-web
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
j2ee.server.type
=
Tomcat
jar.compress
=
false
javac.classpath
=
# Space-separated list of extra javac options
javac.compilerargs=
javac.debug
=
true
javac.deprecation
=
false
javac.processorpath
=
\
${javac.classpath}
javac.source
=
1.8
javac.target
=
1.8
javac.test.classpath
=
\
${javac.classpath}:\
${build.classes.dir}
javac.test.processorpath
=
\
${javac.test.classpath}
javadoc.additionalparam
=
javadoc.author=false
javadoc.encoding
=
${source.encoding}
javadoc.noindex
=
false
javadoc.nonavbar
=
false
javadoc.notree
=
false
javadoc.preview
=
true
javadoc.private
=
false
javadoc.splitindex
=
true
javadoc.use
=
true
javadoc.version
=
false
javadoc.windowtitle
=
lib.dir=${web.docbase.dir}/WEB-INF/lib
no.dependencies
=
false
persistence.xml.dir
=
${conf.dir}
platform.active
=
default_platform
resource.dir
=
setup
run.test.classpath
=
\
${javac.test.classpath}:\
${build.test.classes.dir}
# Space-separated list of JVM arguments used when running a class with a main method or a unit test
# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value):
runmain.jvmargs
=
source.encoding=UTF-8
source.root
=
src
src.dir
=
${source.root}/java
test.src.dir
=
test
war.content.additional
=
war.ear.name=${war.name}
war.name
=
CometdTest.war
web.docbase.dir
=
web
webinf.dir
=
web/WEB-INF
CometdTest/nbproject/project.xml
0 → 100644
View file @
7cf93e07
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://www.netbeans.org/ns/project/1"
>
<type>
org.netbeans.modules.web.project
</type>
<configuration>
<data
xmlns=
"http://www.netbeans.org/ns/web-project/3"
>
<name>
CometdTest
</name>
<minimum-ant-version>
1.6.5
</minimum-ant-version>
<web-module-libraries/>
<web-module-additional-libraries/>
<source-roots>
<root
id=
"src.dir"
name=
"Source Packages"
/>
</source-roots>
<test-roots>
<root
id=
"test.src.dir"
name=
"Test Packages"
/>
</test-roots>
</data>
</configuration>
</project>
CometdTest/src/conf/MANIFEST.MF
0 → 100644
View file @
7cf93e07
Manifest-Version: 1.0
CometdTest/web/META-INF/context.xml
0 → 100644
View file @
7cf93e07
<?xml version="1.0" encoding="UTF-8"?>
<Context
path=
"/CometdTest"
/>
CometdTest/web/index.jsp
0 → 100644
View file @
7cf93e07
<%--
Document : index
Created on : Oct 21, 2019, 11:57:59 AM
Author : Primoz
--%>
<%@page
contentType=
"text/html"
pageEncoding=
"UTF-8"
%>
<!DOCTYPE html>
<html>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<title>
JSP Page
</title>
</head>
<body>
<h1>
Hello World!
</h1>
</body>
</html>
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment