Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
test-code
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
koala-cloud
DEPRECATED_s2i
test-code
Commits
b994936b
Commit
b994936b
authored
Dec 26, 2017
by
Brian Holsen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add test projct for java-8 webapp
parent
8ff8125c
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
36 additions
and
0 deletions
+36
-0
.gitignore
java/8/webapp/.gitignore
+3
-0
pom.xml
java/8/webapp/pom.xml
+21
-0
web.xml
java/8/webapp/src/main/webapp/WEB-INF/web.xml
+7
-0
index.jsp
java/8/webapp/src/main/webapp/index.jsp
+5
-0
No files found.
java/8/webapp/.gitignore
0 → 100644
View file @
b994936b
/.idea
/target
/*.iml
java/8/webapp/pom.xml
0 → 100644
View file @
b994936b
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
com.koalacloud.s2i.test
</groupId>
<artifactId>
java8
</artifactId>
<packaging>
war
</packaging>
<version>
1.0-SNAPSHOT
</version>
<name>
java8 Maven Webapp
</name>
<url>
http://maven.apache.org
</url>
<dependencies>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
3.8.1
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
<build>
<finalName>
java8
</finalName>
</build>
</project>
java/8/webapp/src/main/webapp/WEB-INF/web.xml
0 → 100644
View file @
b994936b
<!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>
<display-name>
Archetype Created Web Application
</display-name>
</web-app>
java/8/webapp/src/main/webapp/index.jsp
0 → 100644
View file @
b994936b
<html>
<body>
<h2>
Hello World!
</h2>
</body>
</html>
Write
Preview
Markdown
is supported
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