Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
e270aad
Update README.md
tahararib Feb 24, 2023
1eab802
Update README.md
tahararib Feb 24, 2023
eb49a55
Update index.jsp
tahararib Dec 5, 2023
b1a7bff
first local commit
Dec 12, 2023
557bbee
Delete file1.txt
tahararib Dec 12, 2023
ea3957b
first commit on dev local branch
Dec 12, 2023
23fa57c
Merge pull request #5 from tahararib/dev
tahararib Dec 12, 2023
cbcbff2
x commit add new file and update file
Dec 12, 2023
2730819
Merge pull request #6 from tahararib/dev
tahararib Dec 12, 2023
f65fed0
nb commit
Dec 12, 2023
2e4ceb3
Update index.jsp
tahararib Apr 15, 2024
3d44115
Update index.jsp
tahararib Apr 15, 2024
bab0b00
Update index.jsp
tahararib Apr 15, 2024
c5f746c
Update index.jsp
tahararib Apr 16, 2024
876d73e
Update index.jsp
tahararib Apr 16, 2024
0f696ac
Update index.jsp
tahararib Apr 16, 2024
a3e5641
Update index.jsp
tahararib Apr 16, 2024
c22bc0c
Update README.md
tahararib Apr 18, 2024
8443456
Update README.md
tahararib Apr 18, 2024
6ae3e15
Update README.md
tahararib Apr 18, 2024
bc3ab39
Update pom.xml
tahararib Apr 18, 2024
4fca282
Update pom.xml
tahararib Apr 18, 2024
cfb597c
Update pom.xml
tahararib Apr 18, 2024
3b237bc
Update pom.xml
tahararib Apr 18, 2024
6658007
Update index.jsp
tahararib Jun 11, 2024
0667cb6
Update index.jsp
tahararib Jun 11, 2024
389c5c1
Update pom.xml
tahararib Jun 25, 2024
38fb5e9
Update pom.xml
tahararib Jun 25, 2024
e008189
Update file2.txt
tahararib Jun 25, 2024
fa5a67b
Update index.jsp
tahararib Jun 25, 2024
68d11d8
Update index.jsp
tahararib Jun 25, 2024
8223a31
Update index.jsp
tahararib Jun 25, 2024
dd3ee46
Update index.jsp
tahararib Jul 16, 2024
bfc5327
Update index.jsp
tahararib Jul 16, 2024
173ffd3
Update index.jsp
tahararib Sep 20, 2024
54f99e8
Update index.jsp
tahararib Sep 20, 2024
22b5051
Update README.md
tahararib Sep 20, 2024
29c1455
Update index.jsp
tahararib Oct 15, 2024
ae931a0
Update index.jsp
tahararib Oct 15, 2024
92a6045
Update index.jsp
tahararib Jan 28, 2025
aa2c84b
Update index.jsp
tahararib Jan 28, 2025
a84bd27
Update index.jsp
tahararib Mar 25, 2025
ecf0bcb
Update index.jsp
tahararib Mar 25, 2025
85fa911
Update index.jsp
tahararib Mar 25, 2025
b702877
Update index.jsp
tahararib Apr 4, 2025
75c126d
Update index.jsp
tahararib Apr 4, 2025
cea8528
Update index.jsp
tahararib Apr 4, 2025
a4b06e1
Update index.jsp
tahararib Jun 24, 2025
fb1befa
Update index.jsp
tahararib Jun 24, 2025
c2ffe9a
Update index.jsp
tahararib Jun 24, 2025
29a0d23
Update index.jsp
tahararib Sep 19, 2025
61a9a53
Update index.jsp
tahararib Sep 25, 2025
586b8df
Commit changes on file2
Sep 30, 2025
8c1caeb
commit local changes
Oct 14, 2025
9cf2db3
First local commit en dev branch
Oct 14, 2025
88db307
Update file4.txt
tahararib Oct 14, 2025
a050384
Merge branch 'master' into dev
tahararib Oct 14, 2025
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
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
java-hello-world-webapp
=======================

A simple java web app
A simple java web app

B simple change


change in dev brunch

C simples changes nnnn bbbb

3 changes: 3 additions & 0 deletions file2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
un texte 11111
une ligne de texte
texte 3
2 changes: 2 additions & 0 deletions file3.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
un texte aussi 1

2 changes: 2 additions & 0 deletions file4.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
fff
ggg
31 changes: 31 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,36 @@
</dependencies>
<build>
<finalName>java-hello-world</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<formats>
<format>xml</format>
</formats>
<instrumentation>
<includes>
<include>**/*.class</include>
</includes>
</instrumentation>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>cobertura</goal>
</goals>

</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion src/main/webapp/index.jsp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<body>
<h2>Hello World ?</h2>
<h2> Hello World Release 2.11 </h2>
</body>
</html>