Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions WebContent/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@
<hr>
<div id="topOfPage">
<center><img src="images/GOT.jpg" align="center"></img></center>
<p>Game of Thrones is an American fantasy drama web series created by David Benioff and D. B. Weiss. It is an adaptation of a Song of Ice and Fire, George R. R. Martin's series of fantasy novels, the first of which is 'A Game of Thrones'!!!</p>
<p>Game of Thrones is an Indian fantasy drama web series created by David Benioff and D. B. Weiss. It is an adaptation of a Song of Ice and Fire, George R. R. Martin's series of fantasy novels, the first of which is 'A Game of Thrones'!!!</p>

<p><h3>General Plot:</h3> A story of greed, lust, thirst for power, ruthlessness, barbarity - GOT is a story of seven kingdoms vying and sparring over absolute power and control to the Iron Throne.</p>
<iframe align = "right" width="400" height="200" src="https://www.youtube.com/embed/522l0YE9hRQ" frameborder="0" allowfullscreen></iframe>
</div>
<hr>
<p><h3>Warring kingdoms:</h3>
<ul>
<li>Kingdom of the North!</li>
<li>Kingdom of the North!!</li>
<li>Kingdom of the Mountain and the Vale!</li>
<li>Kingdom of the Isles and Rivers</li>
<li>Kingdom of the Isles and Rivers.</li>
<li>Kingdom of the Rock</li>
<li>Kingdom of the Stormlands</li>
<li>Kingdom of the Reach</li>
Expand Down
19 changes: 11 additions & 8 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
</fileset>
</path>
<target name="init">
<mkdir dir="build/classes"/>
<mkdir dir="dist"/>
</target>
<mkdir dir="build/classes"/>
<mkdir dir="dist"/>
<mkdir dir="dest"/>
</target>
<target name="compile" depends="init">
<javac srcdir="src" debug="true" destdir="build/classes">
<classpath refid="compile.classpath"/>
Expand All @@ -22,18 +23,20 @@
</checkstyle>
</target>
<target name="junit" depends="compile">
<mkdir dir="build/test-results"/>
<junit printsummary="yes" haltonfailure="yes">
<classpath>
<classpath>
<pathelement location="build/classes"/>
<pathelement path="WebContent/WEB-INF/lib/junit.jar"/>
<pathelement path="WebContent/WEB-INF/lib/org.hamcrest.core_1.3.0.v201303031735.jar"/>
</classpath>
<test name="junit.TestCalculator" haltonfailure="no" outfile="TestCalculator_JUnitResult">
</classpath>
<test name="junit.TestCalculator" haltonfailure="no" todir="build/test-results" outfile="TEST-TestCalculator">
<formatter type="xml"/>
</test>
</test>
</junit>
</target>
<target name="war" depends="compile">

<target name="war" depends="init,compile">
<war destfile="dest/SampleWebApp.war" webxml="WebContent/WEB-INF/web.xml">
<fileset dir="WebContent"/>
<lib dir="WebContent/WEB-INF/lib"/>
Expand Down